search for: viewmenu

Displaying 2 results from an estimated 2 matches for "viewmenu".

Did you mean: view_menu
2008 May 11
2
instabilities in wxRuby 1.9.6
...times this happens very quickly, sometimes after a minute or so. Is this a bug, or should I be doing something different to show/hide child frames? Thanks for any help with this. Peter. class ChildFrame < Wx::Frame def initialize parent super(parent, -1, "Child frame") viewMenu = Wx::Menu.new viewMenu.append(Wx::ID_CLOSE, "Close\tCtrl-W", "Close this window") evt_menu(Wx::ID_CLOSE) { show false } menuBar = Wx::MenuBar.new menuBar.append(viewMenu, "&View") set_menu_bar menuBar end end class TestFrame < Wx::Frame...
2008 May 20
0
[ wxruby-Bugs-20255 ] Instabilities on Linux - 1.9.7
...9.7 Initial Comment: Segfaults after opening and closing frames on GTK. See http://rubyforge.org/pipermail/wxruby-users/2008-May/003916.html ============== require ''wx'' class ChildFrame < Wx::Frame def initialize parent super(parent, -1, "Child frame") viewMenu = Wx::Menu.new viewMenu.append(Wx::ID_CLOSE, "Close\tCtrl-W", "Close this window") evt_menu(Wx::ID_CLOSE) { show false } menuBar = Wx::MenuBar.new menuBar.append(viewMenu, "&View") set_menu_bar menuBar end end class TestFrame < Wx::Frame...