/* * Copyright 2003 by Richard J. Moore, rich@kde.org */ #include // this plugin applies to a tdehtml part #include #include "autorefresh.h" #include #include #include #include #include #include #include AutoRefresh::AutoRefresh( TQObject* parent, const char* name, const TQStringList & /*args*/ ) : Plugin( parent, name ) { timer = new TQTimer( this ); connect( timer, TQT_SIGNAL( timeout() ), this, TQT_SLOT( slotRefresh() ) ); refresher = new TDESelectAction( i18n("&Auto Refresh"), "reload", 0, this, TQT_SLOT(slotIntervalChanged()), actionCollection(), "autorefresh" ); TQStringList sl; sl << i18n("None"); sl << i18n("Every 15 Seconds"); sl << i18n("Every 30 Seconds"); sl << i18n("Every Minute"); sl << i18n("Every 5 Minutes"); sl << i18n("Every 10 Minutes"); sl << i18n("Every 15 Minutes"); sl << i18n("Every 30 Minutes"); sl << i18n("Every 60 Minutes"); refresher->setItems( sl ); refresher->setCurrentItem( 0 ); } AutoRefresh::~AutoRefresh() { } void AutoRefresh::slotIntervalChanged() { int idx = refresher->currentItem(); int timeout = 0; switch (idx) { case 1: timeout = ( 15*1000 ); break; case 2: timeout = ( 30*1000 ); break; case 3: timeout = ( 60*1000 ); break; case 4: timeout = ( 5*60*1000 ); break; case 5: timeout = ( 10*60*1000 ); break; case 6: timeout = ( 15*60*1000 ); break; case 7: timeout = ( 30*60*1000 ); break; case 8: timeout = ( 60*60*1000 ); break; default: break; } timer->stop(); if ( timeout ) timer->start( timeout ); } void AutoRefresh::slotRefresh() { if ( !parent()->inherits("KParts::ReadOnlyPart") ) { TQString title = i18n( "Cannot Refresh Source" ); TQString text = i18n( "This plugin cannot auto-refresh the current part." ); TQMessageBox::warning( 0, title, text ); } else { KParts::ReadOnlyPart *part = (KParts::ReadOnlyPart *) parent(); // Get URL KURL url = part->url(); part->openURL( url ); } } K_EXPORT_COMPONENT_FACTORY( libautorefresh, KGenericFactory( "autorefresh" ) ) #include "autorefresh.moc"