From 47d455dd55be855e4cc691c32f687f723d9247ee Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kviewshell/kviewpart_iface.h | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 kviewshell/kviewpart_iface.h (limited to 'kviewshell/kviewpart_iface.h') 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 + +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 -- cgit v1.2.1