-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCGUI.hh
145 lines (128 loc) · 4.46 KB
/
CGUI.hh
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
#pragma once
/*
GTK+
*/
#include <gtk/gtk.h>
/*
Cell
*/
#include "./Cell/CellRenderer/CellRenderer.hh"
#include "./Cell/CellRenderer/CellRendererText/CellRendererText.hh"
#include "./Cell/CellRenderer/CellRendererAccel/CellRendererAccel.hh"
#include "./Cell/CellRenderer/CellRendererCombo/CellRendererCombo.hh"
#include "./Cell/CellRenderer/CellRendererSpin/CellRendererSpin.hh"
/*
Convert(er)
*/
#include "./Converter/Convert.hh"
/*
Base Classes and Interfaces
*/
#include "./Widgets/Container.hh"
#include "./Widgets/Editable.hh"
#include "./Widgets/Handler.hh"
#include "./Widgets/NativeDialog.hh"
#include "./Widgets/Orientable.hh"
#include "./Widgets/Scrollable.hh"
#include "./Widgets/StyleContext.hh"
#include "./Widgets/ToolShell.hh"
#include "./Widgets/TreeModel.hh"
#include "./Widgets/Widget.hh"
#include "./Widgets/WidgetCast.hh"
#include "./Widgets/FileChooser.hh"
/*
Widgets
*/
#include "./Widgets/AboutDialog/AboutDialog.hh"
#include "./Widgets/Actionbar/Actionbar.hh"
#include "./Widgets/AspectFrame/AspectFrame.hh"
#include "./Widgets/Assistant/Assistant.hh"
#include "./Widgets/Box/Box.hh"
#include "./Widgets/Button/Button.hh"
#include "./Widgets/ButtonBox/ButtonBox.hh"
#include "./Widgets/CheckButton/CheckButton.hh"
#include "./Widgets/ComboBox/ComboBox.hh"
#include "./Widgets/ComboBoxText/ComboBoxText.hh"
#include "./Widgets/Dialog/Dialog.hh"
#include "./Widgets/Entry/Entry.hh"
#include "./Widgets/Entry/EntryBuffer/EntryBuffer.hh"
#include "./Widgets/EventBox/EventBox.hh"
#include "./Widgets/Expander/Expander.hh"
#include "./Widgets/FileChooserDialog/FileChooserDialog.hh"
#include "./Widgets/FileChooserNative/FileChooserNative.hh"
#include "./Widgets/FileChooserWidget/FileChooserWidget.hh"
#include "./Widgets/Fixed/Fixed.hh"
#include "./Widgets/FlowBox/FlowBox.hh"
#include "./Widgets/Frame/Frame.hh"
#include "./Widgets/Grid/Grid.hh"
#include "./Widgets/Headerbar/Headerbar.hh"
#include "./Widgets/IconView/IconView.hh"
#include "./Widgets/Image/Image.hh"
#include "./Widgets/Infobar/Infobar.hh"
#include "./Widgets/Label/Label.hh"
#include "./Widgets/Layout/Layout.hh"
#include "./Widgets/Levelbar/Levelbar.hh"
#include "./Widgets/LinkButton/LinkButton.hh"
#include "./Widgets/ListBox/ListBox.hh"
#include "./Widgets/MessageDialog/MessageDialog.hh"
#include "./Widgets/Notebook/Notebook.hh"
#include "./Widgets/Overlay/Overlay.hh"
#include "./Widgets/Paned/Paned.hh"
#include "./Widgets/Popover/Popover.hh"
#include "./Widgets/PopoverMenu/PopoverMenu.hh"
#include "./Widgets/Progressbar/Progressbar.hh"
#include "./Widgets/RadioButton/RadioButton.hh"
#include "./Widgets/Range/Range.hh"
#include "./Widgets/Revealer/Revealer.hh"
#include "./Widgets/Scale/Scale.hh"
#include "./Widgets/ScaleButton/ScaleButton.hh"
#include "./Widgets/Scrollbar/Scrollbar.hh"
#include "./Widgets/ScrolledWindow/ScrolledWindow.hh"
#include "./Widgets/Searchbar/Searchbar.hh"
#include "./Widgets/SearchEntry/SearchEntry.hh"
#include "./Widgets/Separator/Separator.hh"
#include "./Widgets/SpinButton/SpinButton.hh"
#include "./Widgets/Spinner/Spinner.hh"
#include "./Widgets/Stack/Stack/Stack.hh"
#include "./Widgets/Stack/StackSidebar/StackSidebar.hh"
#include "./Widgets/Stack/StackSwitcher/StackSwitcher.hh"
#include "./Widgets/Statusbar/Statusbar.hh"
#include "./Widgets/Switch/Switch.hh"
#include "./Widgets/TextView/TextView.hh"
#include "./Widgets/TextView/TextBuffer/TextBuffer.hh"
#include "./Widgets/TextView/TextMark/TextMark.hh"
#include "./Widgets/ToggleButton/ToggleButton.hh"
#include "./Widgets/Toolbar/Toolbar.hh"
#include "./Widgets/ToolItem/ToolItem.hh"
#include "./Widgets/ToolItemGroup/ToolItemGroup.hh"
#include "./Widgets/ToolPalette/ToolPalette.hh"
#include "./Widgets/TreeView/TreeView.hh"
#include "./Widgets/TreeView/ListStore/ListStore.hh"
#include "./Widgets/TreeView/TreeSelection/TreeSelection.hh"
#include "./Widgets/TreeView/TreeViewColumn/TreeViewColumn.hh"
#include "./Widgets/VolumeButton/VolumeButton.hh"
#include "./Widgets/Window/Window.hh"
/*
CssProvider
*/
#include "./CssProvider/CssProvider.hh"
/*
Custom
*/
#include "./Custom/Array/Array.hh"
#include "./Custom/CallableGroup/CallableGroup.hh"
#include "./Custom/DeleteOnQuit/DeleteOnQuit.hh"
#include "./Custom/Functional/Binder/Binder.hh"
#include "./Custom/Initialize/Initialize.hh"
#include "./Custom/List/List.hh"
#include "./Custom/Vector/Vector.hh"
/*
Pixbuf
*/
#include "./Pixbuf/Pixbuf.hh"
/*
Misc
*/
#include "./Misc/AccelGroup/AccelGroup.hh"
#include "./Misc/Adjustment/Adjustment.hh"
#include "./Misc/SizeGroup/SizeGroup.hh"