diff options
Diffstat (limited to 'parts/texttools/texttoolspart.h')
-rw-r--r-- | parts/texttools/texttoolspart.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/parts/texttools/texttoolspart.h b/parts/texttools/texttoolspart.h new file mode 100644 index 00000000..7e7bf9c5 --- /dev/null +++ b/parts/texttools/texttoolspart.h @@ -0,0 +1,39 @@ +/*************************************************************************** + * Copyright (C) 2002 by Bernd Gehrmann * + * [email protected] * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + ***************************************************************************/ + +#ifndef _TEXTTOOLSPART_H_ +#define _TEXTTOOLSPART_H_ + +#include <qguardedptr.h> +#include <kparts/part.h> +#include "kdevplugin.h" + +class TextToolsWidget; + + +class TextToolsPart : public KDevPlugin +{ + Q_OBJECT + +public: + TextToolsPart( QObject *parent, const char *name, const QStringList & ); + ~TextToolsPart(); + +private slots: + void activePartChanged(KParts::Part *part); + +private: + void createWidget(); + + QGuardedPtr<TextToolsWidget> m_widget; +}; + +#endif |