diff options
Diffstat (limited to 'part/kxmleditorfactory.h')
-rw-r--r-- | part/kxmleditorfactory.h | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/part/kxmleditorfactory.h b/part/kxmleditorfactory.h new file mode 100644 index 0000000..b2c5e15 --- /dev/null +++ b/part/kxmleditorfactory.h @@ -0,0 +1,55 @@ +/*************************************************************************** + kxmleditorfactory.h - description + ------------------- + begin : Wed Sep 19 2001 + copyright : (C) 2001, 2002, 2003 by The KXMLEditor Team + email : OleBowle@gmx.de + ***************************************************************************/ + +/*************************************************************************** + * * + * 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. * + * * + ***************************************************************************/ + + /** +@file +*/ + +#ifndef KXMLEDITORFACTORY_H +#define KXMLEDITORFACTORY_H + +#include <kparts/factory.h> + +class KInstance; +class KXEConfiguration; +/** + @brief Factory for creating our parts. +*/ +class KXMLEditorFactory : public KParts::Factory +{ + Q_OBJECT + + public: + /** @brief Constructor */ + KXMLEditorFactory( QObject * pParent = 0, const char * pszName = 0 ); + /** @brief Destructor */ + virtual ~KXMLEditorFactory(); + + /** @short Creates part object, depending on given part class */ + virtual KParts::Part * createPartObject( QWidget * pParentWidget = 0, const char * pszWidgetName = 0, QObject * pParent = 0, const char * pszName = 0, const char * pszClassName = "KParts::Part", const QStringList & args = QStringList() ); + + static KInstance * instance(); + static KXEConfiguration * configuration(); + + private: + static KInstance * s_instance; + + /** @brief Our configuration - the same for all parts. */ + static KXEConfiguration * s_pKXEConfig; +}; + +#endif |