From kde-devel Mon Jul 15 22:14:18 2002 From: aleXXX Date: Mon, 15 Jul 2002 22:14:18 +0000 To: kde-devel Subject: Re: An always on konqueror plugin X-MARC-Message: https://marc.info/?l=kde-devel&m=102684896112284 On Sunday 14 July 2002 22:49, George Russell wrote: > Does anyone know if it is possible to invoke a konqueror plugin > automatically, without user intervention, each time a new page is loaded / > refreshed? > > Any ideas about how to go about doing this? > > Thanks > George Maybe something like this inside your plugin ? ... KonqDirPart * part = dynamic_cast(parent); if ( !part ) return; connect(part,SIGNAL(aboutToOpenURL()),this,SLOT(updateActions())); ... the updateActions() will be called every time a new url is loaded. Bye Alex >> Visit http://mail.kde.org/mailman/listinfo/kde-devel#unsub to unsubscribe <<