|
|
#ifndef TESTKHTML_H #define TESTKHTML_H class Dummy : public QObject { Q_OBJECT public: Dummy( KHTMLPart *part ) : QObject( part ) { m_part = part; }; private slots: void slotOpenURL( const KURL &url, const KParts::URLArgs &args ) { m_part->browserExtension()->setURLArgs( args ); m_part->openURL( url ); } private: KHTMLPart *m_part; }; #endif
Generated by: dfaure@faure on Sun Mar 26 14:24:58 2000, using kdoc 2.0a35. |