Databasehandlingdialogclasses  0.5.3
hk_kdesubform.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 
12 #ifndef HK_KDESUBFORM_H
13 #define HK_KDESUBFORM_H
14 #include <hk_subform.h>
15 #include <qscrollview.h>
16 class hk_kdesimpleform;
17 
18 class hk_kdesubform: public QScrollView,public hk_subform
19 {
20 Q_OBJECT
21 public:
23 virtual ~hk_kdesubform();
24 virtual void show_widget(void);
25 virtual void hide_widget(void);
26 virtual bool close_widget(void);
27 
28 protected:
29 bool widget_specific_coordinates(uint px,uint py,uint pwidth,uint pheight);
30  virtual void widget_specific_enabled_changed(void);
31 void resizeEvent ( QResizeEvent * event );
32 void moveEvent ( QMoveEvent * event);
33 virtual bool presentationmode_changed(void);
34 
35 private:
36 void reposition(void);
37 };
38 
39 #endif //HK_KDESUBFORM_H
Definition: hk_kdesubform.h:18
KDE Widget to display forms.
Definition: hk_kdesimpleform.h:41