~inkscape.dev/inkscape-devlibs/devlibs-gtk3

« back to all changes in this revision

Viewing changes to include/gtkmm-2.4/gtkmm.h

  • Committer: JazzyNico
  • Date: 2013-01-21 10:11:05 UTC
  • Revision ID: nicoduf@yahoo.fr-20130121101105-i8d8slkq9ng4olx8
Adding gtk2 libraries.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* gtkmm - a C++ wrapper for the Gtk toolkit
 
2
 *
 
3
 * Copyright 1999-2002 The gtkmm Development Team
 
4
 *
 
5
 * This library is free software; you can redistribute it and/or
 
6
 * modify it under the terms of the GNU Lesser General Public
 
7
 * License as published by the Free Software Foundation; either
 
8
 * version 2.1 of the License, or (at your option) any later version.
 
9
 *
 
10
 * This library is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
13
 * Lesser General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU Lesser General Public
 
16
 * License along with this library; if not, write to the Free
 
17
 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
18
 */
 
19
 
 
20
#ifndef _GTKMM_H
 
21
#define _GTKMM_H
 
22
 
 
23
/** @mainpage gtkmm Reference Manual
 
24
 *
 
25
 * @section description Description
 
26
 *
 
27
 * gtkmm is the official C++ interface for the popular GUI library GTK+.
 
28
 * Highlights include typesafe callbacks, and a comprehensive set of widgets
 
29
 * that are easily extensible via inheritance.
 
30
 *
 
31
 * For instance, see @ref Widgets, @ref Dialogs, @ref TreeView "TreeView" and
 
32
 * @ref TextView "TextView".
 
33
 *
 
34
 * See also the
 
35
 * <a href="http://library.gnome.org/devel/gtkmm-tutorial/stable/">Programming
 
36
 * with gtkmm</a> book.
 
37
 *
 
38
 *
 
39
 * @section features Features
 
40
 *
 
41
 * - GTK+’s mature, capable set of @ref widgets Widgets. See
 
42
 *   <a href="http://www.gtk.org/">the GTK+ website</a> for more information.
 
43
 * - Use inheritance to derive custom widgets.
 
44
 * - Type-safe signal handlers (slots), in standard C++, using
 
45
 *   <a href="http://libsigc.sourceforge.net/">libsigc++</a>.
 
46
 * - Polymorphism.
 
47
 * - Use of the Standard C++ Library, including strings, containers and
 
48
 *   iterators.
 
49
 * - Full internationalisation with UTF8.
 
50
 * - Complete C++ memory management.
 
51
 *   - Member instances or dynamic new and delete.
 
52
 *   - Optional automatic deletion of child widgets.
 
53
 *   - No manual reference-counting.
 
54
 * - Full use of C++ namespaces.
 
55
 * - No macros.
 
56
 *
 
57
 * @section basics Basic Usage
 
58
 *
 
59
 * Include the gtkmm header:
 
60
 * @code
 
61
 * #include <gtkmm.h>
 
62
 * @endcode
 
63
 * (You may include individual headers, such as @c gtkmm/button.h instead.)
 
64
 *
 
65
 * If your source file is @c program.cc, you can compile it with:
 
66
 * @code
 
67
 * g++ program.cc -o program  `pkg-config --cflags --libs gtkmm-2.4`
 
68
 * @endcode
 
69
 *
 
70
 * Alternatively, if using autoconf, use the following in @c configure.ac:
 
71
 * @code
 
72
 * PKG_CHECK_MODULES([GTKMM], [gtkmm-2.4])
 
73
 * @endcode
 
74
 * Then use the generated @c GTKMM_CFLAGS and @c GTKMM_LIBS variables in the
 
75
 * project @c Makefile.am files. For example:
 
76
 * @code
 
77
 * program_CPPFLAGS = $(GTKMM_CFLAGS)
 
78
 * program_LDADD = $(GTKMM_LIBS)
 
79
 * @endcode
 
80
 */
 
81
 
 
82
/* Gtkmm version.  */
 
83
extern const int gtkmm_major_version;
 
84
extern const int gtkmm_minor_version;
 
85
extern const int gtkmm_micro_version;
 
86
 
 
87
#include <glibmm.h>
 
88
#include <giomm.h>
 
89
#include <gdkmm.h>
 
90
 
 
91
#include <gtkmm/box.h>
 
92
#include <gtkmm/dialog.h>
 
93
#include <gtkmm/object.h>
 
94
#include <gtkmm/aboutdialog.h>
 
95
#include <gtkmm/accelkey.h>
 
96
#include <gtkmm/accelgroup.h>
 
97
#include <gtkmm/adjustment.h>
 
98
#include <gtkmm/alignment.h>
 
99
#include <gtkmm/arrow.h>
 
100
#include <gtkmm/aspectframe.h>
 
101
#include <gtkmm/assistant.h>
 
102
#include <gtkmm/base.h>
 
103
#include <gtkmm/bin.h>
 
104
#include <gtkmm/border.h>
 
105
#include <gtkmm/builder.h>
 
106
#include <gtkmm/button.h>
 
107
#include <gtkmm/buttonbox.h>
 
108
#include <gtkmm/cellview.h>
 
109
#include <gtkmm/checkbutton.h>
 
110
#include <gtkmm/checkmenuitem.h>
 
111
#include <gtkmm/cellrenderer.h>
 
112
#include <gtkmm/cellrendereraccel.h>
 
113
#include <gtkmm/cellrenderercombo.h>
 
114
#include <gtkmm/cellrendererpixbuf.h>
 
115
#include <gtkmm/cellrendererprogress.h>
 
116
#include <gtkmm/cellrendererspin.h>
 
117
#include <gtkmm/cellrendererspinner.h>
 
118
#include <gtkmm/cellrenderertext.h>
 
119
#include <gtkmm/cellrenderertoggle.h>
 
120
#include <gtkmm/colorbutton.h>
 
121
#include <gtkmm/colorselection.h>
 
122
#include <gtkmm/combo.h> //TODO: Deprecated.
 
123
#include <gtkmm/combobox.h>
 
124
#include <gtkmm/comboboxentry.h>
 
125
#include <gtkmm/comboboxentrytext.h>
 
126
#include <gtkmm/comboboxtext.h>
 
127
#include <gtkmm/container.h>
 
128
#include <gtkmm/curve.h>
 
129
#include <gtkmm/drawingarea.h>
 
130
#include <gtkmm/editable.h>
 
131
#include <gtkmm/entry.h>
 
132
#include <gtkmm/expander.h>
 
133
#include <gtkmm/enums.h>
 
134
#include <gtkmm/eventbox.h>
 
135
#include <gtkmm/filechooser.h>
 
136
#include <gtkmm/filechooserbutton.h>
 
137
#include <gtkmm/filechooserdialog.h>
 
138
#include <gtkmm/filechooserwidget.h>
 
139
#include <gtkmm/filefilter.h>
 
140
#include <gtkmm/fileselection.h> //TODO: Deprecated.
 
141
#include <gtkmm/fixed.h>
 
142
#include <gtkmm/fontbutton.h>
 
143
#include <gtkmm/fontselection.h>
 
144
#include <gtkmm/frame.h>
 
145
//#include <gtkmm/rc.h>
 
146
#include <gtkmm/handlebox.h>
 
147
#include <gtkmm/iconset.h>
 
148
#include <gtkmm/iconfactory.h>
 
149
#include <gtkmm/iconsource.h>
 
150
#include <gtkmm/icontheme.h>
 
151
#include <gtkmm/iconview.h>
 
152
#include <gtkmm/image.h>
 
153
#include <gtkmm/imagemenuitem.h>
 
154
#include <gtkmm/infobar.h>
 
155
#include <gtkmm/inputdialog.h>
 
156
#include <gtkmm/item.h>
 
157
#include <gtkmm/calendar.h>
 
158
#include <gtkmm/invisible.h>
 
159
#include <gtkmm/label.h>
 
160
#include <gtkmm/layout.h>
 
161
#include <gtkmm/liststore.h>
 
162
#include <gtkmm/listviewtext.h>
 
163
#include <gtkmm/linkbutton.h>
 
164
#include <gtkmm/main.h>
 
165
#include <gtkmm/menu.h>
 
166
#include <gtkmm/menu_elems.h>
 
167
#include <gtkmm/menubar.h>
 
168
#include <gtkmm/menuitem.h>
 
169
#include <gtkmm/menushell.h>
 
170
#include <gtkmm/messagedialog.h>
 
171
#include <gtkmm/misc.h>
 
172
#include <gtkmm/notebook.h>
 
173
#include <gtkmm/object.h>
 
174
#include <gtkmm/offscreenwindow.h>
 
175
#include <gtkmm/optionmenu.h>
 
176
#include <gtkmm/paned.h>
 
177
#include <gtkmm/pagesetup.h>
 
178
#ifndef G_OS_WIN32
 
179
# include <gtkmm/pagesetupunixdialog.h>
 
180
#endif
 
181
#include <gtkmm/papersize.h>
 
182
#include <gtkmm/printcontext.h>
 
183
#ifndef G_OS_WIN32
 
184
# include <gtkmm/printer.h>
 
185
# include <gtkmm/printjob.h>
 
186
#endif
 
187
#include <gtkmm/printoperation.h>
 
188
#include <gtkmm/printoperationpreview.h>
 
189
#include <gtkmm/printsettings.h>
 
190
#ifndef G_OS_WIN32
 
191
# include <gtkmm/printunixdialog.h>
 
192
#endif
 
193
#include <gtkmm/progressbar.h>
 
194
#include <gtkmm/radioaction.h>
 
195
#include <gtkmm/radiobutton.h>
 
196
#include <gtkmm/radiomenuitem.h>
 
197
#include <gtkmm/radiotoolbutton.h>
 
198
#include <gtkmm/range.h>
 
199
#include <gtkmm/recentaction.h>
 
200
#include <gtkmm/recentchooser.h>
 
201
#include <gtkmm/recentchooserdialog.h>
 
202
#include <gtkmm/recentchoosermenu.h>
 
203
#include <gtkmm/recentchooserwidget.h>
 
204
#include <gtkmm/recentfilter.h>
 
205
#include <gtkmm/recentinfo.h>
 
206
#include <gtkmm/recentmanager.h>
 
207
#include <gtkmm/ruler.h>
 
208
#include <gtkmm/scale.h>
 
209
#include <gtkmm/scrollbar.h>
 
210
#include <gtkmm/scrolledwindow.h>
 
211
#include <gtkmm/separator.h>
 
212
#include <gtkmm/separatormenuitem.h>
 
213
#include <gtkmm/separatortoolitem.h>
 
214
#include <gtkmm/settings.h>
 
215
#include <gtkmm/sizegroup.h>
 
216
#include <gtkmm/spinbutton.h>
 
217
#include <gtkmm/spinner.h>
 
218
#include <gtkmm/statusbar.h>
 
219
#include <gtkmm/statusicon.h>
 
220
#include <gtkmm/stock.h>
 
221
#include <gtkmm/stockid.h>
 
222
#include <gtkmm/stockitem.h>
 
223
#include <gtkmm/style.h>
 
224
#include <gtkmm/table.h>
 
225
#include <gtkmm/tearoffmenuitem.h>
 
226
#include <gtkmm/textbuffer.h>
 
227
#include <gtkmm/textchildanchor.h>
 
228
#include <gtkmm/textiter.h>
 
229
#include <gtkmm/textmark.h>
 
230
#include <gtkmm/texttag.h>
 
231
#include <gtkmm/texttagtable.h>
 
232
#include <gtkmm/textview.h>
 
233
#include <gtkmm/toggleaction.h>
 
234
#include <gtkmm/togglebutton.h>
 
235
#include <gtkmm/toolbar.h>
 
236
#include <gtkmm/toolitem.h>
 
237
#include <gtkmm/toolbutton.h>
 
238
#include <gtkmm/toolpalette.h>
 
239
#include <gtkmm/toggletoolbutton.h>
 
240
#include <gtkmm/menutoolbutton.h>
 
241
#include <gtkmm/tooltip.h>
 
242
#include <gtkmm/tooltips.h>
 
243
#include <gtkmm/treemodel.h>
 
244
#include <gtkmm/treemodelfilter.h>
 
245
#include <gtkmm/treemodelsort.h>
 
246
#include <gtkmm/treepath.h>
 
247
#include <gtkmm/treerowreference.h>
 
248
#include <gtkmm/treeselection.h>
 
249
#include <gtkmm/treestore.h>
 
250
#include <gtkmm/treeview.h>
 
251
#include <gtkmm/treeviewcolumn.h>
 
252
#include <gtkmm/uimanager.h>
 
253
#include <gtkmm/viewport.h>
 
254
#include <gtkmm/widget.h>
 
255
#include <gtkmm/window.h>
 
256
 
 
257
#endif /* #ifndef GTKMM_H */