configui.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef KSPELL2CONFIGUI_H
00011 #define KSPELL2CONFIGUI_H
00012
00013 #include <qvariant.h>
00014 #include <qwidget.h>
00015
00016 class QVBoxLayout;
00017 class QHBoxLayout;
00018 class QGridLayout;
00019 class QSpacerItem;
00020 class KComboBox;
00021 class QGroupBox;
00022 class QCheckBox;
00023 class QLabel;
00024 class KEditListBox;
00025
00026 class KSpell2ConfigUI : public QWidget
00027 {
00028 Q_OBJECT
00029
00030 public:
00031 KSpell2ConfigUI( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
00032 ~KSpell2ConfigUI();
00033
00034 KComboBox* m_langCombo;
00035 QGroupBox* groupBox1;
00036 QCheckBox* m_bgSpellCB;
00037 QCheckBox* m_skipUpperCB;
00038 QCheckBox* m_skipRunTogetherCB;
00039 QLabel* textLabel1;
00040 KEditListBox* m_ignoreListBox;
00041
00042 protected:
00043 QGridLayout* KSpell2ConfigUILayout;
00044 QGridLayout* groupBox1Layout;
00045
00046 protected slots:
00047 virtual void languageChange();
00048
00049 };
00050
00051 #endif // KSPELL2CONFIGUI_H
|