diff options
Diffstat (limited to 'kviewshell/kviewpart_iface.h')
-rw-r--r-- | kviewshell/kviewpart_iface.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/kviewshell/kviewpart_iface.h b/kviewshell/kviewpart_iface.h new file mode 100644 index 00000000..9e488f3e --- /dev/null +++ b/kviewshell/kviewpart_iface.h @@ -0,0 +1,35 @@ +// -*- C++ -*- +#ifndef KVIEWPART_IFACE_H +#define KVIEWPART_IFACE_H + +#include <kparts/part.h> + +class QStringList; + + +class KViewPart_Iface : public KParts::ReadOnlyPart +{ + Q_OBJECT +public: + KViewPart_Iface(QObject *parent, const char *name) + : KParts::ReadOnlyPart(parent, name) {} + + virtual ~KViewPart_Iface() {} + + /* Returns a description of the current page size, for use in the + statusbar of the kviewshell that embeds this KViewPart. */ + virtual QString pageSizeDescription() = 0; + + /* This method calls closeURL(), but asks first ("The document was + modified. Do you really want to close?") if the document has been + modified after it has been loaded. */ + virtual bool closeURL_ask() = 0; + + virtual QStringList supportedMimeTypes() = 0; + +public slots: + virtual void slotSetFullPage(bool fullpage) = 0; + virtual QStringList fileFormats() const = 0; +}; + +#endif |