Displaying 4 results from an estimated 4 matches for "evt_iconize".
2007 Jun 26
0
[1075] trunk/wxruby2/lib/wx/classes/evthandler.rb: Send IconizeEvent to EvtHandlers
...mp;nbsp     2007-06-26 00:09:34 UTC (rev 1075)
</span><span class="lines">@@ -287,7 +287,7 @@
</span><span class="cx"> Wx::Event],
</span><span class="cx"> EventType[''evt_iconize'', 0,
</span><span class="cx"> Wx::EVT_ICONIZE,
</span><del>- Wx::Event],
</del><ins>+ Wx::IconizeEvent],
</ins><span class="cx"> EventType[''evt_idle'', 0,
</...
2007 Jun 26
0
[1081] trunk/wxruby2: Added HyperlinkCtrl from the 2.8 API plus event mappings
...</span><span class="cx"> Wx::Event],
</span><ins>+ EventType[''evt_hyperlink'', 1,
+ Wx::EVT_COMMAND_HYPERLINK,
+ Wx::HyperlinkEvent],
</ins><span class="cx"> EventType[''evt_iconize'', 0,
</span><span class="cx"> Wx::EVT_ICONIZE,
</span><span class="cx"> Wx::IconizeEvent],
</span></span></pre></div>
<a id="trunkwxruby2swigclassesEventi"></a>
<div cl...
2007 Jun 26
0
[1076] trunk/wxruby2/samples/etc/activation.rb: Added sample of IconizeEvent to activation sample
...class="lines">@@ -40,8 +40,18 @@
</span><span class="cx"> evt_menu(Wx::ID_ABOUT) { on_about }
</span><span class="cx">
</span><span class="cx"> evt_activate { | e | on_activate(e) }
</span><ins>+ evt_iconize { | e | on_iconize(e) }
</ins><span class="cx"> end
</span><span class="cx">
</span><ins>+
+ def on_iconize(event)
+ if event.iconized
+ puts "Frame ''#{get_title}'' was iconized"
+ else
+ puts &q...
2007 Jun 25
0
[1067] trunk/wxruby2: Set up event handlers in Ruby rather than by post-processing SWIG output
...Wx::EVT_GRID_SELECT_CELL,
+ Wx::GridEvent],
+ EventType[''evt_help'', 1,
+ Wx::EVT_HELP,
+ Wx::Event],
+ EventType[''evt_help_range'', 2,
+ Wx::EVT_HELP,
+ Wx::Event],
+ EventType[''evt_iconize'', 0,
+ Wx::EVT_ICONIZE,
+ Wx::Event],
+ EventType[''evt_idle'', 0,
+ Wx::EVT_IDLE,
+ Wx::IdleEvent],
+ EventType[''evt_init_dialog'', 0,
+ Wx::EVT_INIT_DIALOG,
+ Wx::Event...