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,46 @@
|
|
1
|
+
<?xml version="1.0" encoding="ISO-8859-1"?>
|
2
|
+
<resource xmlns="http://www.wxwindows.org/wxxrc">
|
3
|
+
<object class="wxDialog" name="SAMPLE_DIALOG">
|
4
|
+
<style>wxCAPTION|wxRESIZE_BORDER|wxSYSTEM_MENU</style>
|
5
|
+
<size>400,300</size>
|
6
|
+
<title>Sample</title>
|
7
|
+
<centered>1</centered>
|
8
|
+
<object class="wxBoxSizer">
|
9
|
+
<orient>wxHORIZONTAL</orient>
|
10
|
+
<object class="sizeritem">
|
11
|
+
<flag>wxALIGN_CENTER_VERTICAL|wxALL</flag>
|
12
|
+
<border>5</border>
|
13
|
+
<object class="wxBoxSizer">
|
14
|
+
<orient>wxVERTICAL</orient>
|
15
|
+
<object class="sizeritem">
|
16
|
+
<flag>wxALIGN_CENTER_HORIZONTAL|wxALL</flag>
|
17
|
+
<border>5</border>
|
18
|
+
<object class="wxButton" name="wxID_OK">
|
19
|
+
<size>-1,-1</size>
|
20
|
+
<style></style>
|
21
|
+
<label>Ok</label>
|
22
|
+
</object>
|
23
|
+
</object>
|
24
|
+
<object class="sizeritem">
|
25
|
+
<flag>wxALIGN_CENTER_HORIZONTAL|wxALL</flag>
|
26
|
+
<border>5</border>
|
27
|
+
<object class="wxButton" name="wxID_CANCEL">
|
28
|
+
<size>-1,-1</size>
|
29
|
+
<style></style>
|
30
|
+
<label>Cancel</label>
|
31
|
+
</object>
|
32
|
+
</object>
|
33
|
+
<object class="sizeritem">
|
34
|
+
<flag>wxALIGN_CENTER_HORIZONTAL|wxALL</flag>
|
35
|
+
<border>5</border>
|
36
|
+
<object class="wxButton" name="SAMPLE_MESSAGE">
|
37
|
+
<size>-1,-1</size>
|
38
|
+
<style></style>
|
39
|
+
<label>Message...</label>
|
40
|
+
</object>
|
41
|
+
</object>
|
42
|
+
</object>
|
43
|
+
</object>
|
44
|
+
</object>
|
45
|
+
</object>
|
46
|
+
</resource>
|
@@ -0,0 +1,107 @@
|
|
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
|
+
# Basic Frame Class. This creates the dialog window
|
17
|
+
class SimpleFrame < Wx::Frame
|
18
|
+
|
19
|
+
FILE_DIALOG = 1001
|
20
|
+
|
21
|
+
def initialize()
|
22
|
+
super(nil,-1,"Sample",Wx::Point.new(50,50),Wx::Size.new(300,300))
|
23
|
+
txt = "Choose 'Open Dialog' from the menu to see a dialog made with XRC"
|
24
|
+
Wx::StaticText.new( self, -1, txt, Wx::Point.new(10, 10) )
|
25
|
+
|
26
|
+
# Create a new menu
|
27
|
+
bar = Wx::MenuBar.new()
|
28
|
+
menu = Wx::Menu.new()
|
29
|
+
menu.append(FILE_DIALOG,"Open Dialog")
|
30
|
+
menu.append(Wx::ID_EXIT,"Quit")
|
31
|
+
bar.append(menu,"File")
|
32
|
+
|
33
|
+
set_menu_bar(bar)
|
34
|
+
|
35
|
+
#
|
36
|
+
# Assign the menu events
|
37
|
+
#
|
38
|
+
evt_menu(FILE_DIALOG) do
|
39
|
+
SimpleDialog.new(self).show_modal()
|
40
|
+
end
|
41
|
+
|
42
|
+
evt_menu(Wx::ID_EXIT) do
|
43
|
+
puts Wx::get_app.get_app_name
|
44
|
+
Wx::get_app.exit_main_loop()
|
45
|
+
end
|
46
|
+
|
47
|
+
evt_close() do
|
48
|
+
Wx::get_app.exit_main_loop()
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
end
|
53
|
+
|
54
|
+
# Dialog subclass. The components within the dialog are loaded from XRC.
|
55
|
+
class SimpleDialog < Wx::Dialog
|
56
|
+
def initialize(parent)
|
57
|
+
# To load a layout defined in XRC into a Ruby subclass of Dialog,
|
58
|
+
# first call the empty constructor. All the details of size,
|
59
|
+
# title, position and so on are loaded from the XRC by the call to
|
60
|
+
# load_frame_subclass. Using a non-empty constructor will cause
|
61
|
+
# errors on GTK.
|
62
|
+
super()
|
63
|
+
|
64
|
+
# Load the dialog from XRC. We define $xml in on_init.
|
65
|
+
# We could use XmlResource.get() over and over again, but
|
66
|
+
# honestly, thats just too much work.
|
67
|
+
$xml.load_dialog_subclass(self,parent,'SAMPLE_DIALOG')
|
68
|
+
|
69
|
+
# Get the buttons. The xrcid method turns a string identifier
|
70
|
+
# used in an xml file into a numeric identifier as used in
|
71
|
+
# wxruby.
|
72
|
+
@ok = find_window_by_id( Wx::xrcid('wxID_OK') )
|
73
|
+
@cancel = find_window_by_id( Wx::xrcid('wxID_CANCEL') )
|
74
|
+
@message = find_window_by_id( Wx::xrcid('SAMPLE_MESSAGE') )
|
75
|
+
|
76
|
+
# Bind the buttons to event handlers
|
77
|
+
evt_button( @ok.get_id ) { end_modal(Wx::ID_OK) }
|
78
|
+
evt_button( @cancel.get_id ) { end_modal(Wx::ID_CANCEL) }
|
79
|
+
evt_button( @message.get_id ) do
|
80
|
+
Wx::message_box("And now a message from our sponsors.")
|
81
|
+
end
|
82
|
+
end
|
83
|
+
end
|
84
|
+
|
85
|
+
#
|
86
|
+
# Application class.
|
87
|
+
#
|
88
|
+
class XrcApp < Wx::App
|
89
|
+
|
90
|
+
def on_init
|
91
|
+
# Create a resource handler
|
92
|
+
$xml = Wx::XmlResource.get();
|
93
|
+
$xml.init_all_handlers();
|
94
|
+
|
95
|
+
|
96
|
+
# Load a resource file
|
97
|
+
xrc_file = File.join( File.dirname(__FILE__), 'samples.xrc' )
|
98
|
+
$xml.load(xrc_file)
|
99
|
+
|
100
|
+
# Show the main frame.
|
101
|
+
main = SimpleFrame.new()
|
102
|
+
main.show(true)
|
103
|
+
end
|
104
|
+
|
105
|
+
end
|
106
|
+
|
107
|
+
XrcApp.new.main_loop()
|
metadata
ADDED
@@ -0,0 +1,264 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.9.2
|
3
|
+
specification_version: 1
|
4
|
+
name: wxruby
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 1.9.0
|
7
|
+
date: 2007-07-28 00:00:00 -07:00
|
8
|
+
summary: Ruby interface to the wxWidgets GUI library
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
email: support@wxruby.org
|
12
|
+
homepage: http://wxruby.org/
|
13
|
+
rubyforge_project: wxruby
|
14
|
+
description: wxRuby allows the creation of graphical user interface (GUI) applications via the wxWidgets library. wxRuby provides native-style GUI windows, dialogs and controls on platforms including Windows, OS X and Linux.
|
15
|
+
autorequire: wx
|
16
|
+
default_executable:
|
17
|
+
bindir: bin
|
18
|
+
has_rdoc: false
|
19
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.0.0
|
24
|
+
version:
|
25
|
+
platform: i686-darwin8.4.1
|
26
|
+
signing_key:
|
27
|
+
cert_chain:
|
28
|
+
post_install_message:
|
29
|
+
authors:
|
30
|
+
- wxRuby development team
|
31
|
+
files:
|
32
|
+
- lib/wx
|
33
|
+
- lib/wx.rb
|
34
|
+
- lib/wxruby2.bundle
|
35
|
+
- lib/wx/classes
|
36
|
+
- lib/wx/version.rb
|
37
|
+
- lib/wx/classes/app.rb
|
38
|
+
- lib/wx/classes/artprovider.rb
|
39
|
+
- lib/wx/classes/bitmap.rb
|
40
|
+
- lib/wx/classes/choice.rb
|
41
|
+
- lib/wx/classes/clientdc.rb
|
42
|
+
- lib/wx/classes/colour.rb
|
43
|
+
- lib/wx/classes/combobox.rb
|
44
|
+
- lib/wx/classes/evthandler.rb
|
45
|
+
- lib/wx/classes/font.rb
|
46
|
+
- lib/wx/classes/grid.rb
|
47
|
+
- lib/wx/classes/helpcontroller.rb
|
48
|
+
- lib/wx/classes/htmlhelpcontroller.rb
|
49
|
+
- lib/wx/classes/htmlwindow.rb
|
50
|
+
- lib/wx/classes/icon.rb
|
51
|
+
- lib/wx/classes/image.rb
|
52
|
+
- lib/wx/classes/listbox.rb
|
53
|
+
- lib/wx/classes/locale.rb
|
54
|
+
- lib/wx/classes/object.rb
|
55
|
+
- lib/wx/classes/paintdc.rb
|
56
|
+
- lib/wx/classes/point.rb
|
57
|
+
- lib/wx/classes/previewframe.rb
|
58
|
+
- lib/wx/classes/rect.rb
|
59
|
+
- lib/wx/classes/size.rb
|
60
|
+
- lib/wx/classes/texturlevent.rb
|
61
|
+
- lib/wx/classes/timer.rb
|
62
|
+
- lib/wx/classes/window.rb
|
63
|
+
- lib/wx/classes/xmlresource.rb
|
64
|
+
- samples/aui
|
65
|
+
- samples/bigdemo
|
66
|
+
- samples/calendar
|
67
|
+
- samples/caret
|
68
|
+
- samples/controls
|
69
|
+
- samples/dialogs
|
70
|
+
- samples/etc
|
71
|
+
- samples/grid
|
72
|
+
- samples/html
|
73
|
+
- samples/images
|
74
|
+
- samples/listbook
|
75
|
+
- samples/mdi
|
76
|
+
- samples/minimal
|
77
|
+
- samples/printing
|
78
|
+
- samples/SAMPLES-LICENSE.TXT
|
79
|
+
- samples/text
|
80
|
+
- samples/treectrl
|
81
|
+
- samples/xrc
|
82
|
+
- samples/aui/aui.rb
|
83
|
+
- samples/bigdemo/About.rbw
|
84
|
+
- samples/bigdemo/bigdemo.rb
|
85
|
+
- samples/bigdemo/ColorPanel.rbw
|
86
|
+
- samples/bigdemo/demoTemplate.rbw
|
87
|
+
- samples/bigdemo/GridSimple.rbw
|
88
|
+
- samples/bigdemo/helpfile.htb
|
89
|
+
- samples/bigdemo/icons
|
90
|
+
- samples/bigdemo/MDIDemo.rbw
|
91
|
+
- samples/bigdemo/PopupMenu.rbw
|
92
|
+
- samples/bigdemo/run.rb
|
93
|
+
- samples/bigdemo/ShapedWindow.rbw
|
94
|
+
- samples/bigdemo/Sizers.rbw
|
95
|
+
- samples/bigdemo/tips.txt
|
96
|
+
- samples/bigdemo/utils.rb
|
97
|
+
- samples/bigdemo/wxArtProvider.rbw
|
98
|
+
- samples/bigdemo/wxBitmapButton.rbw
|
99
|
+
- samples/bigdemo/wxButton.rbw
|
100
|
+
- samples/bigdemo/wxCalendarCtrl.rbw
|
101
|
+
- samples/bigdemo/wxCheckBox.rbw
|
102
|
+
- samples/bigdemo/wxCheckListBox.rbw
|
103
|
+
- samples/bigdemo/wxChoice.rbw
|
104
|
+
- samples/bigdemo/wxChoicebook.rbw
|
105
|
+
- samples/bigdemo/wxColourDialog.rbw
|
106
|
+
- samples/bigdemo/wxComboBox.rbw
|
107
|
+
- samples/bigdemo/wxCursor.rbw
|
108
|
+
- samples/bigdemo/wxDialog.rbw
|
109
|
+
- samples/bigdemo/wxDirDialog.rbw
|
110
|
+
- samples/bigdemo/wxDragImage.rbw
|
111
|
+
- samples/bigdemo/wxFileDialog.rbw
|
112
|
+
- samples/bigdemo/wxFileDialog_Save.rbw
|
113
|
+
- samples/bigdemo/wxFindReplaceDialog.rbw
|
114
|
+
- samples/bigdemo/wxFontDialog.rbw
|
115
|
+
- samples/bigdemo/wxFrame.rbw
|
116
|
+
- samples/bigdemo/wxGauge.rbw
|
117
|
+
- samples/bigdemo/wxGenericDirCtrl.rbw
|
118
|
+
- samples/bigdemo/wxGrid.rbw
|
119
|
+
- samples/bigdemo/wxHtmlHelpController.rbw
|
120
|
+
- samples/bigdemo/wxListBox.rbw
|
121
|
+
- samples/bigdemo/wxListCtrl_virtual.rbw
|
122
|
+
- samples/bigdemo/wxMDIWindows.rbw
|
123
|
+
- samples/bigdemo/wxMenu.rbw
|
124
|
+
- samples/bigdemo/wxMessageDialog.rbw
|
125
|
+
- samples/bigdemo/wxMiniFrame.rbw
|
126
|
+
- samples/bigdemo/wxMultipleChoiceDialog.rbw
|
127
|
+
- samples/bigdemo/wxNotebook.rbw
|
128
|
+
- samples/bigdemo/wxProgressDialog.rbw
|
129
|
+
- samples/bigdemo/wxRadioBox.rbw
|
130
|
+
- samples/bigdemo/wxRadioButton.rbw
|
131
|
+
- samples/bigdemo/wxSashWindow.rbw
|
132
|
+
- samples/bigdemo/wxScrolledMessageDialog.rbw
|
133
|
+
- samples/bigdemo/wxScrolledWindow.rbw
|
134
|
+
- samples/bigdemo/wxSingleChoiceDialog.rbw
|
135
|
+
- samples/bigdemo/wxSlider.rbw
|
136
|
+
- samples/bigdemo/wxSpinButton.rbw
|
137
|
+
- samples/bigdemo/wxSpinCtrl.rbw
|
138
|
+
- samples/bigdemo/wxSplitterWindow.rbw
|
139
|
+
- samples/bigdemo/wxStaticBitmap.rbw
|
140
|
+
- samples/bigdemo/wxStaticText.rbw
|
141
|
+
- samples/bigdemo/wxStatusBar.rbw
|
142
|
+
- samples/bigdemo/wxTextCtrl.rbw
|
143
|
+
- samples/bigdemo/wxTextEntryDialog.rbw
|
144
|
+
- samples/bigdemo/wxToggleButton.rbw
|
145
|
+
- samples/bigdemo/wxToolBar.rbw
|
146
|
+
- samples/bigdemo/wxTreeCtrl.rbw
|
147
|
+
- samples/bigdemo/icons/choice.bmp
|
148
|
+
- samples/bigdemo/icons/choice.xpm
|
149
|
+
- samples/bigdemo/icons/combo.bmp
|
150
|
+
- samples/bigdemo/icons/combo.xpm
|
151
|
+
- samples/bigdemo/icons/copy.xpm
|
152
|
+
- samples/bigdemo/icons/cut.xpm
|
153
|
+
- samples/bigdemo/icons/gauge.bmp
|
154
|
+
- samples/bigdemo/icons/gauge.xpm
|
155
|
+
- samples/bigdemo/icons/help.xpm
|
156
|
+
- samples/bigdemo/icons/list.bmp
|
157
|
+
- samples/bigdemo/icons/list.xpm
|
158
|
+
- samples/bigdemo/icons/mondrian.ico
|
159
|
+
- samples/bigdemo/icons/mondrian.xpm
|
160
|
+
- samples/bigdemo/icons/new.xpm
|
161
|
+
- samples/bigdemo/icons/ogl.ico
|
162
|
+
- samples/bigdemo/icons/ogl.xpm
|
163
|
+
- samples/bigdemo/icons/open.xpm
|
164
|
+
- samples/bigdemo/icons/paste.bmp
|
165
|
+
- samples/bigdemo/icons/paste.xpm
|
166
|
+
- samples/bigdemo/icons/pointy.png
|
167
|
+
- samples/bigdemo/icons/preview.xpm
|
168
|
+
- samples/bigdemo/icons/print.xpm
|
169
|
+
- samples/bigdemo/icons/radio.bmp
|
170
|
+
- samples/bigdemo/icons/radio.xpm
|
171
|
+
- samples/bigdemo/icons/robert.xpm
|
172
|
+
- samples/bigdemo/icons/ruby.png
|
173
|
+
- samples/bigdemo/icons/sashtest.ico
|
174
|
+
- samples/bigdemo/icons/save.xpm
|
175
|
+
- samples/bigdemo/icons/smiles.bmp
|
176
|
+
- samples/bigdemo/icons/smiles.xpm
|
177
|
+
- samples/bigdemo/icons/smiley.ico
|
178
|
+
- samples/bigdemo/icons/smiley.xpm
|
179
|
+
- samples/bigdemo/icons/stattext.xpm
|
180
|
+
- samples/bigdemo/icons/Test 015.jpg
|
181
|
+
- samples/bigdemo/icons/Test 015.png
|
182
|
+
- samples/bigdemo/icons/test2.bmp
|
183
|
+
- samples/bigdemo/icons/test2.png
|
184
|
+
- samples/bigdemo/icons/test2.xpm
|
185
|
+
- samples/bigdemo/icons/text.bmp
|
186
|
+
- samples/bigdemo/icons/text.xpm
|
187
|
+
- samples/bigdemo/icons/tog1.bmp
|
188
|
+
- samples/bigdemo/icons/tog1.xpm
|
189
|
+
- samples/bigdemo/icons/tog2.bmp
|
190
|
+
- samples/bigdemo/icons/tog2.xpm
|
191
|
+
- samples/bigdemo/icons/wxwin.ico
|
192
|
+
- samples/bigdemo/icons/wxwin16x16.png
|
193
|
+
- samples/bigdemo/icons/wxwin16x16.xpm
|
194
|
+
- samples/bigdemo/icons/wxwin32x32.png
|
195
|
+
- samples/bigdemo/icons/wxwin48x48.png
|
196
|
+
- samples/calendar/calendar.rb
|
197
|
+
- samples/caret/caret.rb
|
198
|
+
- samples/caret/mondrian.xpm
|
199
|
+
- samples/controls/controls.rb
|
200
|
+
- samples/controls/get_item_sample.rb
|
201
|
+
- samples/controls/icons
|
202
|
+
- samples/controls/mondrian.ico
|
203
|
+
- samples/controls/mondrian.xpm
|
204
|
+
- samples/controls/test2.bmp
|
205
|
+
- samples/controls/icons/choice.xpm
|
206
|
+
- samples/controls/icons/combo.xpm
|
207
|
+
- samples/controls/icons/gauge.xpm
|
208
|
+
- samples/controls/icons/list.xpm
|
209
|
+
- samples/controls/icons/radio.xpm
|
210
|
+
- samples/controls/icons/stattext.xpm
|
211
|
+
- samples/controls/icons/text.xpm
|
212
|
+
- samples/dialogs/dialogs.rb
|
213
|
+
- samples/dialogs/tips.txt
|
214
|
+
- samples/etc/activation.rb
|
215
|
+
- samples/etc/choice.rb
|
216
|
+
- samples/etc/miniframe.rb
|
217
|
+
- samples/etc/sash.rb
|
218
|
+
- samples/etc/scrollwin.rb
|
219
|
+
- samples/etc/system_settings.rb
|
220
|
+
- samples/etc/wizard.rb
|
221
|
+
- samples/grid/grid.rb
|
222
|
+
- samples/html/html.rb
|
223
|
+
- samples/images/images.rb
|
224
|
+
- samples/images/paperclip.png
|
225
|
+
- samples/images/Thumbs.db
|
226
|
+
- samples/listbook/listbook.rb
|
227
|
+
- samples/listbook/listbook.xrc
|
228
|
+
- samples/mdi/mdi.rb
|
229
|
+
- samples/minimal/minimal.rb
|
230
|
+
- samples/minimal/mondrian.ico
|
231
|
+
- samples/minimal/mondrian.xpm
|
232
|
+
- samples/minimal/nothing.rb
|
233
|
+
- samples/minimal/text.rb
|
234
|
+
- samples/printing/mondrian.ico
|
235
|
+
- samples/printing/mondrian.xpm
|
236
|
+
- samples/printing/printing.rb
|
237
|
+
- samples/text/mondrian.ico
|
238
|
+
- samples/text/mondrian.xpm
|
239
|
+
- samples/text/scintilla.rb
|
240
|
+
- samples/text/textctrl.rb
|
241
|
+
- samples/text/unicode.rb
|
242
|
+
- samples/text/utf8.txt
|
243
|
+
- samples/treectrl/icon1.xpm
|
244
|
+
- samples/treectrl/icon2.xpm
|
245
|
+
- samples/treectrl/icon3.xpm
|
246
|
+
- samples/treectrl/icon4.xpm
|
247
|
+
- samples/treectrl/icon5.xpm
|
248
|
+
- samples/treectrl/treectrl.rb
|
249
|
+
- samples/xrc/samples.xrc
|
250
|
+
- samples/xrc/xrc_sample.rb
|
251
|
+
test_files: []
|
252
|
+
|
253
|
+
rdoc_options: []
|
254
|
+
|
255
|
+
extra_rdoc_files: []
|
256
|
+
|
257
|
+
executables: []
|
258
|
+
|
259
|
+
extensions: []
|
260
|
+
|
261
|
+
requirements: []
|
262
|
+
|
263
|
+
dependencies: []
|
264
|
+
|