File: vdk.h

package info (click to toggle)
vdk2 2.4.0-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 4,524 kB
  • ctags: 4,975
  • sloc: cpp: 26,944; sh: 10,580; ansic: 9,220; makefile: 602; perl: 113
file content (108 lines) | stat: -rw-r--r-- 3,017 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/*
 * ===========================
 * VDK Visual Development Kit
 * Version 0.4
 * October 1998
 * ===========================
 *
 * Copyright (C) 1998, Mario Motta
 * Developed by Mario Motta <mmotta@guest.net>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 * 02111-1307, USA.
 */


#ifndef VDK_H
#define VDK_H
#include <vdk/evhandle.h>
#include <vdk/evobjhandle.h>
#include <vdk/siglisthandle.h>
#include <vdk/evlisthandle.h>
#include <vdk/application.h>
#include <vdk/forms.h>
#include <vdk/boxes.h>
#include <vdk/label.h>
#include <vdk/button.h>
#include <vdk/pixmaps.h>
#include <vdk/vdkeditor.h>
#include <vdk/separator.h>
#include <vdk/menu.h>
#include <vdk/tooltips.h>
#include <vdk/vdkutils.h>
#include <vdk/vdkstring.h>
#include <vdk/vdkclist.h>
#include <vdk/vdkcsortlist.h>
#include <vdk/colors.h>
#include <vdk/entry.h>
#include <vdk/numentry.h>
#include <vdk/tables.h>
#include <vdk/vdkdate.h>
#include <vdk/vdkarray.h>
#include <vdk/value_sem_list.h>
#include <vdk/timer.h>
#include <vdk/progressbar.h>
#include <vdk/canvas.h>
#include <vdk/vdkcursor.h>
#include <vdk/vdkfont.h>
#include <vdk/paned.h>
#include <vdk/notebook.h>
#include <vdk/rawpixmap.h>
#include <vdk/rawobj.h>
#include <vdk/filedlg.h>
#include <vdk/checkbutton.h>
#include <vdk/radiobtngroup.h>
#include <vdk/frame.h>
#include <vdk/toolbar.h>
#include <vdk/evbrowser.h>
#include <vdk/scrolled.h>
#include <vdk/slider.h>
#include <vdk/spins.h>
#include <vdk/handlebox.h>
#include <vdk/widcontain.h>
#include <vdk/statusbar.h>
#include <vdk/panelbar.h>
#include <vdk/combo.h>
#include <vdk/chart.h>
#include <vdk/fixed.h>
#include <vdk/vdkctree.h>
#include <vdk/vdkcalendar.h>
#include <vdk/vdkcomboentry.h>
#include <vdk/vdkbtrees.h>
#include <vdk/vdkdrawarea.h>
#include <vdk/vdkheap.h>
#include <vdk/vdkhlbutton.h>
#include <vdk/vdkhlbuttonbar.h>
#include <vdk/vdkfeatures.h>
#include <vdk/eventbox.h>
#include <vdk/vdkcustombutton.h>
#include <vdk/vdkinchannel.h>
#include <vdk/vdktextview.h>
// #include <vdk/vdkgrid.h>
#include <vdk/vdkdatabox.h>
#include <vdk/vdkdnd.h>
#include <vdk/image.h>
#include <vdk/vdktreeview.h>
#include <vdk/vdkdockable.h>
// gnome support
#if HAVE_GNOME
#include <vdk/vdkgnomeapp.h>
#include <vdk/vdkgnomeform.h>
#include <vdk/vdkgnomeappbar.h>
#include <vdk/vdkgnomededit.h>
#include <vdk/vdkgnomeentry.h>
#endif

#endif