Databasehandlingdialogclasses  0.5.3
knodanewdatabasedialog.h
1 // ****************************************************************************
2 // copyright (c) 2000-2005 Horst Knorr <hk_classes@knoda.org>
3 // This file is part of knoda -Knorr's Datenbank.
4 // This file may be distributed and/or modified under the terms of the
5 // GNU General Public License version 2 as published by the Free Software
6 // Foundation and appearing in the file COPYING included in the
7 // packaging of this file.
8 // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
9 // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
10 // ****************************************************************************
11 
12 #ifndef KNODANEWDATABASEDIALOG_H
13 #define KNODANEWDATABASEDIALOG_H
14 
15 #include <qvariant.h>
16 #include <qdialog.h>
17 class QVBoxLayout;
18 class QHBoxLayout;
19 class QGridLayout;
20 class QLabel;
21 class QLineEdit;
22 class QPushButton;
23 
24 class knodanewdatabasedialog : public QDialog
25 {
26  Q_OBJECT
27 
28  public:
29  knodanewdatabasedialog( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
31 
32  QLabel* label;
33  QPushButton* buttonOk;
34  QLineEdit* databasename;
35  QPushButton* buttonCancel;
36 
37  public slots:
38  virtual void enable_okbutton();
39 
40  protected:
41  QVBoxLayout* knodanewdatabasedialogLayout;
42  QHBoxLayout* Layout9;
43  QHBoxLayout* Layout8;
44 };
45 #endif // KNODANEWDATABASEDIALOG_H
Definition: knodanewdatabasedialog.h:24