wxruby 1.9.8-x86-linux → 1.9.9-x86-linux

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/lib/wx.rb CHANGED
@@ -45,8 +45,8 @@ require 'wx/keyword_defs'
45
45
  # Wx clean-up routines called by Wx::App#on_exit. This can under some
46
46
  # circumstances cause crashes as the application ends.
47
47
  Kernel::at_exit do
48
- # This is set in wxRubyApp.OnExit (see swig/classes/App.i)
49
- if not $__wx_app_ended__
48
+ # These are set at App startup and wxRuby shut down respectively - see App.i
49
+ if Wx::const_defined?(:THE_APP) and not $__wx_app_ended__
50
50
  Wx::THE_APP.on_exit
51
51
  end
52
52
  end
@@ -42,8 +42,14 @@ module WxRubyStyleAccessors
42
42
  end
43
43
  end
44
44
 
45
- all_classes = Wx::constants.collect { | c | Wx::const_get(c) }.grep(Class)
45
+ # Allow Wx-global functions to be accessed with nice syntax
46
+ module Wx
47
+ extend WxRubyStyleAccessors
48
+ end
46
49
 
50
+ # Apply the syntax extensions to every class, both class methods and
51
+ # instance methods
52
+ all_classes = Wx::constants.collect { | c | Wx::const_get(c) }.grep(Class)
47
53
  all_classes.each do | klass |
48
54
  klass.class_eval do
49
55
  include WxRubyStyleAccessors
@@ -37,9 +37,15 @@ class Wx::App
37
37
  # second. This should help ferret out bugs in memory management more
38
38
  # quickly.
39
39
  def gc_stress(interval = 1)
40
- t = Wx::Timer.new(self, 9999)
41
- evt_timer(9999) { Thread.pass }
42
- Thread.new { loop { sleep interval; GC.start } }
43
- t.start(100)
40
+ # Ruby 1.9 provides this built-in version, but doesn't like the 1.8
41
+ # version at all - results in frequent segfaults.
42
+ if RUBY_VERSION >= "1.9.0"
43
+ GC.stress
44
+ else # Ruby 1.8
45
+ t = Wx::Timer.new(self, 9999)
46
+ evt_timer(9999) { Thread.pass }
47
+ Thread.new { loop { sleep interval; GC.start } }
48
+ t.start(100)
49
+ end
44
50
  end
45
51
  end
@@ -625,6 +625,9 @@ class Wx::EvtHandler
625
625
  EventType['evt_moving', 0,
626
626
  Wx::EVT_MOVING,
627
627
  Wx::MoveEvent],
628
+ EventType['evt_navigation_key', 0,
629
+ Wx::EVT_NAVIGATION_KEY,
630
+ Wx::NavigationKeyEvent],
628
631
  EventType['evt_nc_paint', 0,
629
632
  Wx::EVT_NC_PAINT,
630
633
  Wx::Event],
@@ -649,6 +652,51 @@ class Wx::EvtHandler
649
652
  EventType['evt_radiobutton', 1,
650
653
  Wx::EVT_COMMAND_RADIOBUTTON_SELECTED,
651
654
  Wx::CommandEvent],
655
+ EventType['evt_richtext_character', 1,
656
+ Wx::EVT_COMMAND_RICHTEXT_CHARACTER,
657
+ Wx::RichTextEvent],
658
+ EventType['evt_richtext_content_inserted', 1,
659
+ Wx::EVT_COMMAND_RICHTEXT_CONTENT_INSERTED,
660
+ Wx::RichTextEvent],
661
+ EventType['evt_richtext_content_deleted', 1,
662
+ Wx::EVT_COMMAND_RICHTEXT_CONTENT_DELETED,
663
+ Wx::RichTextEvent],
664
+ EventType['evt_richtext_delete', 1,
665
+ Wx::EVT_COMMAND_RICHTEXT_DELETE,
666
+ Wx::RichTextEvent],
667
+ EventType['evt_richtext_left_click', 1,
668
+ Wx::EVT_COMMAND_RICHTEXT_LEFT_CLICK,
669
+ Wx::RichTextEvent],
670
+ EventType['evt_richtext_left_dclick', 1,
671
+ Wx::EVT_COMMAND_RICHTEXT_LEFT_DCLICK,
672
+ Wx::RichTextEvent],
673
+ EventType['evt_richtext_middle_click', 1,
674
+ Wx::EVT_COMMAND_RICHTEXT_MIDDLE_CLICK,
675
+ Wx::RichTextEvent],
676
+ EventType['evt_richtext_return', 1,
677
+ Wx::EVT_COMMAND_RICHTEXT_RETURN,
678
+ Wx::RichTextEvent],
679
+ EventType['evt_richtext_right_click', 1,
680
+ Wx::EVT_COMMAND_RICHTEXT_RIGHT_CLICK,
681
+ Wx::RichTextEvent],
682
+ EventType['evt_richtext_selection_changed', 1,
683
+ Wx::EVT_COMMAND_RICHTEXT_SELECTION_CHANGED,
684
+ Wx::RichTextEvent],
685
+ EventType['evt_richtext_style_changed', 1,
686
+ Wx::EVT_COMMAND_RICHTEXT_STYLE_CHANGED,
687
+ Wx::RichTextEvent],
688
+ EventType['evt_richtext_stylesheet_changed', 1,
689
+ Wx::EVT_COMMAND_RICHTEXT_STYLESHEET_CHANGED,
690
+ Wx::RichTextEvent],
691
+ EventType['evt_richtext_stylesheet_changing', 1,
692
+ Wx::EVT_COMMAND_RICHTEXT_STYLESHEET_CHANGING,
693
+ Wx::RichTextEvent],
694
+ EventType['evt_richtext_stylesheet_replaced', 1,
695
+ Wx::EVT_COMMAND_RICHTEXT_STYLESHEET_REPLACED,
696
+ Wx::RichTextEvent],
697
+ EventType['evt_richtext_stylesheet_replacing', 1,
698
+ Wx::EVT_COMMAND_RICHTEXT_STYLESHEET_REPLACING,
699
+ Wx::RichTextEvent],
652
700
  EventType['evt_right_dclick', 0,
653
701
  Wx::EVT_RIGHT_DCLICK,
654
702
  Wx::MouseEvent],
@@ -0,0 +1,41 @@
1
+ # Text editor supporting various formatting, intended for editing
2
+ # natural language texts
3
+ class Wx::RichTextCtrl
4
+ # These three methods return the styles applicable at certain points
5
+ # in the document. However, the standard wx signature is to accept the
6
+ # value of some kind of TextAttr class that will hold the return as an
7
+ # argument. The return value is a boolean for success/failure. In
8
+ # Ruby, we only support returning the value as a RichTextAttr, and do
9
+ # so as a proper return value, having accepted a single argument
10
+ # specifying where to get the style from. If retrieval is not
11
+ # successful, raise an exception.
12
+ wx_get_style = self.instance_method(:get_style)
13
+ define_method(:get_style) do | pos |
14
+ style = Wx::RichTextAttr.new
15
+ if wx_get_style.bind(self).call(pos, style)
16
+ return style
17
+ else
18
+ Kernel.raise RuntimeError, "Could not retrieve style at position #{pos}"
19
+ end
20
+ end
21
+
22
+ wx_get_style_for_range = self.instance_method(:get_style_for_range)
23
+ define_method(:get_style_for_range) do | rng |
24
+ style = Wx::RichTextAttr.new
25
+ if wx_get_style_for_range.bind(self).call(rng, style)
26
+ return style
27
+ else
28
+ Kernel.raise RuntimeError, "Could not retrieve style for range #{rng}"
29
+ end
30
+ end
31
+
32
+ wx_get_uncombined_style = self.instance_method(:get_uncombined_style)
33
+ define_method(:get_uncombined_style) do | pos |
34
+ style = Wx::RichTextAttr.new
35
+ if wx_get_uncombined_style.bind(self).call(pos, style)
36
+ return style
37
+ else
38
+ Kernel.raise RuntimeError, "Could not retrieve style at position #{pos}"
39
+ end
40
+ end
41
+ end
@@ -0,0 +1,9 @@
1
+ # Access OS-standard locations for user files, config files etc
2
+ class Wx::StandardPaths
3
+ class << self
4
+ # Expose instance methods as class methods in Ruby
5
+ Wx::StandardPaths.instance_methods(false).each do | meth |
6
+ define_method(meth) { get.send(meth) }
7
+ end
8
+ end
9
+ end
@@ -1,6 +1,18 @@
1
+ # Event fired when a user clicks or hovers over a hyperlink in a TextCtrl
1
2
  class Wx::TextUrlEvent
2
- # Returns the string URL that is being interacted with in this event
3
+ # Returns the string URL that is being interacted with in this event
3
4
  def get_url
4
- get_event_object.get_value[get_url_start .. get_url_end]
5
+ text_ctrl = event_object
6
+ # In the standard TextCtrl, the relevant URL is always the same as
7
+ # the text clicked on, because all it does is highlight text that
8
+ # look like a URL. In RichTextCtrl, however, the URL value can be
9
+ # applied to any text (more like HTML), and so the URL has be
10
+ # retrieved by getting the applied RichTextAttr style and inspecting
11
+ # its property.
12
+ if text_ctrl.kind_of?(Wx::RichTextCtrl)
13
+ return text_ctrl.get_style(url_start).url
14
+ else
15
+ return text_ctrl.value[url_start .. url_end]
16
+ end
5
17
  end
6
18
  end
@@ -505,3 +505,32 @@ Wx::define_keyword_ctors('AnimationCtrl') do
505
505
  wx_ctor_params :name => 'animationCtrl'
506
506
  end
507
507
 
508
+ Wx::define_keyword_ctors('VScrolledWindow') do
509
+ wx_ctor_params :id, :pos, :size, :style, :name => 'VScrolledWindowNameStr'
510
+ end
511
+
512
+ Wx::define_keyword_ctors('VListBox') do
513
+ wx_ctor_params :id, :pos, :size, :style, :name => 'VListBoxNameStr'
514
+ end
515
+
516
+ Wx::define_keyword_ctors('HtmlListBox') do
517
+ wx_ctor_params :id, :pos, :size, :style, :name => 'HtmlListBoxNameStr'
518
+ end
519
+
520
+ Wx::define_keyword_ctors('RichTextCtrl') do
521
+ wx_ctor_params :id, :value => ''
522
+ wx_ctor_params :pos, :size, :style => Wx::TE_MULTILINE
523
+ wx_ctor_params :validator, :name => 'textCtrl'
524
+ end
525
+
526
+ Wx::define_keyword_ctors('RichTextStyleListBox') do
527
+ wx_ctor_params :id, :pos, :size, :style
528
+ end
529
+
530
+ Wx::define_keyword_ctors('RichTextStyleListCtrl') do
531
+ wx_ctor_params :id, :pos, :size, :style
532
+ end
533
+
534
+ # FIXME - SymbolPickerDialog is hard to because the parent argument is
535
+ # in a strange place.
536
+
@@ -1,3 +1,3 @@
1
1
  module Wx
2
- WXRUBY_VERSION = '1.9.8'
2
+ WXRUBY_VERSION = '1.9.9'
3
3
  end
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wxruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.8
4
+ version: 1.9.9
5
5
  platform: x86-linux
6
6
  authors:
7
7
  - wxRuby development team
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-08-29 00:00:00 +01:00
12
+ date: 2008-11-01 00:00:00 +00:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
@@ -22,275 +22,277 @@ extensions: []
22
22
  extra_rdoc_files: []
23
23
 
24
24
  files:
25
- - lib/wxruby2.so
26
- - lib/wx.rb
27
25
  - lib/wx
28
- - lib/wx/keyword_defs.rb
29
- - lib/wx/helpers.rb
30
- - lib/wx/keyword_ctors.rb
31
- - lib/wx/accessors.rb
32
26
  - lib/wx/classes
33
- - lib/wx/classes/textctrl.rb
34
- - lib/wx/classes/previewframe.rb
27
+ - lib/wx/classes/simplehelpprovider.rb
28
+ - lib/wx/classes/imagelist.rb
29
+ - lib/wx/classes/animation.rb
30
+ - lib/wx/classes/helpcontrollerhelpprovider.rb
35
31
  - lib/wx/classes/commandevent.rb
36
- - lib/wx/classes/object.rb
37
- - lib/wx/classes/listbox.rb
38
- - lib/wx/classes/sound.rb
39
32
  - lib/wx/classes/timer.rb
40
- - lib/wx/classes/helpcontroller.rb
41
- - lib/wx/classes/dc.rb
42
- - lib/wx/classes/event.rb
43
- - lib/wx/classes/toolbartool.rb
44
- - lib/wx/classes/simplehelpprovider.rb
33
+ - lib/wx/classes/htmlhelpcontroller.rb
34
+ - lib/wx/classes/iconbundle.rb
35
+ - lib/wx/classes/checklistbox.rb
36
+ - lib/wx/classes/menuitem.rb
45
37
  - lib/wx/classes/treectrl.rb
46
- - lib/wx/classes/controlwithitems.rb
38
+ - lib/wx/classes/clientdc.rb
39
+ - lib/wx/classes/icon.rb
40
+ - lib/wx/classes/point.rb
41
+ - lib/wx/classes/helpcontroller.rb
42
+ - lib/wx/classes/htmlwindow.rb
43
+ - lib/wx/classes/sizer.rb
47
44
  - lib/wx/classes/acceleratortable.rb
48
- - lib/wx/classes/mediactrl.rb
49
- - lib/wx/classes/grid.rb
50
- - lib/wx/classes/window.rb
51
- - lib/wx/classes/size.rb
52
- - lib/wx/classes/app.rb
53
- - lib/wx/classes/functions.rb
54
- - lib/wx/classes/animation.rb
55
- - lib/wx/classes/locale.rb
56
- - lib/wx/classes/menu.rb
45
+ - lib/wx/classes/rect.rb
57
46
  - lib/wx/classes/clipboard.rb
58
- - lib/wx/classes/font.rb
59
- - lib/wx/classes/texturlevent.rb
60
- - lib/wx/classes/paintdc.rb
47
+ - lib/wx/classes/locale.rb
48
+ - lib/wx/classes/listctrl.rb
49
+ - lib/wx/classes/standardpaths.rb
61
50
  - lib/wx/classes/artprovider.rb
62
- - lib/wx/classes/evthandler.rb
51
+ - lib/wx/classes/toolbar.rb
52
+ - lib/wx/classes/colour.rb
53
+ - lib/wx/classes/font.rb
54
+ - lib/wx/classes/object.rb
55
+ - lib/wx/classes/window.rb
56
+ - lib/wx/classes/functions.rb
63
57
  - lib/wx/classes/xmlresource.rb
64
- - lib/wx/classes/combobox.rb
65
- - lib/wx/classes/htmlwindow.rb
58
+ - lib/wx/classes/textctrl.rb
59
+ - lib/wx/classes/texturlevent.rb
60
+ - lib/wx/classes/controlwithitems.rb
61
+ - lib/wx/classes/auinotebook.rb
62
+ - lib/wx/classes/richtextctrl.rb
63
+ - lib/wx/classes/app.rb
64
+ - lib/wx/classes/busycursor.rb
65
+ - lib/wx/classes/notebook.rb
66
+ - lib/wx/classes/event.rb
66
67
  - lib/wx/classes/image.rb
68
+ - lib/wx/classes/paintdc.rb
69
+ - lib/wx/classes/listbox.rb
70
+ - lib/wx/classes/grid.rb
71
+ - lib/wx/classes/dc.rb
67
72
  - lib/wx/classes/gauge.rb
68
- - lib/wx/classes/point.rb
69
- - lib/wx/classes/auinotebook.rb
70
- - lib/wx/classes/icon.rb
71
- - lib/wx/classes/clientdc.rb
72
- - lib/wx/classes/iconbundle.rb
73
- - lib/wx/classes/imagelist.rb
73
+ - lib/wx/classes/sound.rb
74
+ - lib/wx/classes/choice.rb
75
+ - lib/wx/classes/evthandler.rb
76
+ - lib/wx/classes/previewframe.rb
74
77
  - lib/wx/classes/styledtextctrl.rb
75
- - lib/wx/classes/bitmap.rb
76
- - lib/wx/classes/checklistbox.rb
77
- - lib/wx/classes/busycursor.rb
78
+ - lib/wx/classes/toolbartool.rb
78
79
  - lib/wx/classes/helpprovider.rb
79
- - lib/wx/classes/sizer.rb
80
- - lib/wx/classes/choice.rb
81
- - lib/wx/classes/notebook.rb
82
- - lib/wx/classes/colour.rb
83
- - lib/wx/classes/toolbar.rb
84
- - lib/wx/classes/rect.rb
85
- - lib/wx/classes/menuitem.rb
86
- - lib/wx/classes/htmlhelpcontroller.rb
87
- - lib/wx/classes/listctrl.rb
88
- - lib/wx/classes/helpcontrollerhelpprovider.rb
80
+ - lib/wx/classes/mediactrl.rb
81
+ - lib/wx/classes/menu.rb
82
+ - lib/wx/classes/combobox.rb
83
+ - lib/wx/classes/size.rb
84
+ - lib/wx/classes/bitmap.rb
85
+ - lib/wx/keyword_ctors.rb
86
+ - lib/wx/helpers.rb
87
+ - lib/wx/accessors.rb
88
+ - lib/wx/keyword_defs.rb
89
89
  - lib/wx/version.rb
90
- - samples/etc
91
- - samples/etc/wizard.rb
92
- - samples/etc/activation.rb
93
- - samples/etc/sash.rb
94
- - samples/etc/system_settings.rb
95
- - samples/etc/miniframe.rb
96
- - samples/etc/threaded.rb
97
- - samples/etc/choice.rb
98
- - samples/etc/scrollwin.rb
99
- - samples/calendar
100
- - samples/calendar/calendar.rb
90
+ - lib/wx.rb
91
+ - lib/wxruby2.so
92
+ - samples/media
93
+ - samples/media/mediactrl.rb
94
+ - samples/event
95
+ - samples/event/event.rb
96
+ - samples/dialogs
97
+ - samples/dialogs/dialogs.rb
98
+ - samples/dialogs/tips.txt
99
+ - samples/opengl
100
+ - samples/opengl/cube.rb
101
101
  - samples/text
102
- - samples/text/textctrl.rb
103
- - samples/text/unicode.rb
104
- - samples/text/mondrian.xpm
105
- - samples/text/utf8.txt
106
102
  - samples/text/mondrian.ico
107
103
  - samples/text/scintilla.rb
104
+ - samples/text/utf8.txt
105
+ - samples/text/unicode.rb
106
+ - samples/text/mondrian.xpm
107
+ - samples/text/textctrl.rb
108
+ - samples/treectrl
109
+ - samples/treectrl/icon4.xpm
110
+ - samples/treectrl/icon5.xpm
111
+ - samples/treectrl/treectrl.rb
112
+ - samples/treectrl/icon1.xpm
113
+ - samples/treectrl/icon2.xpm
114
+ - samples/treectrl/icon3.xpm
115
+ - samples/grid
116
+ - samples/grid/grid.rb
117
+ - samples/grid/gridtablebase.rb
118
+ - samples/listbook
119
+ - samples/listbook/listbook.xrc
120
+ - samples/listbook/listbook.rb
121
+ - samples/minimal
122
+ - samples/minimal/mondrian.ico
123
+ - samples/minimal/minimal.rb
124
+ - samples/minimal/nothing.rb
125
+ - samples/minimal/mondrian.png
126
+ - samples/printing
127
+ - samples/printing/mondrian.ico
128
+ - samples/printing/mondrian.xpm
129
+ - samples/printing/printing.rb
130
+ - samples/drawing
131
+ - samples/drawing/paperclip.png
132
+ - samples/drawing/images.rb
133
+ - samples/drawing/graphics_drawing.rb
134
+ - samples/xrc
135
+ - samples/xrc/samples.xrc
136
+ - samples/xrc/xrc_sample.rb
137
+ - samples/caret
138
+ - samples/caret/caret.rb
139
+ - samples/caret/mondrian.xpm
140
+ - samples/dragdrop
141
+ - samples/dragdrop/dragdrop.rb
142
+ - samples/controls
143
+ - samples/controls/icons
144
+ - samples/controls/icons/radio.xpm
145
+ - samples/controls/icons/combo.xpm
146
+ - samples/controls/icons/stattext.xpm
147
+ - samples/controls/icons/text.xpm
148
+ - samples/controls/icons/gauge.xpm
149
+ - samples/controls/icons/choice.xpm
150
+ - samples/controls/icons/list.xpm
151
+ - samples/controls/get_item_sample.rb
152
+ - samples/controls/mondrian.ico
153
+ - samples/controls/controls.rb
154
+ - samples/controls/mondrian.xpm
155
+ - samples/controls/test2.bmp
108
156
  - samples/html
109
157
  - samples/html/html.rb
110
- - samples/SAMPLES-LICENSE.TXT
111
- - samples/sockets
112
- - samples/sockets/wxSocketGUI.rb
113
- - samples/sockets/res
114
- - samples/sockets/res/message-new.png
115
- - samples/sockets/res/user.png
116
- - samples/sockets/SocketPackets.rb
117
- - samples/sockets/wxClient.rb
118
- - samples/sockets/wxServer.rb
119
158
  - samples/bigdemo
120
- - samples/bigdemo/wxToggleButton.rbw
121
- - samples/bigdemo/wxButton.rbw
122
- - samples/bigdemo/wxListCtrl_virtual.rbw
123
- - samples/bigdemo/wxStaticBitmap.rbw
124
- - samples/bigdemo/wxBitmapButton.rbw
125
- - samples/bigdemo/Sizers.rbw
126
- - samples/bigdemo/wxMDIWindows.rbw
127
- - samples/bigdemo/wxGauge.rbw
128
- - samples/bigdemo/wxProgressDialog.rbw
129
- - samples/bigdemo/wxSpinButton.rbw
130
- - samples/bigdemo/wxMenu.rbw
131
- - samples/bigdemo/wxTextEntryDialog.rbw
132
- - samples/bigdemo/wxMiniFrame.rbw
133
- - samples/bigdemo/wxFileDialog.rbw
134
- - samples/bigdemo/wxSpinCtrl.rbw
135
- - samples/bigdemo/bigdemo.rb
136
- - samples/bigdemo/wxCheckBox.rbw
137
- - samples/bigdemo/wxNotebook.rbw
138
- - samples/bigdemo/wxRadioBox.rbw
139
- - samples/bigdemo/wxScrolledWindow.rbw
140
- - samples/bigdemo/wxFindReplaceDialog.rbw
141
- - samples/bigdemo/wxMessageDialog.rbw
142
- - samples/bigdemo/wxFrame.rbw
143
- - samples/bigdemo/wxStaticText.rbw
144
- - samples/bigdemo/wxChoice.rbw
145
- - samples/bigdemo/wxTreeCtrl.rbw
146
- - samples/bigdemo/wxCalendarCtrl.rbw
147
- - samples/bigdemo/ColorPanel.rbw
148
- - samples/bigdemo/wxListBox.rbw
149
- - samples/bigdemo/wxGenericDirCtrl.rbw
150
- - samples/bigdemo/utils.rb
151
- - samples/bigdemo/wxMultipleChoiceDialog.rbw
152
- - samples/bigdemo/run.rb
153
- - samples/bigdemo/wxDragImage.rbw
154
- - samples/bigdemo/wxSingleChoiceDialog.rbw
155
- - samples/bigdemo/MDIDemo.rbw
156
- - samples/bigdemo/PopupMenu.rbw
157
- - samples/bigdemo/wxCursor.rbw
158
- - samples/bigdemo/wxChoicebook.rbw
159
- - samples/bigdemo/wxCheckListBox.rbw
160
- - samples/bigdemo/helpfile.htb
161
- - samples/bigdemo/wxDialog.rbw
162
- - samples/bigdemo/wxGrid.rbw
163
- - samples/bigdemo/ShapedWindow.rbw
164
- - samples/bigdemo/wxFontDialog.rbw
165
- - samples/bigdemo/wxTextCtrl.rbw
166
- - samples/bigdemo/About.rbw
167
- - samples/bigdemo/wxSlider.rbw
168
- - samples/bigdemo/GridSimple.rbw
169
- - samples/bigdemo/wxDirDialog.rbw
170
159
  - samples/bigdemo/icons
171
- - samples/bigdemo/icons/ogl.xpm
172
- - samples/bigdemo/icons/pointy.png
173
- - samples/bigdemo/icons/ogl.ico
174
- - samples/bigdemo/icons/tog2.bmp
175
- - samples/bigdemo/icons/radio.xpm
176
- - samples/bigdemo/icons/preview.xpm
177
160
  - samples/bigdemo/icons/paste.xpm
178
- - samples/bigdemo/icons/sashtest.ico
179
161
  - samples/bigdemo/icons/wxwin48x48.png
180
- - samples/bigdemo/icons/smiles.bmp
181
- - samples/bigdemo/icons/wxwin32x32.png
182
- - samples/bigdemo/icons/print.xpm
183
- - samples/bigdemo/icons/mondrian.xpm
184
- - samples/bigdemo/icons/cut.xpm
185
- - samples/bigdemo/icons/wxwin.ico
186
- - samples/bigdemo/icons/wxwin16x16.png
162
+ - samples/bigdemo/icons/stattext.xpm
187
163
  - samples/bigdemo/icons/Test 015.jpg
188
- - samples/bigdemo/icons/text.bmp
164
+ - samples/bigdemo/icons/test2.png
165
+ - samples/bigdemo/icons/text.xpm
166
+ - samples/bigdemo/icons/Test 015.png
167
+ - samples/bigdemo/icons/paste.bmp
168
+ - samples/bigdemo/icons/gauge.xpm
169
+ - samples/bigdemo/icons/choice.xpm
170
+ - samples/bigdemo/icons/robert.xpm
189
171
  - samples/bigdemo/icons/save.xpm
190
- - samples/bigdemo/icons/combo.bmp
172
+ - samples/bigdemo/icons/radio.xpm
173
+ - samples/bigdemo/icons/text.bmp
174
+ - samples/bigdemo/icons/wxwin32x32.png
175
+ - samples/bigdemo/icons/test2.xpm
176
+ - samples/bigdemo/icons/gauge.bmp
177
+ - samples/bigdemo/icons/wxwin16x16.png
178
+ - samples/bigdemo/icons/sashtest.ico
179
+ - samples/bigdemo/icons/choice.bmp
180
+ - samples/bigdemo/icons/mondrian.xpm
181
+ - samples/bigdemo/icons/radio.bmp
182
+ - samples/bigdemo/icons/copy.xpm
183
+ - samples/bigdemo/icons/tog1.xpm
191
184
  - samples/bigdemo/icons/list.xpm
185
+ - samples/bigdemo/icons/test2.bmp
186
+ - samples/bigdemo/icons/tog2.xpm
187
+ - samples/bigdemo/icons/mondrian.ico
188
+ - samples/bigdemo/icons/preview.xpm
189
+ - samples/bigdemo/icons/ogl.xpm
190
+ - samples/bigdemo/icons/wxwin.ico
192
191
  - samples/bigdemo/icons/wxwin16x16.xpm
193
- - samples/bigdemo/icons/gauge.bmp
194
192
  - samples/bigdemo/icons/tog1.bmp
195
- - samples/bigdemo/icons/smiley.xpm
193
+ - samples/bigdemo/icons/list.bmp
194
+ - samples/bigdemo/icons/tog2.bmp
195
+ - samples/bigdemo/icons/ogl.ico
196
+ - samples/bigdemo/icons/help.xpm
196
197
  - samples/bigdemo/icons/new.xpm
197
- - samples/bigdemo/icons/open.xpm
198
- - samples/bigdemo/icons/Test 015.png
199
- - samples/bigdemo/icons/test2.bmp
200
- - samples/bigdemo/icons/copy.xpm
201
- - samples/bigdemo/icons/paste.bmp
198
+ - samples/bigdemo/icons/cut.xpm
202
199
  - samples/bigdemo/icons/smiles.xpm
203
- - samples/bigdemo/icons/choice.bmp
204
- - samples/bigdemo/icons/smiley.ico
205
- - samples/bigdemo/icons/list.bmp
206
- - samples/bigdemo/icons/tog1.xpm
207
- - samples/bigdemo/icons/robert.xpm
208
- - samples/bigdemo/icons/choice.xpm
209
- - samples/bigdemo/icons/test2.png
210
- - samples/bigdemo/icons/test2.xpm
200
+ - samples/bigdemo/icons/print.xpm
211
201
  - samples/bigdemo/icons/combo.xpm
212
- - samples/bigdemo/icons/text.xpm
213
- - samples/bigdemo/icons/tog2.xpm
214
- - samples/bigdemo/icons/stattext.xpm
215
- - samples/bigdemo/icons/mondrian.ico
216
202
  - samples/bigdemo/icons/ruby.png
217
- - samples/bigdemo/icons/gauge.xpm
218
- - samples/bigdemo/icons/help.xpm
219
- - samples/bigdemo/icons/radio.bmp
220
- - samples/bigdemo/wxRadioButton.rbw
221
- - samples/bigdemo/wxScrolledMessageDialog.rbw
222
- - samples/bigdemo/wxSplitterWindow.rbw
203
+ - samples/bigdemo/icons/open.xpm
204
+ - samples/bigdemo/icons/pointy.png
205
+ - samples/bigdemo/icons/smiley.xpm
206
+ - samples/bigdemo/icons/smiles.bmp
207
+ - samples/bigdemo/icons/smiley.ico
208
+ - samples/bigdemo/icons/combo.bmp
209
+ - samples/bigdemo/wxSingleChoiceDialog.rbw
210
+ - samples/bigdemo/wxFileDialog_Save.rbw
211
+ - samples/bigdemo/wxColourDialog.rbw
212
+ - samples/bigdemo/wxStaticBitmap.rbw
213
+ - samples/bigdemo/wxGrid.rbw
223
214
  - samples/bigdemo/wxSashWindow.rbw
215
+ - samples/bigdemo/wxCheckBox.rbw
216
+ - samples/bigdemo/wxGauge.rbw
217
+ - samples/bigdemo/utils.rb
218
+ - samples/bigdemo/About.rbw
219
+ - samples/bigdemo/wxFindReplaceDialog.rbw
220
+ - samples/bigdemo/wxSpinCtrl.rbw
221
+ - samples/bigdemo/run.rb
222
+ - samples/bigdemo/wxCalendarCtrl.rbw
223
+ - samples/bigdemo/wxDialog.rbw
224
+ - samples/bigdemo/wxFileDialog.rbw
225
+ - samples/bigdemo/Sizers.rbw
226
+ - samples/bigdemo/wxToolBar.rbw
227
+ - samples/bigdemo/wxBitmapButton.rbw
228
+ - samples/bigdemo/wxTextCtrl.rbw
229
+ - samples/bigdemo/wxButton.rbw
230
+ - samples/bigdemo/wxToggleButton.rbw
231
+ - samples/bigdemo/wxHtmlHelpController.rbw
232
+ - samples/bigdemo/wxListBox.rbw
233
+ - samples/bigdemo/wxFontDialog.rbw
234
+ - samples/bigdemo/wxRadioButton.rbw
235
+ - samples/bigdemo/wxFrame.rbw
236
+ - samples/bigdemo/wxStaticText.rbw
237
+ - samples/bigdemo/helpfile.htb
238
+ - samples/bigdemo/wxDirDialog.rbw
239
+ - samples/bigdemo/wxGenericDirCtrl.rbw
240
+ - samples/bigdemo/bigdemo.rb
224
241
  - samples/bigdemo/wxArtProvider.rbw
225
- - samples/bigdemo/wxFileDialog_Save.rbw
226
- - samples/bigdemo/tips.txt
242
+ - samples/bigdemo/wxMenu.rbw
243
+ - samples/bigdemo/wxMiniFrame.rbw
227
244
  - samples/bigdemo/wxStatusBar.rbw
228
- - samples/bigdemo/wxComboBox.rbw
229
- - samples/bigdemo/wxColourDialog.rbw
245
+ - samples/bigdemo/PopupMenu.rbw
246
+ - samples/bigdemo/wxCursor.rbw
247
+ - samples/bigdemo/ColorPanel.rbw
248
+ - samples/bigdemo/wxSlider.rbw
249
+ - samples/bigdemo/wxCheckListBox.rbw
250
+ - samples/bigdemo/wxMDIWindows.rbw
251
+ - samples/bigdemo/tips.txt
252
+ - samples/bigdemo/wxTextEntryDialog.rbw
253
+ - samples/bigdemo/wxMultipleChoiceDialog.rbw
254
+ - samples/bigdemo/wxScrolledMessageDialog.rbw
255
+ - samples/bigdemo/wxSplitterWindow.rbw
230
256
  - samples/bigdemo/demoTemplate.rbw
231
- - samples/bigdemo/wxHtmlHelpController.rbw
232
- - samples/bigdemo/wxToolBar.rbw
233
- - samples/dragdrop
234
- - samples/dragdrop/dragdrop.rb
235
- - samples/grid
236
- - samples/grid/grid.rb
237
- - samples/grid/gridtablebase.rb
238
- - samples/listbook
239
- - samples/listbook/listbook.rb
240
- - samples/listbook/listbook.xrc
241
- - samples/drawing
242
- - samples/drawing/images.rb
243
- - samples/drawing/paperclip.png
244
- - samples/drawing/graphics_drawing.rb
245
- - samples/event
246
- - samples/event/event.rb
247
- - samples/xrc
248
- - samples/xrc/samples.xrc
249
- - samples/xrc/xrc_sample.rb
250
- - samples/minimal
251
- - samples/minimal/mondrian.png
252
- - samples/minimal/minimal.rb
253
- - samples/minimal/nothing.rb
254
- - samples/minimal/mondrian.ico
255
- - samples/treectrl
256
- - samples/treectrl/treectrl.rb
257
- - samples/treectrl/icon5.xpm
258
- - samples/treectrl/icon1.xpm
259
- - samples/treectrl/icon4.xpm
260
- - samples/treectrl/icon2.xpm
261
- - samples/treectrl/icon3.xpm
262
- - samples/aui
263
- - samples/aui/aui.rb
264
- - samples/controls
265
- - samples/controls/get_item_sample.rb
266
- - samples/controls/mondrian.xpm
267
- - samples/controls/test2.bmp
268
- - samples/controls/controls.rb
269
- - samples/controls/icons
270
- - samples/controls/icons/radio.xpm
271
- - samples/controls/icons/list.xpm
272
- - samples/controls/icons/choice.xpm
273
- - samples/controls/icons/combo.xpm
274
- - samples/controls/icons/text.xpm
275
- - samples/controls/icons/stattext.xpm
276
- - samples/controls/icons/gauge.xpm
277
- - samples/controls/mondrian.ico
278
- - samples/opengl
279
- - samples/opengl/cube.rb
280
- - samples/media
281
- - samples/media/mediactrl.rb
282
- - samples/dialogs
283
- - samples/dialogs/dialogs.rb
284
- - samples/dialogs/tips.txt
257
+ - samples/bigdemo/wxMessageDialog.rbw
258
+ - samples/bigdemo/wxRadioBox.rbw
259
+ - samples/bigdemo/wxComboBox.rbw
260
+ - samples/bigdemo/ShapedWindow.rbw
261
+ - samples/bigdemo/wxNotebook.rbw
262
+ - samples/bigdemo/GridSimple.rbw
263
+ - samples/bigdemo/wxDragImage.rbw
264
+ - samples/bigdemo/wxTreeCtrl.rbw
265
+ - samples/bigdemo/wxProgressDialog.rbw
266
+ - samples/bigdemo/wxChoice.rbw
267
+ - samples/bigdemo/wxScrolledWindow.rbw
268
+ - samples/bigdemo/MDIDemo.rbw
269
+ - samples/bigdemo/wxSpinButton.rbw
270
+ - samples/bigdemo/wxChoicebook.rbw
271
+ - samples/bigdemo/wxListCtrl_virtual.rbw
285
272
  - samples/mdi
286
273
  - samples/mdi/mdi.rb
287
- - samples/printing
288
- - samples/printing/mondrian.xpm
289
- - samples/printing/printing.rb
290
- - samples/printing/mondrian.ico
291
- - samples/caret
292
- - samples/caret/mondrian.xpm
293
- - samples/caret/caret.rb
274
+ - samples/calendar
275
+ - samples/calendar/calendar.rb
276
+ - samples/etc
277
+ - samples/etc/sash.rb
278
+ - samples/etc/threaded.rb
279
+ - samples/etc/wizard.rb
280
+ - samples/etc/activation.rb
281
+ - samples/etc/system_settings.rb
282
+ - samples/etc/miniframe.rb
283
+ - samples/etc/choice.rb
284
+ - samples/etc/scrollwin.rb
285
+ - samples/sockets
286
+ - samples/sockets/res
287
+ - samples/sockets/res/user.png
288
+ - samples/sockets/res/message-new.png
289
+ - samples/sockets/wxClient.rb
290
+ - samples/sockets/SocketPackets.rb
291
+ - samples/sockets/wxServer.rb
292
+ - samples/sockets/wxSocketGUI.rb
293
+ - samples/aui
294
+ - samples/aui/aui.rb
295
+ - samples/SAMPLES-LICENSE.TXT
294
296
  - README
295
297
  - LICENSE
296
298
  has_rdoc: false
@@ -315,7 +317,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
315
317
  requirements: []
316
318
 
317
319
  rubyforge_project: wxruby
318
- rubygems_version: 1.2.0
320
+ rubygems_version: 1.3.0
319
321
  signing_key:
320
322
  specification_version: 2
321
323
  summary: Ruby interface to the wxWidgets GUI library