Kate
docwordcompletion_config.h
Go to the documentation of this file.00001 00021 #ifndef DOCWORDCOMPLETION_CONFIG_H 00022 #define DOCWORDCOMPLETION_CONFIG_H 00023 00024 #include <kcmodule.h> 00025 00026 class DocWordCompletionConfig 00027 : public KCModule 00028 { 00029 Q_OBJECT 00030 00031 public: 00032 explicit DocWordCompletionConfig(QWidget *parent, const QVariantList &); 00033 virtual ~DocWordCompletionConfig(); 00034 00035 virtual void save(); 00036 virtual void load(); 00037 virtual void defaults(); 00038 00039 private Q_SLOTS: 00040 void slotChanged(); 00041 00042 private: 00043 class QCheckBox *cbAutoPopup; 00044 class QSpinBox *sbAutoPopup; 00045 class QLabel *lSbRight; 00046 }; 00047 00048 #endif // DOCWORDCOMPLETION_CONFIG_H