wxruby 1.9.0-i686-darwin8.4.1
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/wx.rb +35 -0
- data/lib/wx/classes/app.rb +25 -0
- data/lib/wx/classes/artprovider.rb +31 -0
- data/lib/wx/classes/bitmap.rb +23 -0
- data/lib/wx/classes/choice.rb +4 -0
- data/lib/wx/classes/clientdc.rb +13 -0
- data/lib/wx/classes/colour.rb +47 -0
- data/lib/wx/classes/combobox.rb +4 -0
- data/lib/wx/classes/evthandler.rb +824 -0
- data/lib/wx/classes/font.rb +118 -0
- data/lib/wx/classes/grid.rb +130 -0
- data/lib/wx/classes/helpcontroller.rb +5 -0
- data/lib/wx/classes/htmlhelpcontroller.rb +5 -0
- data/lib/wx/classes/htmlwindow.rb +6 -0
- data/lib/wx/classes/icon.rb +14 -0
- data/lib/wx/classes/image.rb +14 -0
- data/lib/wx/classes/listbox.rb +4 -0
- data/lib/wx/classes/locale.rb +28 -0
- data/lib/wx/classes/object.rb +7 -0
- data/lib/wx/classes/paintdc.rb +12 -0
- data/lib/wx/classes/point.rb +5 -0
- data/lib/wx/classes/previewframe.rb +13 -0
- data/lib/wx/classes/rect.rb +5 -0
- data/lib/wx/classes/size.rb +5 -0
- data/lib/wx/classes/texturlevent.rb +6 -0
- data/lib/wx/classes/timer.rb +69 -0
- data/lib/wx/classes/window.rb +38 -0
- data/lib/wx/classes/xmlresource.rb +16 -0
- data/lib/wx/version.rb +3 -0
- data/lib/wxruby2.bundle +0 -0
- data/samples/SAMPLES-LICENSE.TXT +18 -0
- data/samples/aui/aui.rb +1352 -0
- data/samples/bigdemo/About.rbw +39 -0
- data/samples/bigdemo/ColorPanel.rbw +25 -0
- data/samples/bigdemo/GridSimple.rbw +80 -0
- data/samples/bigdemo/MDIDemo.rbw +59 -0
- data/samples/bigdemo/PopupMenu.rbw +151 -0
- data/samples/bigdemo/ShapedWindow.rbw +135 -0
- data/samples/bigdemo/Sizers.rbw +545 -0
- data/samples/bigdemo/bigdemo.rb +826 -0
- data/samples/bigdemo/demoTemplate.rbw +37 -0
- data/samples/bigdemo/helpfile.htb +0 -0
- data/samples/bigdemo/icons/Test 015.jpg +0 -0
- data/samples/bigdemo/icons/Test 015.png +0 -0
- data/samples/bigdemo/icons/choice.bmp +0 -0
- data/samples/bigdemo/icons/choice.xpm +27 -0
- data/samples/bigdemo/icons/combo.bmp +0 -0
- data/samples/bigdemo/icons/combo.xpm +27 -0
- data/samples/bigdemo/icons/copy.xpm +25 -0
- data/samples/bigdemo/icons/cut.xpm +24 -0
- data/samples/bigdemo/icons/gauge.bmp +0 -0
- data/samples/bigdemo/icons/gauge.xpm +27 -0
- data/samples/bigdemo/icons/help.xpm +25 -0
- data/samples/bigdemo/icons/list.bmp +0 -0
- data/samples/bigdemo/icons/list.xpm +27 -0
- data/samples/bigdemo/icons/mondrian.ico +0 -0
- data/samples/bigdemo/icons/mondrian.xpm +44 -0
- data/samples/bigdemo/icons/new.xpm +24 -0
- data/samples/bigdemo/icons/ogl.ico +0 -0
- data/samples/bigdemo/icons/ogl.xpm +45 -0
- data/samples/bigdemo/icons/open.xpm +26 -0
- data/samples/bigdemo/icons/paste.bmp +0 -0
- data/samples/bigdemo/icons/paste.xpm +38 -0
- data/samples/bigdemo/icons/pointy.png +0 -0
- data/samples/bigdemo/icons/preview.xpm +26 -0
- data/samples/bigdemo/icons/print.xpm +26 -0
- data/samples/bigdemo/icons/radio.bmp +0 -0
- data/samples/bigdemo/icons/radio.xpm +27 -0
- data/samples/bigdemo/icons/robert.xpm +415 -0
- data/samples/bigdemo/icons/ruby.png +0 -0
- data/samples/bigdemo/icons/sashtest.ico +0 -0
- data/samples/bigdemo/icons/save.xpm +25 -0
- data/samples/bigdemo/icons/smiles.bmp +0 -0
- data/samples/bigdemo/icons/smiles.xpm +39 -0
- data/samples/bigdemo/icons/smiley.ico +0 -0
- data/samples/bigdemo/icons/smiley.xpm +42 -0
- data/samples/bigdemo/icons/stattext.xpm +24 -0
- data/samples/bigdemo/icons/test2.bmp +0 -0
- data/samples/bigdemo/icons/test2.png +0 -0
- data/samples/bigdemo/icons/test2.xpm +79 -0
- data/samples/bigdemo/icons/text.bmp +0 -0
- data/samples/bigdemo/icons/text.xpm +27 -0
- data/samples/bigdemo/icons/tog1.bmp +0 -0
- data/samples/bigdemo/icons/tog1.xpm +38 -0
- data/samples/bigdemo/icons/tog2.bmp +0 -0
- data/samples/bigdemo/icons/tog2.xpm +38 -0
- data/samples/bigdemo/icons/wxwin.ico +0 -0
- data/samples/bigdemo/icons/wxwin16x16.png +0 -0
- data/samples/bigdemo/icons/wxwin16x16.xpm +25 -0
- data/samples/bigdemo/icons/wxwin32x32.png +0 -0
- data/samples/bigdemo/icons/wxwin48x48.png +0 -0
- data/samples/bigdemo/run.rb +94 -0
- data/samples/bigdemo/tips.txt +7 -0
- data/samples/bigdemo/utils.rb +12 -0
- data/samples/bigdemo/wxArtProvider.rbw +285 -0
- data/samples/bigdemo/wxBitmapButton.rbw +64 -0
- data/samples/bigdemo/wxButton.rbw +66 -0
- data/samples/bigdemo/wxCalendarCtrl.rbw +72 -0
- data/samples/bigdemo/wxCheckBox.rbw +52 -0
- data/samples/bigdemo/wxCheckListBox.rbw +77 -0
- data/samples/bigdemo/wxChoice.rbw +49 -0
- data/samples/bigdemo/wxChoicebook.rbw +80 -0
- data/samples/bigdemo/wxColourDialog.rbw +34 -0
- data/samples/bigdemo/wxComboBox.rbw +79 -0
- data/samples/bigdemo/wxCursor.rbw +140 -0
- data/samples/bigdemo/wxDialog.rbw +92 -0
- data/samples/bigdemo/wxDirDialog.rbw +32 -0
- data/samples/bigdemo/wxDragImage.rbw +74 -0
- data/samples/bigdemo/wxFileDialog.rbw +39 -0
- data/samples/bigdemo/wxFileDialog_Save.rbw +38 -0
- data/samples/bigdemo/wxFindReplaceDialog.rbw +85 -0
- data/samples/bigdemo/wxFontDialog.rbw +176 -0
- data/samples/bigdemo/wxFrame.rbw +55 -0
- data/samples/bigdemo/wxGauge.rbw +73 -0
- data/samples/bigdemo/wxGenericDirCtrl.rbw +78 -0
- data/samples/bigdemo/wxGrid.rbw +68 -0
- data/samples/bigdemo/wxHtmlHelpController.rbw +57 -0
- data/samples/bigdemo/wxListBox.rbw +142 -0
- data/samples/bigdemo/wxListCtrl_virtual.rbw +109 -0
- data/samples/bigdemo/wxMDIWindows.rbw +52 -0
- data/samples/bigdemo/wxMenu.rbw +238 -0
- data/samples/bigdemo/wxMessageDialog.rbw +30 -0
- data/samples/bigdemo/wxMiniFrame.rbw +74 -0
- data/samples/bigdemo/wxMultipleChoiceDialog.rbw +34 -0
- data/samples/bigdemo/wxNotebook.rbw +138 -0
- data/samples/bigdemo/wxProgressDialog.rbw +45 -0
- data/samples/bigdemo/wxRadioBox.rbw +74 -0
- data/samples/bigdemo/wxRadioButton.rbw +127 -0
- data/samples/bigdemo/wxSashWindow.rbw +155 -0
- data/samples/bigdemo/wxScrolledMessageDialog.rbw +59 -0
- data/samples/bigdemo/wxScrolledWindow.rbw +196 -0
- data/samples/bigdemo/wxSingleChoiceDialog.rbw +35 -0
- data/samples/bigdemo/wxSlider.rbw +44 -0
- data/samples/bigdemo/wxSpinButton.rbw +52 -0
- data/samples/bigdemo/wxSpinCtrl.rbw +53 -0
- data/samples/bigdemo/wxSplitterWindow.rbw +65 -0
- data/samples/bigdemo/wxStaticBitmap.rbw +53 -0
- data/samples/bigdemo/wxStaticText.rbw +57 -0
- data/samples/bigdemo/wxStatusBar.rbw +128 -0
- data/samples/bigdemo/wxTextCtrl.rbw +151 -0
- data/samples/bigdemo/wxTextEntryDialog.rbw +34 -0
- data/samples/bigdemo/wxToggleButton.rbw +51 -0
- data/samples/bigdemo/wxToolBar.rbw +133 -0
- data/samples/bigdemo/wxTreeCtrl.rbw +192 -0
- data/samples/calendar/calendar.rb +275 -0
- data/samples/caret/caret.rb +296 -0
- data/samples/caret/mondrian.xpm +44 -0
- data/samples/controls/controls.rb +1140 -0
- data/samples/controls/get_item_sample.rb +87 -0
- data/samples/controls/icons/choice.xpm +27 -0
- data/samples/controls/icons/combo.xpm +27 -0
- data/samples/controls/icons/gauge.xpm +27 -0
- data/samples/controls/icons/list.xpm +27 -0
- data/samples/controls/icons/radio.xpm +27 -0
- data/samples/controls/icons/stattext.xpm +24 -0
- data/samples/controls/icons/text.xpm +27 -0
- data/samples/controls/mondrian.ico +0 -0
- data/samples/controls/mondrian.xpm +44 -0
- data/samples/controls/test2.bmp +0 -0
- data/samples/dialogs/dialogs.rb +724 -0
- data/samples/dialogs/tips.txt +18 -0
- data/samples/etc/activation.rb +108 -0
- data/samples/etc/choice.rb +72 -0
- data/samples/etc/miniframe.rb +84 -0
- data/samples/etc/sash.rb +135 -0
- data/samples/etc/scrollwin.rb +116 -0
- data/samples/etc/system_settings.rb +258 -0
- data/samples/etc/wizard.rb +81 -0
- data/samples/grid/grid.rb +201 -0
- data/samples/html/html.rb +251 -0
- data/samples/images/Thumbs.db +0 -0
- data/samples/images/images.rb +48 -0
- data/samples/images/paperclip.png +0 -0
- data/samples/listbook/listbook.rb +183 -0
- data/samples/listbook/listbook.xrc +370 -0
- data/samples/mdi/mdi.rb +87 -0
- data/samples/minimal/minimal.rb +95 -0
- data/samples/minimal/mondrian.ico +0 -0
- data/samples/minimal/mondrian.xpm +44 -0
- data/samples/minimal/nothing.rb +46 -0
- data/samples/minimal/text.rb +35 -0
- data/samples/printing/mondrian.ico +0 -0
- data/samples/printing/mondrian.xpm +44 -0
- data/samples/printing/printing.rb +484 -0
- data/samples/text/mondrian.ico +0 -0
- data/samples/text/mondrian.xpm +44 -0
- data/samples/text/scintilla.rb +180 -0
- data/samples/text/textctrl.rb +124 -0
- data/samples/text/unicode.rb +238 -0
- data/samples/text/utf8.txt +15 -0
- data/samples/treectrl/icon1.xpm +79 -0
- data/samples/treectrl/icon2.xpm +53 -0
- data/samples/treectrl/icon3.xpm +79 -0
- data/samples/treectrl/icon4.xpm +43 -0
- data/samples/treectrl/icon5.xpm +79 -0
- data/samples/treectrl/treectrl.rb +1210 -0
- data/samples/xrc/samples.xrc +46 -0
- data/samples/xrc/xrc_sample.rb +107 -0
- metadata +264 -0
@@ -0,0 +1,545 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
begin
|
4
|
+
require 'wx'
|
5
|
+
rescue LoadError => no_wx_err
|
6
|
+
begin
|
7
|
+
require 'rubygems'
|
8
|
+
require 'wx'
|
9
|
+
rescue LoadError
|
10
|
+
raise no_wx_err
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
def make_simple_box1(win)
|
15
|
+
box = Wx::BoxSizer.new(Wx::HORIZONTAL)
|
16
|
+
box.add(Wx::Button.new(win, 1010, "one"), 0, Wx::EXPAND)
|
17
|
+
box.add(Wx::Button.new(win, 1010, "two"), 0, Wx::EXPAND)
|
18
|
+
box.add(Wx::Button.new(win, 1010, "three"), 0, Wx::EXPAND)
|
19
|
+
box.add(Wx::Button.new(win, 1010, "four"), 0, Wx::EXPAND)
|
20
|
+
|
21
|
+
return box
|
22
|
+
end
|
23
|
+
|
24
|
+
#----------------------------------------------------------------------
|
25
|
+
|
26
|
+
def make_simple_box2(win)
|
27
|
+
box = Wx::BoxSizer.new(Wx::VERTICAL)
|
28
|
+
box.add(Wx::Button.new(win, 1010, "one"), 0, Wx::EXPAND)
|
29
|
+
box.add(Wx::Button.new(win, 1010, "two"), 0, Wx::EXPAND)
|
30
|
+
box.add(Wx::Button.new(win, 1010, "three"), 0, Wx::EXPAND)
|
31
|
+
box.add(Wx::Button.new(win, 1010, "four"), 0, Wx::EXPAND)
|
32
|
+
|
33
|
+
return box
|
34
|
+
end
|
35
|
+
|
36
|
+
#----------------------------------------------------------------------
|
37
|
+
|
38
|
+
def make_simple_box3(win)
|
39
|
+
box = Wx::BoxSizer.new(Wx::HORIZONTAL)
|
40
|
+
box.add(Wx::Button.new(win, 1010, "one"), 0, Wx::EXPAND)
|
41
|
+
box.add(Wx::Button.new(win, 1010, "two"), 0, Wx::EXPAND)
|
42
|
+
box.add(Wx::Button.new(win, 1010, "three"), 0, Wx::EXPAND)
|
43
|
+
box.add(Wx::Button.new(win, 1010, "four"), 0, Wx::EXPAND)
|
44
|
+
box.add(Wx::Button.new(win, 1010, "five"), 1, Wx::EXPAND)
|
45
|
+
|
46
|
+
return box
|
47
|
+
end
|
48
|
+
|
49
|
+
#----------------------------------------------------------------------
|
50
|
+
|
51
|
+
def make_simple_box4(win)
|
52
|
+
box = Wx::BoxSizer.new(Wx::HORIZONTAL)
|
53
|
+
box.add(Wx::Button.new(win, 1010, "one"), 0, Wx::EXPAND)
|
54
|
+
box.add(Wx::Button.new(win, 1010, "two"), 0, Wx::EXPAND)
|
55
|
+
box.add(Wx::Button.new(win, 1010, "three"), 1, Wx::EXPAND)
|
56
|
+
box.add(Wx::Button.new(win, 1010, "four"), 1, Wx::EXPAND)
|
57
|
+
box.add(Wx::Button.new(win, 1010, "five"), 1, Wx::EXPAND)
|
58
|
+
|
59
|
+
return box
|
60
|
+
end
|
61
|
+
|
62
|
+
#----------------------------------------------------------------------
|
63
|
+
|
64
|
+
def make_simple_box5(win)
|
65
|
+
box = Wx::BoxSizer.new(Wx::HORIZONTAL)
|
66
|
+
box.add(Wx::Button.new(win, 1010, "one"), 0, Wx::EXPAND)
|
67
|
+
box.add(Wx::Button.new(win, 1010, "two"), 0, Wx::EXPAND)
|
68
|
+
box.add(Wx::Button.new(win, 1010, "three"), 3, Wx::EXPAND)
|
69
|
+
box.add(Wx::Button.new(win, 1010, "four"), 1, Wx::EXPAND)
|
70
|
+
box.add(Wx::Button.new(win, 1010, "five"), 1, Wx::EXPAND)
|
71
|
+
|
72
|
+
return box
|
73
|
+
end
|
74
|
+
|
75
|
+
#----------------------------------------------------------------------
|
76
|
+
|
77
|
+
def make_simple_box6(win)
|
78
|
+
box = Wx::BoxSizer.new(Wx::HORIZONTAL)
|
79
|
+
box.add(Wx::Button.new(win, 1010, "one"), 1, Wx::ALIGN_TOP)
|
80
|
+
box.add(Wx::Button.new(win, 1010, "two"), 1, Wx::EXPAND)
|
81
|
+
box.add(Wx::Button.new(win, 1010, "three"), 1, Wx::ALIGN_CENTER)
|
82
|
+
box.add(Wx::Button.new(win, 1010, "four"), 1, Wx::EXPAND)
|
83
|
+
box.add(Wx::Button.new(win, 1010, "five"), 1, Wx::ALIGN_BOTTOM)
|
84
|
+
|
85
|
+
return box
|
86
|
+
end
|
87
|
+
|
88
|
+
#----------------------------------------------------------------------
|
89
|
+
|
90
|
+
def make_simple_box7(win)
|
91
|
+
box = Wx::BoxSizer.new(Wx::HORIZONTAL)
|
92
|
+
box.add(Wx::Button.new(win, 1010, "one"), 0, Wx::EXPAND)
|
93
|
+
box.add(Wx::Button.new(win, 1010, "two"), 0, Wx::EXPAND)
|
94
|
+
box.add(Wx::Button.new(win, 1010, "three"), 0, Wx::EXPAND)
|
95
|
+
box.add(60, 20, 0, Wx::EXPAND)
|
96
|
+
box.add(Wx::Button.new(win, 1010, "five"), 1, Wx::EXPAND)
|
97
|
+
|
98
|
+
return box
|
99
|
+
end
|
100
|
+
|
101
|
+
#----------------------------------------------------------------------
|
102
|
+
|
103
|
+
def make_simple_box8(win)
|
104
|
+
box = Wx::BoxSizer.new(Wx::VERTICAL)
|
105
|
+
box.add(Wx::Button.new(win, 1010, "one"), 0, Wx::EXPAND)
|
106
|
+
box.add(0,0,1)
|
107
|
+
box.add(Wx::Button.new(win, 1010, "two"), 0, Wx::ALIGN_CENTER)
|
108
|
+
box.add(0,0,1)
|
109
|
+
box.add(Wx::Button.new(win, 1010, "three"), 0, Wx::EXPAND)
|
110
|
+
box.add(Wx::Button.new(win, 1010, "four"), 0, Wx::EXPAND)
|
111
|
+
#box.add(Wx::Button.new(win, 1010, "five"), 1, Wx::EXPAND)
|
112
|
+
|
113
|
+
return box
|
114
|
+
end
|
115
|
+
|
116
|
+
#----------------------------------------------------------------------
|
117
|
+
|
118
|
+
def make_simple_border1(win)
|
119
|
+
bdr = Wx::BoxSizer.new(Wx::HORIZONTAL)
|
120
|
+
btn = Wx::Button.new(win, 1010, "border")
|
121
|
+
btn.set_size(Wx::Size.new(80,80))
|
122
|
+
bdr.add(btn, 1, Wx::EXPAND | Wx::ALL, 15)
|
123
|
+
|
124
|
+
return bdr
|
125
|
+
end
|
126
|
+
|
127
|
+
#----------------------------------------------------------------------
|
128
|
+
|
129
|
+
def make_simple_border2(win)
|
130
|
+
bdr = Wx::BoxSizer.new(Wx::HORIZONTAL)
|
131
|
+
btn = Wx::Button.new(win, 1010, "border")
|
132
|
+
btn.set_size(Wx::Size.new(80,80))
|
133
|
+
bdr.add(btn, 1, Wx::EXPAND | Wx::EAST | Wx::WEST, 15)
|
134
|
+
|
135
|
+
return bdr
|
136
|
+
end
|
137
|
+
|
138
|
+
#----------------------------------------------------------------------
|
139
|
+
|
140
|
+
def make_simple_border3(win)
|
141
|
+
bdr = Wx::BoxSizer.new(Wx::HORIZONTAL)
|
142
|
+
btn = Wx::Button.new(win, 1010, "border")
|
143
|
+
btn.set_size(Wx::Size.new(80,80))
|
144
|
+
bdr.add(btn, 1, Wx::EXPAND | Wx::NORTH | Wx::WEST, 15)
|
145
|
+
|
146
|
+
return bdr
|
147
|
+
end
|
148
|
+
|
149
|
+
#----------------------------------------------------------------------
|
150
|
+
|
151
|
+
def make_box_in_box(win)
|
152
|
+
box = Wx::BoxSizer.new(Wx::VERTICAL)
|
153
|
+
|
154
|
+
box.add(Wx::Button.new(win, 1010, "one"), 0, Wx::EXPAND)
|
155
|
+
|
156
|
+
box2 = Wx::BoxSizer.new(Wx::HORIZONTAL)
|
157
|
+
box2.add(Wx::Button.new(win, 1010, "two"), 0, Wx::EXPAND)
|
158
|
+
btn3 = Wx::Button.new(win, 1010, "three")
|
159
|
+
box2.add(btn3, 0, Wx::EXPAND)
|
160
|
+
box2.add(Wx::Button.new(win, 1010, "four"), 0, Wx::EXPAND)
|
161
|
+
box2.add(Wx::Button.new(win, 1010, "five"), 0, Wx::EXPAND)
|
162
|
+
|
163
|
+
box3 = Wx::BoxSizer.new(Wx::VERTICAL)
|
164
|
+
box3.add(Wx::Button.new(win, 1010, "six"), 0, Wx::EXPAND)
|
165
|
+
box3.add(Wx::Button.new(win, 1010, "seven"), 2, Wx::EXPAND)
|
166
|
+
box3.add(Wx::Button.new(win, 1010, "eight"), 1, Wx::EXPAND)
|
167
|
+
box3.add(Wx::Button.new(win, 1010, "nine"), 1, Wx::EXPAND)
|
168
|
+
|
169
|
+
box2.add(box3, 1, Wx::EXPAND)
|
170
|
+
box.add(box2, 1, Wx::EXPAND)
|
171
|
+
|
172
|
+
box.add(Wx::Button.new(win, 1010, "ten"), 0, Wx::EXPAND)
|
173
|
+
|
174
|
+
return box
|
175
|
+
end
|
176
|
+
|
177
|
+
#----------------------------------------------------------------------
|
178
|
+
|
179
|
+
def make_box_in_border(win)
|
180
|
+
bdr = Wx::BoxSizer.new(Wx::HORIZONTAL)
|
181
|
+
box = make_simple_box3(win)
|
182
|
+
bdr.add(box, 1, Wx::EXPAND | Wx::ALL, 15)
|
183
|
+
|
184
|
+
return bdr
|
185
|
+
end
|
186
|
+
|
187
|
+
#----------------------------------------------------------------------
|
188
|
+
|
189
|
+
def make_border_in_box(win)
|
190
|
+
insideBox = Wx::BoxSizer.new(Wx::HORIZONTAL)
|
191
|
+
|
192
|
+
box2 = Wx::BoxSizer.new(Wx::HORIZONTAL)
|
193
|
+
box2.add(Wx::Button.new(win, 1010, "one"), 0, Wx::EXPAND)
|
194
|
+
box2.add(Wx::Button.new(win, 1010, "two"), 0, Wx::EXPAND)
|
195
|
+
box2.add(Wx::Button.new(win, 1010, "three"), 0, Wx::EXPAND)
|
196
|
+
box2.add(Wx::Button.new(win, 1010, "four"), 0, Wx::EXPAND)
|
197
|
+
box2.add(Wx::Button.new(win, 1010, "five"), 0, Wx::EXPAND)
|
198
|
+
|
199
|
+
insideBox.add(box2, 0, Wx::EXPAND)
|
200
|
+
|
201
|
+
bdr = Wx::BoxSizer.new(Wx::HORIZONTAL)
|
202
|
+
bdr.add(Wx::Button.new(win, 1010, "border"), 1, Wx::EXPAND | Wx::ALL)
|
203
|
+
insideBox.add(bdr, 1, Wx::EXPAND | Wx::ALL, 20)
|
204
|
+
|
205
|
+
box3 = Wx::BoxSizer.new(Wx::VERTICAL)
|
206
|
+
box3.add(Wx::Button.new(win, 1010, "six"), 0, Wx::EXPAND)
|
207
|
+
box3.add(Wx::Button.new(win, 1010, "seven"), 2, Wx::EXPAND)
|
208
|
+
box3.add(Wx::Button.new(win, 1010, "eight"), 1, Wx::EXPAND)
|
209
|
+
box3.add(Wx::Button.new(win, 1010, "nine"), 1, Wx::EXPAND)
|
210
|
+
insideBox.add(box3, 1, Wx::EXPAND)
|
211
|
+
|
212
|
+
outsideBox = Wx::BoxSizer.new(Wx::VERTICAL)
|
213
|
+
outsideBox.add(Wx::Button.new(win, 1010, "top"), 0, Wx::EXPAND)
|
214
|
+
outsideBox.add(insideBox, 1, Wx::EXPAND)
|
215
|
+
outsideBox.add(Wx::Button.new(win, 1010, "bottom"), 0, Wx::EXPAND)
|
216
|
+
|
217
|
+
return outsideBox
|
218
|
+
|
219
|
+
end
|
220
|
+
|
221
|
+
#----------------------------------------------------------------------
|
222
|
+
|
223
|
+
def make_grid1(win)
|
224
|
+
gs = Wx::GridSizer.new(3,3,2,2) # rows, cols, hgap, vgap
|
225
|
+
|
226
|
+
gs.add(Wx::Button.new(win, 1010, "one"), 0, Wx::EXPAND)
|
227
|
+
gs.add(Wx::Button.new(win, 1010, "two"), 0, Wx::EXPAND)
|
228
|
+
gs.add(Wx::Button.new(win, 1010, "three"), 0, Wx::EXPAND)
|
229
|
+
gs.add(Wx::Button.new(win, 1010, "four"), 0, Wx::EXPAND)
|
230
|
+
gs.add(Wx::Button.new(win, 1010, "five"), 0, Wx::EXPAND)
|
231
|
+
gs.add(Wx::Button.new(win, 1010, "six"), 0, Wx::EXPAND)
|
232
|
+
gs.add(Wx::Button.new(win, 1010, "seven"), 0, Wx::EXPAND)
|
233
|
+
gs.add(Wx::Button.new(win, 1010, "eight"), 0, Wx::EXPAND)
|
234
|
+
gs.add(Wx::Button.new(win, 1010, "nine"), 0, Wx::EXPAND)
|
235
|
+
|
236
|
+
return gs
|
237
|
+
end
|
238
|
+
|
239
|
+
#----------------------------------------------------------------------
|
240
|
+
|
241
|
+
def make_grid2(win)
|
242
|
+
gs = Wx::GridSizer.new(3,3) # rows, cols, hgap, vgap
|
243
|
+
|
244
|
+
box = Wx::BoxSizer.new(Wx::VERTICAL)
|
245
|
+
box.add(Wx::Button.new(win, 1010, "A"), 0, Wx::EXPAND)
|
246
|
+
box.add(Wx::Button.new(win, 1010, "B"), 1, Wx::EXPAND)
|
247
|
+
|
248
|
+
gs2 = Wx::GridSizer.new(2,2,4,4) # rows, cols, hgap, vgap
|
249
|
+
gs2.add(Wx::Button.new(win, 1010, "C"), 0, Wx::EXPAND)
|
250
|
+
gs2.add(Wx::Button.new(win, 1010, "E"), 0, Wx::EXPAND)
|
251
|
+
gs2.add(Wx::Button.new(win, 1010, "F"), 0, Wx::EXPAND)
|
252
|
+
gs2.add(Wx::Button.new(win, 1010, "G"), 0, Wx::EXPAND)
|
253
|
+
|
254
|
+
gs.add(Wx::Button.new(win, 1010, "one"), 0, Wx::ALIGN_RIGHT | Wx::ALIGN_BOTTOM)
|
255
|
+
gs.add(Wx::Button.new(win, 1010, "two"), 0, Wx::EXPAND)
|
256
|
+
gs.add(Wx::Button.new(win, 1010, "three"), 0, Wx::ALIGN_LEFT | Wx::ALIGN_BOTTOM)
|
257
|
+
gs.add(Wx::Button.new(win, 1010, "four"), 0, Wx::EXPAND)
|
258
|
+
gs.add(Wx::Button.new(win, 1010, "five"), 0, Wx::ALIGN_CENTER)
|
259
|
+
gs.add(Wx::Button.new(win, 1010, "six"), 0, Wx::EXPAND)
|
260
|
+
gs.add(box, 0, Wx::EXPAND | Wx::ALL, 10)
|
261
|
+
gs.add(Wx::Button.new(win, 1010, "eight"), 0, Wx::EXPAND)
|
262
|
+
gs.add(gs2, 0, Wx::EXPAND | Wx::ALL, 4)
|
263
|
+
|
264
|
+
return gs
|
265
|
+
end
|
266
|
+
|
267
|
+
#----------------------------------------------------------------------
|
268
|
+
|
269
|
+
def make_grid3(win)
|
270
|
+
gs = Wx::FlexGridSizer.new(3,3,2,2) # rows, cols, hgap, vgap
|
271
|
+
|
272
|
+
gs.add(Wx::Button.new(win, 1010, "one"), 0, Wx::EXPAND)
|
273
|
+
gs.add(Wx::Button.new(win, 1010, "two"), 0, Wx::EXPAND)
|
274
|
+
gs.add(Wx::Button.new(win, 1010, "three"), 0, Wx::EXPAND)
|
275
|
+
gs.add(Wx::Button.new(win, 1010, "four"), 0, Wx::EXPAND)
|
276
|
+
#gs.add(Wx::Button.new(win, 1010, "five"), 0, Wx::EXPAND)
|
277
|
+
gs.add(175, 50)
|
278
|
+
gs.add(Wx::Button.new(win, 1010, "six"), 0, Wx::EXPAND)
|
279
|
+
gs.add(Wx::Button.new(win, 1010, "seven"), 0, Wx::EXPAND)
|
280
|
+
gs.add(Wx::Button.new(win, 1010, "eight"), 0, Wx::EXPAND)
|
281
|
+
gs.add(Wx::Button.new(win, 1010, "nine"), 0, Wx::EXPAND)
|
282
|
+
|
283
|
+
gs.add_growable_row(0)
|
284
|
+
gs.add_growable_row(2)
|
285
|
+
gs.add_growable_col(1)
|
286
|
+
return gs
|
287
|
+
end
|
288
|
+
|
289
|
+
#----------------------------------------------------------------------
|
290
|
+
|
291
|
+
def make_grid4(win)
|
292
|
+
bpos = Wx::DEFAULT_POSITION
|
293
|
+
bsize = Wx::Size.new(100,50)
|
294
|
+
gs = Wx::GridSizer.new(3,3,2,2) #rows, cols, hgap, vgap
|
295
|
+
|
296
|
+
gs.add(Wx::Button.new(win, 1010, "one", bpos, bsize), 0, Wx::ALIGN_TOP | Wx::ALIGN_LEFT)
|
297
|
+
gs.add(Wx::Button.new(win, 1010, "two", bpos, bsize), 0, Wx::ALIGN_TOP | Wx::ALIGN_CENTER_HORIZONTAL)
|
298
|
+
gs.add(Wx::Button.new(win, 1010, "three", bpos, bsize), 0, Wx::ALIGN_TOP | Wx::ALIGN_RIGHT)
|
299
|
+
gs.add(Wx::Button.new(win, 1010, "four", bpos, bsize), 0, Wx::ALIGN_CENTER_VERTICAL | Wx::ALIGN_LEFT)
|
300
|
+
gs.add(Wx::Button.new(win, 1010, "five", bpos, bsize), 0, Wx::ALIGN_CENTER)
|
301
|
+
gs.add(Wx::Button.new(win, 1010, "six", bpos, bsize), 0, Wx::ALIGN_CENTER_VERTICAL | Wx::ALIGN_RIGHT)
|
302
|
+
gs.add(Wx::Button.new(win, 1010, "seven", bpos, bsize), 0, Wx::ALIGN_BOTTOM | Wx::ALIGN_LEFT)
|
303
|
+
gs.add(Wx::Button.new(win, 1010, "eight", bpos, bsize), 0, Wx::ALIGN_BOTTOM | Wx::ALIGN_CENTER_HORIZONTAL)
|
304
|
+
gs.add(Wx::Button.new(win, 1010, "nine", bpos, bsize), 0, Wx::ALIGN_BOTTOM | Wx::ALIGN_RIGHT)
|
305
|
+
|
306
|
+
return gs
|
307
|
+
|
308
|
+
end
|
309
|
+
|
310
|
+
#----------------------------------------------------------------------
|
311
|
+
|
312
|
+
def make_shapes(win)
|
313
|
+
bpos = Wx::DEFAULT_POSITION
|
314
|
+
bsize = Wx::Size.new(100,50)
|
315
|
+
gs = Wx::GridSizer.new(3,3,2,2) #rows, cols, hgap, vgap
|
316
|
+
|
317
|
+
gs.add(Wx::Button.new(win, 1010, "one", bpos, bsize), 0, Wx::SHAPED | Wx::ALIGN_TOP | Wx::ALIGN_LEFT)
|
318
|
+
gs.add(Wx::Button.new(win, 1010, "two", bpos, bsize), 0, Wx::SHAPED | Wx::ALIGN_TOP | Wx::ALIGN_CENTER_HORIZONTAL)
|
319
|
+
gs.add(Wx::Button.new(win, 1010, "three", bpos, bsize), 0, Wx::SHAPED | Wx::ALIGN_TOP | Wx::ALIGN_RIGHT)
|
320
|
+
gs.add(Wx::Button.new(win, 1010, "four", bpos, bsize), 0, Wx::SHAPED | Wx::ALIGN_CENTER_VERTICAL | Wx::ALIGN_LEFT)
|
321
|
+
gs.add(Wx::Button.new(win, 1010, "five", bpos, bsize), 0, Wx::SHAPED | Wx::ALIGN_CENTER)
|
322
|
+
gs.add(Wx::Button.new(win, 1010, "six", bpos, bsize), 0, Wx::SHAPED | Wx::ALIGN_CENTER_VERTICAL | Wx::ALIGN_RIGHT)
|
323
|
+
gs.add(Wx::Button.new(win, 1010, "seven", bpos, bsize), 0, Wx::SHAPED | Wx::ALIGN_BOTTOM | Wx::ALIGN_LEFT)
|
324
|
+
gs.add(Wx::Button.new(win, 1010, "eight", bpos, bsize), 0, Wx::SHAPED | Wx::ALIGN_BOTTOM | Wx::ALIGN_CENTER_HORIZONTAL)
|
325
|
+
gs.add(Wx::Button.new(win, 1010, "nine", bpos, bsize), 0, Wx::SHAPED | Wx::ALIGN_BOTTOM | Wx::ALIGN_RIGHT)
|
326
|
+
|
327
|
+
return gs
|
328
|
+
end
|
329
|
+
|
330
|
+
#----------------------------------------------------------------------
|
331
|
+
|
332
|
+
def make_simple_box_shaped(win)
|
333
|
+
box = Wx::BoxSizer.new(Wx::HORIZONTAL)
|
334
|
+
box.add(Wx::Button.new(win, 1010, "one"), 0, Wx::EXPAND)
|
335
|
+
box.add(Wx::Button.new(win, 1010, "two"), 0, Wx::EXPAND)
|
336
|
+
box.add(Wx::Button.new(win, 1010, "three"), 0, Wx::EXPAND)
|
337
|
+
box.add(Wx::Button.new(win, 1010, "four"), 0, Wx::EXPAND)
|
338
|
+
box.add(Wx::Button.new(win, 1010, "five"), 1, Wx::SHAPED)
|
339
|
+
|
340
|
+
return box
|
341
|
+
end
|
342
|
+
|
343
|
+
#----------------------------------------------------------------------
|
344
|
+
|
345
|
+
$theTests = [
|
346
|
+
["Simple horizontal boxes", "make_simple_box1",
|
347
|
+
"This is a HORIZONTAL box sizer with four non-stretchable buttons held " +
|
348
|
+
"within it. Notice that the buttons are added and aligned in the horizontal " +
|
349
|
+
"dimension. Also notice that they are fixed size in the horizontal dimension, " +
|
350
|
+
"but will stretch vertically."
|
351
|
+
],
|
352
|
+
|
353
|
+
["Simple vertical boxes", "make_simple_box2",
|
354
|
+
"Exactly the same as the previous sample but using a VERTICAL box sizer " +
|
355
|
+
"instead of a HORIZONTAL one."
|
356
|
+
],
|
357
|
+
|
358
|
+
["Add a stretchable", "make_simple_box3",
|
359
|
+
"We've added one more button with the stretchable flag turned on. Notice " +
|
360
|
+
"how it grows to fill the extra space in the otherwise fixed dimension."
|
361
|
+
],
|
362
|
+
|
363
|
+
["More than one stretchable", "make_simple_box4",
|
364
|
+
"Here there are several items that are stretchable, they all divide up the " +
|
365
|
+
"extra space evenly."
|
366
|
+
],
|
367
|
+
|
368
|
+
["Weighting factor", "make_simple_box5",
|
369
|
+
"This one shows more than one stretchable, but one of them has a weighting " +
|
370
|
+
"factor so it gets more of the free space."
|
371
|
+
],
|
372
|
+
|
373
|
+
["Edge Affinity", "make_simple_box6",
|
374
|
+
"For items that don't completly fill their allotted space, and don't " +
|
375
|
+
"stretch, you can specify which side [or the center] they should stay " +
|
376
|
+
"attached to."
|
377
|
+
],
|
378
|
+
|
379
|
+
["Spacer", "make_simple_box7",
|
380
|
+
"You can add empty space to be managed by a Sizer just as if it were a " +
|
381
|
+
"window or another Sizer."
|
382
|
+
],
|
383
|
+
|
384
|
+
["Centering in available space", "make_simple_box8",
|
385
|
+
"This one shows an item that does not expand to fill it's space, but rather " +
|
386
|
+
"stays centered within it."
|
387
|
+
],
|
388
|
+
|
389
|
+
# ["Percent Sizer", "make_simple_box6",
|
390
|
+
# "You can use the wxBoxSizer like a Percent Sizer. Just make sure that all "
|
391
|
+
# "the weighting factors add up to 100!"
|
392
|
+
# ],
|
393
|
+
|
394
|
+
["", nil, ""],
|
395
|
+
|
396
|
+
["Simple border sizer", "make_simple_border1",
|
397
|
+
"The wxBoxSizer can leave empty space around its contents. This one " +
|
398
|
+
"gives a border all the way around."
|
399
|
+
],
|
400
|
+
|
401
|
+
["East and West border", "make_simple_border2",
|
402
|
+
"You can pick and choose which sides have borders."
|
403
|
+
],
|
404
|
+
|
405
|
+
["North and West border", "make_simple_border3",
|
406
|
+
"You can pick and choose which sides have borders."
|
407
|
+
],
|
408
|
+
|
409
|
+
["", nil, ""],
|
410
|
+
|
411
|
+
["Boxes inside of boxes", "make_box_in_box",
|
412
|
+
"This one shows nesting of boxes within boxes within boxes, using both " +
|
413
|
+
"orientations. Notice also that button seven has a greater weighting " +
|
414
|
+
"factor than its siblings."
|
415
|
+
],
|
416
|
+
|
417
|
+
["Boxes inside a Border", "make_box_in_border",
|
418
|
+
"Sizers of different types can be nested within each other as well. " +
|
419
|
+
"Here is a box sizer with several buttons embedded within a border sizer."
|
420
|
+
],
|
421
|
+
|
422
|
+
["Border in a Box", "make_border_in_box",
|
423
|
+
"Another nesting example. This one has Boxes and a Border inside another Box."
|
424
|
+
],
|
425
|
+
|
426
|
+
["", nil, ""],
|
427
|
+
|
428
|
+
["Simple Grid", "make_grid1",
|
429
|
+
"This is an example of the wxGridSizer. In this case all row heights " +
|
430
|
+
"and column widths are kept the same as all the others and all items " +
|
431
|
+
"fill their available space. The horizontal and vertical gaps are set to " +
|
432
|
+
"2 pixels each."
|
433
|
+
],
|
434
|
+
|
435
|
+
["More Grid Features", "make_grid2",
|
436
|
+
"This is another example of the wxGridSizer. This one has no gaps in the grid, " +
|
437
|
+
"but various cells are given different alignment options and some of them " +
|
438
|
+
"hold nested sizers."
|
439
|
+
],
|
440
|
+
|
441
|
+
["Flexible Grid", "make_grid3",
|
442
|
+
"This grid allows the rows to have different heights and the columns to have " +
|
443
|
+
"different widths. You can also specify rows and columns that are growable, " +
|
444
|
+
"which we have done for the first and last row and the middle column for " +
|
445
|
+
"this example.\n" +
|
446
|
+
"\nThere is also a spacer in the middle cell instead of an actual window."
|
447
|
+
],
|
448
|
+
|
449
|
+
["Grid with Alignment", "make_grid4",
|
450
|
+
"New alignment flags allow for the positioning of items in any corner or centered " +
|
451
|
+
"position."
|
452
|
+
],
|
453
|
+
|
454
|
+
["", nil, ""],
|
455
|
+
|
456
|
+
["Proportional resize", "make_simple_box_shaped",
|
457
|
+
"Managed items can preserve their original aspect ratio. The last item has the " +
|
458
|
+
"wxSHAPED flag set and will resize proportional to its original size."
|
459
|
+
],
|
460
|
+
|
461
|
+
["Proportional resize with Alignments", "make_shapes",
|
462
|
+
"This one shows various alignments as well as proportional resizing for all items."
|
463
|
+
],
|
464
|
+
|
465
|
+
]
|
466
|
+
#----------------------------------------------------------------------
|
467
|
+
|
468
|
+
class TestFrame < Wx::Frame
|
469
|
+
def initialize(parent, title, sizerFunc)
|
470
|
+
super(parent, -1, title)
|
471
|
+
evt_button(1010) {|event| on_button(event)}
|
472
|
+
|
473
|
+
method = Object.method(sizerFunc)
|
474
|
+
@sizer = method.call(self)
|
475
|
+
create_status_bar()
|
476
|
+
set_status_text("Resize this frame to see how the sizers respond...")
|
477
|
+
@sizer.fit(self)
|
478
|
+
|
479
|
+
set_sizer(@sizer)
|
480
|
+
evt_close {|event| on_close_window(event)}
|
481
|
+
end
|
482
|
+
|
483
|
+
def on_close_window(event)
|
484
|
+
make_modal(false)
|
485
|
+
destroy()
|
486
|
+
end
|
487
|
+
|
488
|
+
def on_button(event)
|
489
|
+
close(true)
|
490
|
+
end
|
491
|
+
end
|
492
|
+
|
493
|
+
class TestSelectionPanel < Wx::Panel
|
494
|
+
def initialize(parent, frame)
|
495
|
+
super(parent, -1)
|
496
|
+
@frame = frame
|
497
|
+
|
498
|
+
@list = Wx::ListBox.new(self, 401, Wx::Point.new(10,10), Wx::Size.new(175,150))
|
499
|
+
evt_listbox(401) {|event| on_select(event)}
|
500
|
+
evt_listbox_dclick(401) {|event| on_d_click(event)}
|
501
|
+
|
502
|
+
@btn = Wx::Button.new(self, 402, "Try it!", Wx::Point.new(200, 10))
|
503
|
+
evt_button(402) {|event| on_d_click(event)}
|
504
|
+
|
505
|
+
@text = Wx::TextCtrl.new(self, -1, "", Wx::Point.new(10, 175), Wx::Size.new(350,75), Wx::TE_MULTILINE | Wx::TE_READONLY)
|
506
|
+
|
507
|
+
$theTests.each {|item| @list.append(item[0])}
|
508
|
+
@list.select(0)
|
509
|
+
end
|
510
|
+
|
511
|
+
def on_select(event)
|
512
|
+
pos = @list.get_selection()
|
513
|
+
@text.set_value($theTests[pos][2])
|
514
|
+
end
|
515
|
+
|
516
|
+
def on_d_click(event)
|
517
|
+
pos = @list.get_selection()
|
518
|
+
title = $theTests[pos][0]
|
519
|
+
func = $theTests[pos][1]
|
520
|
+
|
521
|
+
if func
|
522
|
+
win = TestFrame.new(self, title, func)
|
523
|
+
win.centre_on_parent(Wx::BOTH)
|
524
|
+
win.show()
|
525
|
+
win.make_modal(true)
|
526
|
+
end
|
527
|
+
end
|
528
|
+
end
|
529
|
+
|
530
|
+
module Demo
|
531
|
+
def Demo.run(frame,nb,log)
|
532
|
+
win = TestSelectionPanel.new(nb, frame)
|
533
|
+
return win
|
534
|
+
end
|
535
|
+
|
536
|
+
def Demo.overview
|
537
|
+
""
|
538
|
+
end
|
539
|
+
end
|
540
|
+
|
541
|
+
if __FILE__ == $0
|
542
|
+
run_solo_lib = File.join( File.dirname(__FILE__), 'run.rb')
|
543
|
+
load run_solo_lib
|
544
|
+
run File.basename($0)
|
545
|
+
end
|