Databasehandlingdialogclasses  0.5.3
hk_kdeobjecthandler.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  //$Revision: 1.3 $
12 #ifndef HK_KDEOBJECTHANDLER_H
13 #define HK_KDEOBJECTHANDLER_H
14 #include "hk_kdeobjecthandlerbase.h"
15 
16 class hk_database;
17 
19 {
20  Q_OBJECT
21 
22 public:
23  hk_kdeobjecthandler( hk_database*,QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
25 
26 protected:
27 void accept(void);
28 protected slots:
29  virtual void download_clicked();
30  virtual void upload_clicked();
31  virtual void slot_selection_changed();
32 private:
33 hk_database* p_database;
34 
35 };
36 
37 #endif // HK_KDEOBJECTHANDLER_H
Definition: hk_kdeobjecthandlerbase.h:28
Definition: hk_kdeobjecthandler.h:18