KIO
kpreviewprops.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef __KPREVIEWPROPS_H__
00021 #define __KPREVIEWPROPS_H__
00022
00023 #include <kpropertiesdialog.h>
00024
00025 class KFileMetaPreview;
00026
00031 class KIO_EXPORT KPreviewPropsPlugin : public KPropertiesDialogPlugin
00032 {
00033 Q_OBJECT
00034
00035 public:
00036
00037 KPreviewPropsPlugin( KPropertiesDialog *_props );
00038 virtual ~KPreviewPropsPlugin();
00039
00043 static bool supports( const KFileItemList& _items );
00044
00045 private Q_SLOTS:
00046 void currentPageChanged( KPageWidgetItem *, KPageWidgetItem * );
00047
00048 private:
00049 KFileMetaPreview* preview;
00050 void createLayout();
00051
00052 class KPreviewPropsPluginPrivate;
00053 KPreviewPropsPluginPrivate* const d;
00054 };
00055
00056 #endif