00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef _PREVIEWS_OPTIONS_H
00023 #define _PREVIEWS_OPTIONS_H
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 #include <tqstring.h>
00035
00036 #include <kcmodule.h>
00037
00038 class KConfig;
00039 class TQCheckBox;
00040 class TQCheckListItem;
00041 class KDoubleNumInput;
00042
00043 class KPreviewOptions : public KCModule
00044 {
00045 Q_OBJECT
00046 public:
00047 KPreviewOptions( TQWidget *parent = 0L, const char *name = 0L );
00048 virtual void load();
00049 virtual void save();
00050 virtual void defaults();
00051
00052 protected:
00053 void load(bool useDefaults);
00054
00055 public slots:
00056 void changed();
00057
00058 private:
00059 TQPtrList<TQCheckListItem> m_items;
00060 KDoubleNumInput *m_maxSize;
00061 TQCheckBox *m_boostSize;
00062 TQCheckBox *m_useFileThumbnails;
00063 };
00064
00065 #endif