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