vdk 2.4.0
handlebox.h
1 /*
2  * ===========================
3  * VDK Visual Development Kit
4  * Version 0.4
5  * October 1998
6  * ===========================
7  *
8  * Copyright (C) 1998, Mario Motta
9  * Developed by Mario Motta <mmotta@guest.net>
10  *
11  * This library is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU Library General Public
13  * License as published by the Free Software Foundation; either
14  * version 2 of the License, or (at your option) any later version.
15  *
16  * This library is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19  * Library General Public License for more details.
20  *
21  * You should have received a copy of the GNU Library General Public
22  * License along with this library; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
24  * 02111-1307, USA.
25  */
26 
27 #ifndef HANDLEBOX_H
28 #define HANDLEBOX_H
29 #include <vdk/widcontain.h>
40 {
41  protected:
42  static void HandleBoxSignal (GtkWidget* ,GtkWidget *, gpointer );
43 public:
44  // properties
48  VDKReadOnlyValueProp<VDKHandleBox,VDKObject*> Child;
53  VDKHandleBox(VDKForm* owner);
57  virtual ~VDKHandleBox();
61  virtual void Add(VDKObject* obj, int justify = l_justify,
62  int expand = TRUE, int fill = TRUE , int padding = 0);
63 };
64 #endif
65 
Definition: vdkobj.h:137
virtual void Add(VDKObject *obj, int justify=l_justify, int expand=TRUE, int fill=TRUE, int padding=0)
Definition: handlebox.cc:69
Containers base class.
Definition: widcontain.h:39
VDKHandleBox(VDKForm *owner)
Definition: handlebox.cc:45
VDKForm widgets, generally the outermost widget container.
Definition: forms.h:68
This class provides a gtkhandle box wrapper.
Definition: handlebox.h:39
VDKReadOnlyValueProp< VDKHandleBox, VDKObject * > Child
Definition: handlebox.h:48
virtual ~VDKHandleBox()
Definition: handlebox.cc:66