00001 /*************************************************************************** 00002 bookmarksdlg.h - description 00003 ------------------- 00004 begin : Wed Dec 1 1999 00005 copyright : (C) 1999 - 2004 by llornkcor 00006 email : ljp@llornkcor.com 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 #ifndef BOOKMARKSDLG_H 00019 #define BOOKMARKSDLG_H 00020 00021 #include <qwidget.h> 00022 #include <qlineedit.h> 00023 #include <qmultilineedit.h> 00024 #include <qlabel.h> 00025 //#include <qlistbox.h> 00026 #include <qpushbutton.h> 00027 #include <qcombobox.h> 00028 #include <qdialog.h> 00029 00030 00031 class bookMarksDlg : public QDialog { 00032 Q_OBJECT 00033 public: 00034 bookMarksDlg(QWidget *parent, QString name); 00035 ~bookMarksDlg(); 00036 00037 protected: 00038 // void initDialog(); 00039 QLineEdit *QLineEdit_1; 00040 QMultiLineEdit *QMultiLineEdit_1; 00041 QLabel *QLabel_1; 00042 QLabel *QLabel_2; 00043 QLabel *QLabel_3; 00044 QComboBox *QComboBox_1; 00045 QPushButton *QPushButton_Ok; 00046 QPushButton *QPushButton_cancel; 00047 00048 00049 private: 00050 00051 protected slots: 00052 virtual void doIt(); 00053 }; 00054 00055 #endif
1.4.2