Databasehandlingdialogclasses  0.5.3
hk_kdecomboboxtextlist.h
1 // ****************************************************************************
2 // copyright (c) 2000-2005 Horst Knorr <hk_classes@knoda.org>
3 // This file is part of the hk_kdeclasses 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 LGPL 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_KDECOMBOBOXTEXTLIST_H
12 #define HK_KDECOMBOBOXTEXTLIST_H
13 #include "hk_kdecomboboxtextlistbase.h"
14 
15 class hk_dscombobox;
16 
18 {
19  Q_OBJECT
20 
21 public:
22  hk_kdecomboboxtextlist( QWidget* parent ,hk_dscombobox*, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
24 public slots:
25 void slot_data_changed(int , int );
26 void add_row(void);
27 void ok_clicked(void);
28 protected:
29 bool eventFilter(QObject* object,QEvent* e);
30 void delete_rows(void);
31 private:
32 void set_existing_fields();
33 hk_dscombobox* p_combobox;
34 };
35 
36 #endif // HK_KDECOMBOBOXTEXTLIST_H
Definition: hk_kdecomboboxtextlistbase.h:24
Definition: hk_kdecomboboxtextlist.h:17