kpropertiesdesktopbase.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef KPROPERTIESDESKTOPBASE_H
00011 #define KPROPERTIESDESKTOPBASE_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 QLabel;
00021 class KListView;
00022 class QListViewItem;
00023 class KLineEdit;
00024 class QPushButton;
00025 class KURLRequester;
00026
00027 class KPropertiesDesktopBase : public QWidget
00028 {
00029 Q_OBJECT
00030
00031 public:
00032 KPropertiesDesktopBase( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
00033 ~KPropertiesDesktopBase();
00034
00035 QLabel* textLabel7;
00036 KListView* filetypeList;
00037 QLabel* nameLabel;
00038 KLineEdit* nameEdit;
00039 QLabel* textLabel2;
00040 KLineEdit* genNameEdit;
00041 QLabel* textLabel3;
00042 KLineEdit* commentEdit;
00043 QLabel* textLabel4;
00044 KLineEdit* commandEdit;
00045 QPushButton* browseButton;
00046 QLabel* textLabel5;
00047 KURLRequester* pathEdit;
00048 QPushButton* addFiletypeButton;
00049 QPushButton* delFiletypeButton;
00050 QPushButton* advancedButton;
00051
00052 protected:
00053 QGridLayout* KPropertiesDesktopBaseLayout;
00054 QSpacerItem* spacer6;
00055 QSpacerItem* spacer31_2;
00056 QSpacerItem* spacer31_3;
00057
00058 protected slots:
00059 virtual void languageChange();
00060
00061 };
00062
00063 #endif // KPROPERTIESDESKTOPBASE_H
|