vdk 2.4.0
vdkgnomeform.h
1/*
2 * ===========================
3 * VDK Visual Develeopment Kit
4 * Version 1.0.4
5 * December 1999
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 GNOME_FORMS_H
28#define GNOME_FORMS_H
29
30#if HAVE_GNOME
31#include <vdk/forms.h>
32#include <vdk/vdkgnomeapp.h>
33#include <gnome.h>
41class VDKGnomeForm: public VDKForm
42{
43 public:
50 VDKGnomeForm(VDKGnomeApplication* app,
51 char* title = (char*) NULL,
52 int mode = v_box);
53 virtual void Add(VDKObject* obj,
54 int justify = l_justify,
55 int expand = TRUE,
56 int fill = TRUE ,
57 int padding = 1);
58
59 virtual ~VDKGnomeForm();
60
65 VDKGnomeForm(VDKForm* owner,
66 char* app_id,
67 char* title = NULL,
68 int mode = v_box);
69};
70#endif
71
72#endif
VDKForm widgets, generally the outermost widget container.
Definition: forms.h:69
virtual void Add(VDKObject *obj, int justify=l_justify, int expand=TRUE, int fill=TRUE, int padding=1)
Definition: forms.cc:613
Definition: vdkobj.h:141