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