wxruby 1.9.0-powerpc-darwin8.10.0
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,251 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# wxRuby2 Sample Code. Copyright (c) 2004-2006 Kevin B. Smith
|
3
|
+
# Freely reusable code: see SAMPLES-LICENSE.TXT for details
|
4
|
+
|
5
|
+
begin
|
6
|
+
require 'wx'
|
7
|
+
rescue LoadError => no_wx_err
|
8
|
+
begin
|
9
|
+
require 'rubygems'
|
10
|
+
require 'wx'
|
11
|
+
rescue LoadError
|
12
|
+
raise no_wx_err
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
require 'net/http'
|
17
|
+
require 'uri'
|
18
|
+
|
19
|
+
class MyHtmlWindow < Wx::HtmlWindow
|
20
|
+
attr_reader :html_src
|
21
|
+
def load_page_from_uri(uri)
|
22
|
+
case uri
|
23
|
+
when URI::HTTP
|
24
|
+
Wx::BusyCursor.busy do
|
25
|
+
begin
|
26
|
+
res = Net::HTTP.start(uri.host, uri.port) do | http |
|
27
|
+
http.get(uri.path)
|
28
|
+
end
|
29
|
+
@loaded_uri = uri
|
30
|
+
set_page(res.body)
|
31
|
+
rescue => err
|
32
|
+
msg = "Could not load page:\n#{err}"
|
33
|
+
Wx::MessageDialog.new(nil, msg, 'Error loading page',
|
34
|
+
Wx::OK|Wx::ICON_ERROR).show_modal
|
35
|
+
return ''
|
36
|
+
end
|
37
|
+
end
|
38
|
+
return @loaded_uri
|
39
|
+
when URI::Generic
|
40
|
+
if @loaded_uri and @loaded_uri.kind_of?(URI::HTTP)
|
41
|
+
return load_page_from_uri( @loaded_uri.merge(uri) )
|
42
|
+
elsif @loaded_uri # current viewing a file
|
43
|
+
if uri.to_s =~ /^\//
|
44
|
+
return load_file(uri.path)
|
45
|
+
elsif not uri.path.empty?
|
46
|
+
local_file = File.join( File.dirname(@loaded_uri.path), uri.path)
|
47
|
+
return load_file( local_file )
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
dlg = Wx::MessageDialog.new(nil, "Can't load link",
|
53
|
+
"Unable to load the link #{uri}",
|
54
|
+
Wx::ICON_ERROR)
|
55
|
+
dlg.show_modal
|
56
|
+
end
|
57
|
+
|
58
|
+
def load_file(file)
|
59
|
+
@loaded_uri = URI.parse("file:////" + file)
|
60
|
+
super file
|
61
|
+
@loaded_uri
|
62
|
+
end
|
63
|
+
|
64
|
+
def set_page(html)
|
65
|
+
super html
|
66
|
+
@html_src = html
|
67
|
+
get_related_frame.addr_bar.set_value(@loaded_uri.to_s)
|
68
|
+
end
|
69
|
+
|
70
|
+
def on_link_clicked(link)
|
71
|
+
href = link.get_href
|
72
|
+
if href =~ /^#/
|
73
|
+
super(link)
|
74
|
+
end
|
75
|
+
link_uri = URI.parse(href)
|
76
|
+
@loaded_uri = load_page_from_uri(link_uri)
|
77
|
+
end
|
78
|
+
|
79
|
+
def on_cell_mouse_hover(cell, x, y)
|
80
|
+
if link = cell.get_link
|
81
|
+
get_related_frame.set_status_text(link.get_href)
|
82
|
+
else
|
83
|
+
get_related_frame.set_status_text('')
|
84
|
+
end
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
# The frame or self-contained window for this application
|
89
|
+
class HtmlFrame < Wx::Frame
|
90
|
+
attr_reader :html_win, :addr_bar
|
91
|
+
|
92
|
+
def initialize(title, pos, size, style = Wx::DEFAULT_FRAME_STYLE)
|
93
|
+
# A main application frame has no parent (nil)
|
94
|
+
# -1 means this frame will be supplied a default id
|
95
|
+
super(nil, -1, title, pos, size, style)
|
96
|
+
setup_menus
|
97
|
+
setup_panel
|
98
|
+
create_status_bar(2)
|
99
|
+
set_status_text("Welcome to wxRuby!")
|
100
|
+
end
|
101
|
+
|
102
|
+
def setup_panel
|
103
|
+
panel = Wx::Panel.new(self, -1)
|
104
|
+
|
105
|
+
sizer = Wx::BoxSizer.new(Wx::VERTICAL)
|
106
|
+
top_sizer = Wx::BoxSizer.new(Wx::HORIZONTAL)
|
107
|
+
|
108
|
+
@go_butt = Wx::StaticText.new(panel, -1, 'Location:')
|
109
|
+
top_sizer.add(@go_butt, 0, Wx::ALL, 4)
|
110
|
+
@addr_bar = Wx::TextCtrl.new(panel, -1, 'HOME', Wx::DEFAULT_POSITION,
|
111
|
+
Wx::DEFAULT_SIZE, Wx::TE_READONLY)
|
112
|
+
top_sizer.add(@addr_bar, 1, Wx::ALL, 4)
|
113
|
+
sizer.add(top_sizer, 0, Wx::EXPAND|Wx::TOP|Wx::BOTTOM, 4)
|
114
|
+
|
115
|
+
@html_win = MyHtmlWindow.new(panel, -1)
|
116
|
+
@html_win.set_related_frame(self, 'HTML Window: %s')
|
117
|
+
@html_win.set_related_status_bar(2)
|
118
|
+
@html_win.set_page(DATA.read)
|
119
|
+
sizer.add(@html_win, 1, Wx::ALL|Wx::GROW, 4)
|
120
|
+
panel.set_sizer(sizer)
|
121
|
+
end
|
122
|
+
|
123
|
+
def setup_menus
|
124
|
+
menu_file = Wx::Menu.new()
|
125
|
+
menu_help = Wx::Menu.new()
|
126
|
+
# Using Wx::ID_ABOUT default id means the menu item will be placed
|
127
|
+
# in the correct platform-specific place
|
128
|
+
menu_help.append(Wx::ID_ABOUT, "&About...\tF1", "Show about dialog")
|
129
|
+
menu_file.append(Wx::ID_OPEN, "&Open File...\tCtrl-O", "Open File")
|
130
|
+
menu_file.append(Wx::ID_PRINT, "&Print...\tCtrl-P", "Print")
|
131
|
+
|
132
|
+
menu_file.append(Wx::ID_PREVIEW, "&Preview...\tCtrl-Shift-P",
|
133
|
+
"Print Preview")
|
134
|
+
menu_file.append(Wx::ID_EXIT, "E&xit\tAlt-X", "Quit this program")
|
135
|
+
|
136
|
+
menu_bar = Wx::MenuBar.new()
|
137
|
+
menu_bar.append(menu_file, "&File")
|
138
|
+
menu_bar.append(menu_help, "&Help")
|
139
|
+
# Assign the menus to this frame
|
140
|
+
set_menu_bar(menu_bar)
|
141
|
+
# handle menu events
|
142
|
+
evt_menu(Wx::ID_OPEN) { on_open_file }
|
143
|
+
evt_menu(Wx::ID_PRINT) { on_print }
|
144
|
+
evt_menu(Wx::ID_PREVIEW) { on_preview }
|
145
|
+
evt_menu(Wx::ID_EXIT) { on_quit }
|
146
|
+
evt_menu(Wx::ID_ABOUT) { on_about }
|
147
|
+
end
|
148
|
+
|
149
|
+
# end the application
|
150
|
+
def on_quit
|
151
|
+
close
|
152
|
+
end
|
153
|
+
|
154
|
+
def on_open_file
|
155
|
+
f_dlg = Wx::FileDialog.new(self, "Open an HTML file", "", "",
|
156
|
+
"HTML files (*.html;*.htm)|.html;.htm)",
|
157
|
+
Wx::OPEN)
|
158
|
+
if not f_dlg.show_modal == Wx::ID_OK
|
159
|
+
return
|
160
|
+
end
|
161
|
+
html_file = f_dlg.get_path
|
162
|
+
|
163
|
+
@html_win.load_file(html_file)
|
164
|
+
end
|
165
|
+
|
166
|
+
# show an 'About' dialog
|
167
|
+
def on_about
|
168
|
+
msg = sprintf("This is the About dialog of the HTML sample.\n" \
|
169
|
+
"Welcome to wxRuby, version %s", Wx::WXRUBY_VERSION)
|
170
|
+
|
171
|
+
# create a simple message dialog with OK button
|
172
|
+
about_dlg = Wx::MessageDialog.new( self, msg, 'About WxRuby HTML',
|
173
|
+
Wx::OK|Wx::ICON_INFORMATION )
|
174
|
+
about_dlg.show_modal()
|
175
|
+
about_dlg.destroy()
|
176
|
+
end
|
177
|
+
|
178
|
+
def on_preview
|
179
|
+
print = Wx::HtmlEasyPrinting.new('Print HTML', self)
|
180
|
+
print.preview_text(@html_win.html_src)
|
181
|
+
end
|
182
|
+
|
183
|
+
def on_print
|
184
|
+
print = Wx::HtmlEasyPrinting.new('Print HTML', self)
|
185
|
+
print.print_text(@html_win.html_src)
|
186
|
+
end
|
187
|
+
|
188
|
+
# utility function to find an icon relative to this ruby script
|
189
|
+
def local_icon_file(icon_name)
|
190
|
+
File.join( File.dirname(__FILE__), icon_name)
|
191
|
+
end
|
192
|
+
end
|
193
|
+
|
194
|
+
# Wx::App is the container class for any wxruby app - only a single
|
195
|
+
# instance is required
|
196
|
+
class HtmlApp < Wx::App
|
197
|
+
def on_init
|
198
|
+
frame = HtmlFrame.new("Minimal wxRuby App",
|
199
|
+
Wx::Point.new(50, 50),
|
200
|
+
Wx::Size.new(450, 340))
|
201
|
+
set_app_name('HtmlDemo')
|
202
|
+
# required
|
203
|
+
frame.show()
|
204
|
+
end
|
205
|
+
end
|
206
|
+
|
207
|
+
# Create an instance ...
|
208
|
+
app = HtmlApp.new
|
209
|
+
# ... and run the application
|
210
|
+
app.main_loop()
|
211
|
+
|
212
|
+
__END__
|
213
|
+
<html>
|
214
|
+
<head>
|
215
|
+
<title>WxRuby HTML Demo</title>
|
216
|
+
</head>
|
217
|
+
|
218
|
+
<body bgcolor="#ffffff">
|
219
|
+
<h1>The HtmlWindow widget</h1>
|
220
|
+
<p>This is a very simple demonstration of
|
221
|
+
<strong>Wx::HtmlWindow</strong>, a control for displaying hypertext. The
|
222
|
+
control understands most HTML tags, including links, tables, images,
|
223
|
+
lists and the venerable FONT tag. It does not know about CSS or
|
224
|
+
Javascript; it is not really intended for building a general-purpose
|
225
|
+
web browser.</p>
|
226
|
+
<h2>This demo</h2>
|
227
|
+
<p>In this demo you can open local files for viewing (by choosing the
|
228
|
+
File / Open). If you have an internet connection http:// links will be
|
229
|
+
downloaded as well. Its features are otherwise limited - for example,
|
230
|
+
this example doesn't know about HTML anchor targets, because it has
|
231
|
+
over-ridden default link handling to show how to subclass and
|
232
|
+
specialise HtmlWindow in Ruby.</a>
|
233
|
+
<h2>Html Easy Printing</h2>
|
234
|
+
<p>A useful feature included with WxRuby is a simple interface for
|
235
|
+
printing HTML. You can see this in action by choosing 'Print' or
|
236
|
+
'Preview' from the File menu.</p>
|
237
|
+
<h3>Further information</h3>
|
238
|
+
<p>Here's a table with some links</p>
|
239
|
+
<table border="1">
|
240
|
+
<tr>
|
241
|
+
<td>WxRuby online documentation</td>
|
242
|
+
<td><a href="http://wxruby.rubyforge.org/doc/">http://wxruby.rubyforge.org/doc/</a></td>
|
243
|
+
</tr>
|
244
|
+
<tr>
|
245
|
+
<td>WxRuby Wiki</td>
|
246
|
+
<td><a href="http://wxruby.rubyforge.org/wiki/wiki.pl">http://wxruby.rubyforge.org/wiki/wiki.pl</a></td>
|
247
|
+
</tr>
|
248
|
+
</table>
|
249
|
+
|
250
|
+
</body>
|
251
|
+
</html>
|
Binary file
|
@@ -0,0 +1,48 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# wxRuby2 Sample Code. Copyright (c) 2004-2006 Kevin B. Smith
|
3
|
+
# Freely reusable code: see SAMPLES-LICENSE.TXT for details
|
4
|
+
|
5
|
+
begin
|
6
|
+
require 'wx'
|
7
|
+
rescue LoadError => no_wx_err
|
8
|
+
begin
|
9
|
+
require 'rubygems'
|
10
|
+
require 'wx'
|
11
|
+
rescue LoadError
|
12
|
+
raise no_wx_err
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
# This sample demonstrates how to draw an image from a file onto a
|
17
|
+
# window. This one uses a small PNG file, but other formats such as JPEG
|
18
|
+
# are supported - see documentation for more details.
|
19
|
+
|
20
|
+
class MyFrame < Wx::Frame
|
21
|
+
def initialize(title)
|
22
|
+
super(nil, -1, title)
|
23
|
+
evt_paint { on_paint }
|
24
|
+
|
25
|
+
img_file = File.join( File.dirname(__FILE__), 'paperclip.png')
|
26
|
+
# first load the image into an Image object
|
27
|
+
image = Wx::Image.new(img_file)
|
28
|
+
# then create a Bitmap suitable for drawing
|
29
|
+
@bitmap = Wx::Bitmap.new(image)
|
30
|
+
end
|
31
|
+
|
32
|
+
def on_paint
|
33
|
+
paint do | dc |
|
34
|
+
dc.clear
|
35
|
+
dc.draw_bitmap(@bitmap, 0, 0, false)
|
36
|
+
end
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
class ImagesApp < Wx::App
|
41
|
+
def on_init
|
42
|
+
frame = MyFrame.new("Simple Image Demo")
|
43
|
+
frame.show
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
a = ImagesApp.new
|
48
|
+
a.main_loop()
|
Binary file
|
@@ -0,0 +1,183 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# wxRuby2 Sample Code. Copyright (c) 2004-2006 Kevin B. Smith
|
3
|
+
# Freely reusable code: see SAMPLES-LICENSE.TXT for details
|
4
|
+
|
5
|
+
begin
|
6
|
+
require 'wx'
|
7
|
+
rescue LoadError => no_wx_err
|
8
|
+
begin
|
9
|
+
require 'rubygems'
|
10
|
+
require 'wx'
|
11
|
+
rescue LoadError
|
12
|
+
raise no_wx_err
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
# This sample demonstrates the use of the listbook class.
|
17
|
+
# NB: This sample doesn't currently work on Linux (21/08/2006)
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
#
|
22
|
+
# Basic Frame Class. This creates the dialog window
|
23
|
+
#
|
24
|
+
class SimpleFrame < Wx::Frame
|
25
|
+
|
26
|
+
FILE_DIALOG, FILE_ABOUT, FILE_QUIT = [0,Wx::ID_ABOUT,Wx::ID_EXIT]
|
27
|
+
|
28
|
+
def initialize(parent)
|
29
|
+
# To load a layout defined in XRC into a Ruby subclass of Frame,
|
30
|
+
# first call the empty constructor. All the details of size,
|
31
|
+
# title, position and so on are loaded from the XRC by the call to
|
32
|
+
# load_frame_subclass. Using a non-empty constructor will cause
|
33
|
+
# errors on GTK.
|
34
|
+
super()
|
35
|
+
$xml.load_frame_subclass(self,nil,'ID_FRAME')
|
36
|
+
|
37
|
+
# Create a new menu
|
38
|
+
bar = Wx::MenuBar.new
|
39
|
+
menu = Wx::Menu.new
|
40
|
+
menu.append(FILE_ABOUT,"About...")
|
41
|
+
menu.append_separator
|
42
|
+
menu.append(FILE_QUIT,"Quit")
|
43
|
+
bar.append(menu,"File")
|
44
|
+
|
45
|
+
set_menu_bar(bar)
|
46
|
+
|
47
|
+
# Assign the menu events
|
48
|
+
evt_menu(FILE_ABOUT) do
|
49
|
+
Wx::message_box("wxRuby Listbook sample\nby Sean Long", "About Listbook", Wx::OK | Wx::ICON_INFORMATION, self)
|
50
|
+
end
|
51
|
+
evt_menu(FILE_QUIT) do
|
52
|
+
Wx::get_app.exit_main_loop()
|
53
|
+
end
|
54
|
+
evt_close() do
|
55
|
+
Wx::get_app.exit_main_loop()
|
56
|
+
end
|
57
|
+
|
58
|
+
# Variables not in tabs
|
59
|
+
@listbook = Wx::Window.find_window_by_id(Wx::xrcid('ID_LISTBOOK'),self)
|
60
|
+
@text_output = Wx::Window.find_window_by_id(Wx::xrcid('ID_ORDER_TEXTCTRL'),self)
|
61
|
+
|
62
|
+
# Variables for widgets in Pizza tab
|
63
|
+
@pizza_size = Wx::Window.find_window_by_id(Wx::xrcid('ID_PIZZA_SIZE_CHOICE'),self)
|
64
|
+
@pizza_crust = Wx::Window.find_window_by_id(Wx::xrcid('ID_PIZZA_CRUST_CHOICE'),self)
|
65
|
+
@pizza_sauce = Wx::Window.find_window_by_id(Wx::xrcid('ID_PIZZA_SAUCE_CHOICE'),self)
|
66
|
+
@pizza_cheese = Wx::Window.find_window_by_id(Wx::xrcid('ID_PIZZA_CHEESE_CHOICE'),self)
|
67
|
+
@pizza_toppings = []
|
68
|
+
3.times do |i|
|
69
|
+
@pizza_toppings << Wx::Window.find_window_by_id(Wx::xrcid("ID_PIZZA_TOPPING_#{i+1}_CHOICE"),self)
|
70
|
+
end
|
71
|
+
|
72
|
+
# fill in toppings
|
73
|
+
toppings = ['pepperoni','sausage','itallian sausage','olives','mushrooms','artichoke','extra cheese','']
|
74
|
+
toppings.each do |top_name|
|
75
|
+
@pizza_toppings.each do |top_obj|
|
76
|
+
top_obj.append(top_name)
|
77
|
+
end
|
78
|
+
end
|
79
|
+
index = 0
|
80
|
+
@pizza_toppings.each do |obj|
|
81
|
+
obj.set_selection(index)
|
82
|
+
index += 1
|
83
|
+
end
|
84
|
+
|
85
|
+
# Events for pizza tab
|
86
|
+
evt_button(Wx::xrcid('ID_PIZZA_BUTTON')) do |event|
|
87
|
+
#get selections and add to order
|
88
|
+
order_string = @text_output.get_value
|
89
|
+
if order_string != "" then order_string << "\n" end
|
90
|
+
|
91
|
+
order_string << "One #{@pizza_size.get_string_selection} pizza with:\n"
|
92
|
+
order_string << @pizza_crust.get_string_selection + " crust" + "\n"
|
93
|
+
order_string << @pizza_sauce.get_string_selection + " sauce" +"\n"
|
94
|
+
order_string << @pizza_cheese.get_string_selection + " and" + "\n"
|
95
|
+
@pizza_toppings.each { |obj| order_string << obj.get_string_selection + "\n" }
|
96
|
+
|
97
|
+
@text_output.set_value(order_string)
|
98
|
+
end
|
99
|
+
|
100
|
+
|
101
|
+
# Variables for widgets in Drink tab
|
102
|
+
@drink_size = Wx::Window.find_window_by_id(Wx::xrcid('ID_DRINK_SIZE_CHOICE'),self)
|
103
|
+
@drink_type = Wx::Window.find_window_by_id(Wx::xrcid('ID_DRINK_TYPE_CHOICE'),self)
|
104
|
+
|
105
|
+
# Events for drink tab
|
106
|
+
evt_button(Wx::xrcid('ID_DRINK_BUTTON')) do |event|
|
107
|
+
#get selections and add to order
|
108
|
+
order_string = @text_output.get_value
|
109
|
+
if order_string != "" then order_string << "\n" end
|
110
|
+
|
111
|
+
order_string << "One #{@drink_size.get_string_selection} #{@drink_type.get_string_selection }.\n"
|
112
|
+
|
113
|
+
@text_output.set_value(order_string)
|
114
|
+
end
|
115
|
+
|
116
|
+
# Variables for widgets in Ice Cream tab
|
117
|
+
@ice_cream_size = Wx::Window.find_window_by_id(Wx::xrcid('ID_ICE_CREAM_SIZE_CHOICE'),self)
|
118
|
+
@ice_cream_type = Wx::Window.find_window_by_id(Wx::xrcid('ID_ICE_CREAM_TYPE_CHOICE'),self)
|
119
|
+
@ice_cream_toppings = []
|
120
|
+
4.times do |i|
|
121
|
+
@ice_cream_toppings << Wx::Window.find_window_by_id(Wx::xrcid("ID_ICE_CREAM_TOPPING_#{i+1}_CHOICE"),self)
|
122
|
+
end
|
123
|
+
|
124
|
+
toppings = ['','m&m\'s','chocolate chips','fudge','nuts','cherry','whip cream']
|
125
|
+
toppings.each do |top_name|
|
126
|
+
@ice_cream_toppings.each do |top_obj|
|
127
|
+
top_obj.append(top_name)
|
128
|
+
end
|
129
|
+
end
|
130
|
+
@ice_cream_toppings.each { |obj| obj.set_selection(0) }
|
131
|
+
|
132
|
+
# Events for ice cream tab
|
133
|
+
evt_button(Wx::xrcid('ID_ICE_CREAM_BUTTON')) do |event|
|
134
|
+
#get selections and add to order
|
135
|
+
order_string = @text_output.get_value
|
136
|
+
if order_string != "" then order_string << "\n" end
|
137
|
+
|
138
|
+
order_string << "One #{@ice_cream_size.get_string_selection} #{@ice_cream_type.get_string_selection} ice cream:\n"
|
139
|
+
@ice_cream_toppings.each { |obj| order_string << obj.get_string_selection + "\n" }
|
140
|
+
|
141
|
+
@text_output.set_value(order_string)
|
142
|
+
end
|
143
|
+
|
144
|
+
evt_listbook_page_changed(Wx::xrcid('ID_LISTBOOK')) do |event|
|
145
|
+
tab_number = event.get_selection
|
146
|
+
order_string = @text_output.get_value
|
147
|
+
order_string << "moved to tab = #{@listbook.get_page_text(tab_number)} \n"
|
148
|
+
@text_output.set_value(order_string)
|
149
|
+
end
|
150
|
+
|
151
|
+
end
|
152
|
+
|
153
|
+
end
|
154
|
+
|
155
|
+
#
|
156
|
+
# Application class.
|
157
|
+
#
|
158
|
+
class XrcApp < Wx::App
|
159
|
+
|
160
|
+
def on_init
|
161
|
+
#
|
162
|
+
# Create a resource handler
|
163
|
+
#
|
164
|
+
$xml = Wx::XmlResource.get();
|
165
|
+
$xml.init_all_handlers();
|
166
|
+
|
167
|
+
# Load a resource file from the script's directory
|
168
|
+
xrc_file = File.join( File.dirname( __FILE__ ), 'listbook.xrc' )
|
169
|
+
|
170
|
+
$xml.load(xrc_file)
|
171
|
+
|
172
|
+
#
|
173
|
+
# Show the main frame.
|
174
|
+
#
|
175
|
+
$main = SimpleFrame.new(self)
|
176
|
+
$main.show(true)
|
177
|
+
|
178
|
+
end
|
179
|
+
|
180
|
+
end
|
181
|
+
|
182
|
+
|
183
|
+
XrcApp.new().main_loop()
|