Databasehandlingdialogclasses  0.5.3
hk_kdenewdatabase.h
1 // ****************************************************************************
2 // copyright (c) 2000-2005 Horst Knorr <hk_classes@knoda.org>
3 // This file is part of the hk_classes library.
4 // This file may be distributed and/or modified under the terms of the
5 // GNU Library 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 #ifndef HK_KDENEWDATABASE_H
12 #define HK_KDENEWDATABASE_H
13 #include "hk_kdenewdatabasebase.h"
14 #include <hk_string.h>
15 
16 
18 {
19  Q_OBJECT
20 
21 public:
22  hk_kdenewdatabase( const hk_string& drivername,QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
24 static hk_string show_dialog(const hk_string& drivername,bool local);
25 
26 public slots:
27  virtual void ok_clicked();
28  virtual void directory_clicked();
29  virtual void text_changed();
30 private:
31 hk_string p_drivername;
32 
33 };
34 
35 #endif // HK_KDENEWDATABASE_H
Definition: hk_kdenewdatabasebase.h:24
Definition: hk_kdenewdatabase.h:17