00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef _koDocumentPropsPage_h_
00021 #define _koDocumentPropsPage_h_
00022
00023 #include <kpropertiesdialog.h>
00024 #include <koffice_export.h>
00025
00026 #include <QString>
00027
00028 class KArchiveEntry;
00029
00030 class KOFFICECORE_EXPORT KoDocumentInfoPropsPage : public KPropsDlgPlugin
00031 {
00032 Q_OBJECT
00033
00034 public:
00035 KoDocumentInfoPropsPage( KPropertiesDialog *props,
00036 const QStringList & = QStringList() );
00037 virtual ~KoDocumentInfoPropsPage();
00038
00039 virtual void applyChanges();
00040
00041 private:
00042 void copy( const QString &path, const KArchiveEntry *entry );
00043 class KoDocumentInfoPropsPagePrivate;
00044 KoDocumentInfoPropsPagePrivate *d;
00045 };
00046
00047 #endif