Displaying 4 results from an estimated 4 matches for "get_pan".
Did you mean:
get_pfn
2007 May 11
0
[ wxruby-Bugs-10759 ] Wx::AuiManager.get_all_panes can not get all pane.
...e.
Initial Comment:
require "wx"
=begin
bug : Wx::AuiManager.get_all_panes can not get all pane.
output:
====================================================
aui.get_all_panes------------
#<Wxruby2::AuiPaneInfo:0x2e3c0f4>,name=b
#<Wxruby2::AuiPaneInfo:0x2e3c0f4>,name=b
aui.get_pane----------
#<Wxruby2::AuiPaneInfo:0x2e3c0a4>,name=a
#<Wxruby2::AuiPaneInfo:0x2e3bf78>,name=b
====================================================
=end
class MainApp < Wx::App
def on_init
@frame = Wx::Frame.new(nil, -1, "bug get_all_panes",Wx::DEFAULT_POSITION,Wx::S...
2007 Mar 22
0
[916] branches/wxruby2/wxwidgets_282: More Wx::AUI classes, event hooks and sample
...e.y, size.x, 0)
+
+ msg = "Size: %d x %d" % [ size.x, size.y ]
+ width, height = dc.get_text_extent(msg)
+ height += 3
+ dc.draw_text(msg,
+ (size.x - width) / 2,
+ (size.y - ( height * 5 ) ) / 2 )
+
+ if @mgr
+ pi = @mgr.get_pane(self)
+ msg = "Layer: %d" % pi.dock_layer
+ width, height = dc.get_text_extent(msg)
+ dc.draw_text(msg,
+ (size.x - width) / 2,
+ ( ( size.y - ( height * 5 ) ) / 2 ) + height )
+
+ msg = "Dock: %d Row: %d" % [...
2007 Mar 23
0
[918] branches/wxruby2/wxwidgets_282/samples/aui/aui.rb: Fix a couple of little bugs and typos
...nu(ID_TreeContent) { | e | on_change_content_pane(e) }
</span><span class="cx"> evt_menu(ID_TextContent) { | e | on_change_content_pane(e) }
</span><span class="lines">@@ -1012,7 +1013,7 @@
</span><span class="cx"> if event.get_pane.get_name == "test10"
</span><span class="cx"> msg = "Are you sure you want to close/hide this pane?"
</span><span class="cx"> dlg = Wx::MessageDialog.new(self, msg, "Wx::AUI", Wx::YES_NO)
</span><del>...
2007 May 05
0
[1012] trunk/wxruby2/doc/textile: Added docs for AUI Advanced User Interface classes
...er
+* "AuiManager#get_dock_size_constraint":#AuiManager_getdocksizeconstraint
+* "AuiManager#get_flags":#AuiManager_getflags
+* "AuiManager#get_managed_window":#AuiManager_getmanagedwindow
+* "AuiManager#get_manager":#AuiManager_getmanager
+* "AuiManager#get_pane":#AuiManager_getpane
+* "AuiManager#hide_hint":#AuiManager_hidehint
+* "AuiManager#insert_pane":#AuiManager_insertpane
+* "AuiManager#load_pane_info":#AuiManager_loadpaneinfo
+* "AuiManager#load_perspective":#AuiManager_loadperspective
+* "AuiManag...