diff options
Diffstat (limited to 'languages/cpp/app_templates/kofficepart/kopart_part.h')
-rw-r--r-- | languages/cpp/app_templates/kofficepart/kopart_part.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/languages/cpp/app_templates/kofficepart/kopart_part.h b/languages/cpp/app_templates/kofficepart/kopart_part.h new file mode 100644 index 00000000..03361ca7 --- /dev/null +++ b/languages/cpp/app_templates/kofficepart/kopart_part.h @@ -0,0 +1,30 @@ + +/* This template is based off of the KOffice example written by Torben Weis <weis@kde.org + It was converted to a KDevelop template by Ian Reinhart Geiser <geiseri@yahoo.com> +*/ + +#ifndef %{APPNAME}_PART_H +#define %{APPNAME}_PART_H + +#include <koDocument.h> + +class %{APPNAME}Part : public KoDocument +{ + Q_OBJECT +public: + %{APPNAME}Part( QWidget *parentWidget = 0, const char *widgetName = 0, QObject* parent = 0, const char* name = 0, bool singleViewMode = false ); + + virtual void paintContent( QPainter& painter, const QRect& rect, bool transparent = FALSE, double zoomX = 1.0, double zoomY = 1.0 ); + + virtual bool initDoc( InitDocFlags flags, QWidget* parentWidget = 0 ); + + virtual bool loadOasis( const QDomDocument & doc, KoOasisStyles& oasisStyles, const QDomDocument & settings, KoStore* store ); + virtual bool loadXML( QIODevice *, const QDomDocument & ); + virtual QDomDocument saveXML(); + virtual bool saveOasis( KoStore* store, KoXmlWriter* manifestWriter ); + +protected: + virtual KoView* createViewInstance( QWidget* parent, const char* name ); +}; + +#endif |