Displaying 1 result from an estimated 1 matches for "notebook_styl".
Did you mean:
notebook_style
2007 Mar 22
0
[916] branches/wxruby2/wxwidgets_282: More Wx::AUI classes, event hooks and sample
...onsts.each_with_index do | c, i |
+ const_set(c, 2000 + i)
+ end
+ ID_FirstPerspective = ID_CreatePerspective + 1000
+
+ def initialize(*args)
+ super
+ @mgr = Wx::AuiManager.new
+ @mgr.set_managed_window(self)
+ @perspectives = []
+
+ # set up default notebook style
+ @notebook_style = Wx::AUI_NB_DEFAULT_STYLE|
+ Wx::AUI_NB_TAB_EXTERNAL_MOVE|Wx::NO_BORDER
+ @notebook_theme = 0
+ setup_menu
+ create_status_bar
+ get_status_bar.set_status_text("Ready")
+ set_min_size( Wx::Size.new(400,300) )
+ setup_toolbars
+ setup_panes
+ setup_perspectiv...