search for: split_horizontally

Displaying 5 results from an estimated 5 matches for "split_horizontally".

2007 Apr 11
0
[948] branches/wxruby2/wxwidgets_282/doc/textile/splitterwindow.txtl: Change initialize method to init to match change made to wxWidgets API for Ruby compatibility.
...o subwindows </span><del>-with the splitter window as parent, and then call one of "SplitterWindow#initialize":splitterwindow.html#SplitterWindow_initialize, "SplitterWindow#split_vertically":splitterwindow.html#SplitterWindow_splitvertically and "SplitterWindow#split_horizontally":splitterwindow.html#SplitterWindow_splithorizontally in </del><ins>+with the splitter window as parent, and then call one of "SplitterWindow#init":splitterwindow.html#SplitterWindow_init, "SplitterWindow#split_vertically":splitterwindow.html#SplitterWindow_spli...
2006 Dec 03
0
[777] trunk/wxruby2/samples/bigdemo/bigdemo.rb: Fix demo truncation; remove some python-specific commented-out classes
...5,8 +352,9 @@ </span><span class="cx"> @log.set_max_length(0) </span><span class="cx"> Wx::Log::set_active_target(Wx::LogTextCtrl.new(@log)) </span><span class="cx"> </span><del>- splitter2.split_horizontally(@nb, @log, 350) </del><span class="cx"> splitter.split_vertically(@tree, splitter2, 190) </span><ins>+ splitter2.split_horizontally(@nb, @log, 200) + </ins><span class="cx"> </span><span class="cx"&gt...
2006 Dec 14
5
wxruby2-preview Gauge and wx-sugar with SplitterWindow
...f) splitter.minimum_pane_size = 10 p1 = splitter.add(Panel.new(splitter)) do | p1 | @errors = p1.add(ListBox.new(p1)) end p2 = splitter.add(Panel.new(splitter)) do | p2 | @log = p2.add(TextCtrl.new(p2, :style => TE_MULTILINE | TE_READONLY)) end splitter.split_horizontally(p1, p2) add(splitter, :proportion => 1) Many thanks, Paul This message and any attachments (the "message") is intended solely for the addressees and is confidential. If you receive this message in error, please delete it and immediately notify the sender. Any use not in accor...
2006 Sep 14
2
Patch to fix ArtProvider and ArtProvider sample
These patches better implement ArtProvider and add the demo for it. I also expanded the bigdemo window a little bit. I really think we should go larger but I suppose there might be some people at 800x600 still. Note that creating your own art provider still doesn''t quite work correctly. I didn''t have time to get into that. The RubyConstants.i.patch file looks weird. Not
2004 Aug 19
28
Documents, Views and DocManagers
Hi, Are there any effort in making wxDocument, wxView, etc types of classes avaiable under wxRuby? For supporting SDI/MDI architecture. Cheers, Phuah Yee Keat