00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef MTPSETTINGS_H
00011 #define MTPSETTINGS_H
00012
00013 #include <qvariant.h>
00014 #include <qpixmap.h>
00015 #include <qdialog.h>
00016
00017 class QVBoxLayout;
00018 class QHBoxLayout;
00019 class QGridLayout;
00020 class QWidgetStack;
00021 class QListBox;
00022 class QListBoxItem;
00023 class QPushButton;
00024
00025 class MtpSettings : public QDialog
00026 {
00027 Q_OBJECT
00028
00029 public:
00030 MtpSettings( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
00031 ~MtpSettings();
00032
00033 QListBox* prop_list;
00034 QPushButton* buttonHelp;
00035 QPushButton* buttonOk;
00036 QPushButton* buttonCancel;
00037 QWidgetStack* stack;
00038
00039 protected:
00040 QGridLayout* mtpsettingsLayout;
00041 QHBoxLayout* Layout1;
00042
00043 protected slots:
00044 virtual void languageChange();
00045
00046 private:
00047 QPixmap image0;
00048
00049 };
00050
00051 #endif // MTPSETTINGS_H