#ifndef _PLUGIN_KATE_HELLOWORLD_H_ #define _PLUGIN_KATE_HELLOWORLD_H_ #include #include #include #include #include #include #include class KatePluginHelloWorld : public Kate::Plugin, Kate::PluginViewInterface { TQ_OBJECT public: KatePluginHelloWorld( TQObject* parent = 0, const char* name = 0, const TQStringList& = TQStringList() ); virtual ~KatePluginHelloWorld(); void addView (Kate::MainWindow *win); void removeView (Kate::MainWindow *win); public slots: void slotInsertHello(); private: TQPtrList m_views; }; #endif