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
|
# File 'lib/simple_layout.rb', line 33
def layout_class_maps
@layout_class_maps_hash ||= {
'_image' => Gtk::Image,
'_label' => Gtk::Label,
'_progress_bar' => Gtk::ProgressBar,
'_status_bar' => Gtk::Statusbar,
'_button' => Gtk::Button,
'_check_button' => Gtk::CheckButton,
'_radio_button' => Gtk::RadioButton,
'_toggle_button' => Gtk::ToggleButton,
'_link_button' => Gtk::LinkButton,
'_entry' => Gtk::Entry,
'_scale' => Gtk::Scale,
'_hscale' => [Gtk::Scale, :horizontal],
'_vscale' => [Gtk::Scale, :vertical],
'_spin_button' => Gtk::SpinButton,
'_text_view' => Gtk::TextView,
'_tree_view' => Gtk::TreeView,
'_cell_view' => Gtk::CellView,
'_icon_view' => Gtk::IconView,
'_combobox' => Gtk::ComboBoxText,
'_menu' => Gtk::,
'_menubar' => Gtk::,
'_menuitem' => Gtk::,
'_menuitem_radio' => Gtk::,
'_menuitem_check' => Gtk::,
'_menuitem_separator' => Gtk::,
'_menuitem_teoroff' => Gtk::,
'_toolbar' => Gtk::Toolbar,
'_toolitem' => Gtk::ToolItem,
'_separator_toolitem' => Gtk::SeparatorToolItem,
'_tool_button' => Gtk::ToolButton,
'_toggle_tool_button' => Gtk::ToggleToolButton,
'_radio_tool_button' => Gtk::RadioToolButton,
'_color_button' => Gtk::ColorButton,
'_color_chooser' => Gtk::ColorChooserWidget,
'_file_chooser_button' => Gtk::FileChooserButton,
'_file_chooser_widget' => Gtk::FileChooserWidget,
'_font_button' => Gtk::FontButton,
'_font_selection' => Gtk::FontSelection,
'_alignment' => Gtk::Alignment,
'_aspect_frame' => Gtk::AspectFrame,
'_box' => Gtk::Box,
'_vbox' => [Gtk::Box, :vertical],
'_hbox' => [Gtk::Box, :horizontal],
'_button_box' => Gtk::ButtonBox,
'_vbutton_box' => [Gtk::ButtonBox, :vertical],
'_hbutton_box' => [Gtk::ButtonBox, :horizontal],
'_paned' => Gtk::Paned,
'_hpaned' => [Gtk::Paned, :horizontal],
'_vpaned' => [Gtk::Paned, :vertical],
'_layout' => Gtk::Layout,
'_notebook' => Gtk::Notebook,
'_table' => Gtk::Table,
'_expander' => Gtk::Expander,
'_frame' => Gtk::Frame,
'_separator' => Gtk::Separator,
'_hseparator' => [Gtk::Separator, :horizontal],
'_vseparator' => [Gtk::Separator, :vertical],
'_scrollbar' => Gtk::Scrollbar,
'_hscrollbar' => [Gtk::Scrollbar, :horizontal],
'_vscrollbar' => [Gtk::Scrollbar, :vertical],
'_scrolled_window' => Gtk::ScrolledWindow,
'_arrow' => Gtk::Arrow,
'_calendar' => Gtk::Calendar,
'_drawing_area' => Gtk::DrawingArea,
'_event_box' => Gtk::EventBox,
'_handle_box' => Gtk::HandleBox,
'_viewport' => Gtk::Viewport,
}
end
|