00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef ADDICONDLG_H
00011 #define ADDICONDLG_H
00012
00013 #include <qvariant.h>
00014 #include <qdialog.h>
00015
00016 class QVBoxLayout;
00017 class QHBoxLayout;
00018 class QGridLayout;
00019 class QSpacerItem;
00020 class KURLRequester;
00021 class KLineEdit;
00022 class KActiveLabel;
00023 class QPushButton;
00024 class KIconButton;
00025
00026 class AddIconDlg : public QDialog
00027 {
00028 Q_OBJECT
00029
00030 public:
00031 AddIconDlg( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
00032 ~AddIconDlg();
00033
00034 KURLRequester* m_prog;
00035 KLineEdit* m_tip;
00036 KActiveLabel* kActiveLabel2;
00037 KActiveLabel* kActiveLabel1;
00038 QPushButton* buttonHelp;
00039 QPushButton* buttonOk;
00040 QPushButton* buttonCancel;
00041 KIconButton* m_icon;
00042 KActiveLabel* kActiveLabel3;
00043
00044 protected:
00045 QGridLayout* AddIconDlgLayout;
00046 QHBoxLayout* layout1;
00047 QSpacerItem* Horizontal_Spacing2;
00048 QHBoxLayout* layout2;
00049
00050 protected slots:
00051 virtual void languageChange();
00052
00053 };
00054
00055 #endif // ADDICONDLG_H