00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifndef __KLOCALECONFIGOTHER_H__
00025 #define __KLOCALECONFIGOTHER_H__
00026
00027 #include <tqwidget.h>
00028
00029 class TQLabel;
00030 class TQComboBox;
00031
00032 class KLocale;
00033
00034 class KLocaleConfigOther : public QWidget
00035 {
00036 Q_OBJECT
00037
00038 public:
00039 KLocaleConfigOther(KLocale *locale, TQWidget *parent = 0, const char *name = 0);
00040 virtual ~KLocaleConfigOther();
00041
00042 void save();
00043
00044 public slots:
00048 void slotLocaleChanged();
00052 void slotTranslate();
00053
00054 signals:
00055 void localeChanged();
00056
00057 private slots:
00058 void slotPageSizeChanged(int i);
00059 void slotMeasureSystemChanged(int i);
00060
00061 private:
00062 KLocale *m_locale;
00063
00064 TQLabel *m_labMeasureSystem;
00065 TQComboBox *m_combMeasureSystem;
00066 TQLabel *m_labPageSize;
00067 TQComboBox *m_combPageSize;
00068 };
00069
00070 #endif