Displaying 12 results from an estimated 12 matches for "find_window".
2006 Dec 30
0
[812] trunk/wxsugar/lib/wx_sugar/wx_classes/window.rb: Added find_window and descendants methods
...ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[812] trunk/wxsugar/lib/wx_sugar/wx_classes/window.rb: Added find_window and descendants methods</title>
</head>
<body>
<div id="msg">
<dl>
<dt>Revision</dt> <dd>812</dd>
<dt>Author</dt> <dd>brokentoy</dd>
<dt>Date</dt> <dd>2006-12-30 11:50:02 -0500 (Sat, 30 Dec 20...
2007 Apr 02
0
[939] trunk/wxsugar/lib/wx_sugar/wx_classes/window.rb: Add has_style? method, allow find_window to work even if C++ method
...ext-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[939] trunk/wxsugar/lib/wx_sugar/wx_classes/window.rb: Add has_style? method, allow find_window to work even if C++ method</title>
</head>
<body>
<div id="msg">
<dl>
<dt>Revision</dt> <dd>939</dd>
<dt>Author</dt> <dd>brokentoy</dd>
<dt>Date</dt> <dd>2007-04-02 14:55:19 -0400 (Mon, 02 Apr...
2006 Dec 23
0
[794] trunk/wxruby2: Fix get_ruby_object so it works with SWIG tracking, move find_window_xx
...#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[794] trunk/wxruby2: Fix get_ruby_object so it works with SWIG tracking, move find_window_xx</title>
</head>
<body>
<div id="msg">
<dl>
<dt>Revision</dt> <dd>794</dd>
<dt>Author</dt> <dd>brokentoy</dd>
<dt>Date</dt> <dd>2006-12-22 22:04:53 -0500 (Fri, 22 Dec 2006)</dd>
</d...
2008 Oct 06
2
StdDialogButtonSizer default button
Hi all,
How do i set the default button for a Wx::StdDialogButtonSizer?
Any hints would be appreciated.
regards.
bio.
_______________________________________________
wxruby-users mailing list
wxruby-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/wxruby-users
2008 Jun 13
7
Rubyscript2exe undefined ''run'' method
After I ran my program through Rubyscript2exe, the Random.exe file that
it created is causing the following error:
D:\Ruby projects>random.exe
C:\DOCUME~1\JEDELS~1\eee\eee.Random.exe.2\app\Random.rb:59: undefined
method ''ru
n'' for Wxruby2::App (NoMethodError)
from
C:\DOCUME~1\JEDELS~1\eee\eee.Random.exe.2\bootstrap.rb:77:in `load''
from
2007 Mar 22
1
WxSugar 0.1.14 is released
Hi
I''m pleased to announce that a new version WxSugar is now available from
http://rubyforge.org/frs/?group_id=35&release_id=10569
= CHANGES =
* Can now just do "require ''wx_sugar''" to load all behaviours
* Added ''find_window'' and ''descendants'' methods to Wx::Window
* :name and :validator constructor arguments now work correctly for
subclasses of Wx::Control
* Added ''traverse'' method to Wx::TreeCtrl
* ''arrange_'' methods now yield the underlying sizer into t...
[707] trunk/wxruby2/swig/classes/Window.i: Window-paint method now implemented in Ruby (Alex Fenton)
2006 Oct 22
0
[707] trunk/wxruby2/swig/classes/Window.i: Window-paint method now implemented in Ruby (Alex Fenton)
...p        }
-         return Qnil;        
-
- }
-
</del><span class="cx"> VALUE find_window(long id)
</span><span class="cx"> {
</span><span class="cx"> VALUE returnVal = Qnil;
</span></span></pre>
</div>
</div>
</body>
</html>
2006 Dec 20
0
[789] trunk/wxruby2/swig/classes/Window.i: Make GetChildren work (tho general fix for get_ruby_object still needed)
...node = $1->GetFirst();
+ while (node)
+ {
+ wxObject *obj = node->GetData();
+ rb_ary_push($result, get_ruby_object(obj));
+ node = node->GetNext();
+ }
+}
+
+// general-purpose function used to return ruby wrappers around windows
+// whose type is not known in advance - as in find_window, get_children etc
+
+// TODO - doesn''t work correctly with object tracking - it should return
+// the same Ruby object if the object has been seen before
+// use something like:
+//         returnVal = SWIG_NewPointerObj(obj...
2007 Mar 22
0
[910] branches/wxruby2/wxwidgets_282: Moved paint() method back into C++, so DC object is destroyed in timely
...on_paint handler.
- def paint
- yield Wx::PaintDC.new(self)
- end
-
</del><span class="cx"> # Recursively searches all windows below +self+ and returns the first
</span><span class="cx"> # window which has the id +an_id+. This corresponds to the find_window
</span><span class="cx"> # method method in WxWidgets when called with an integer.
</span></span></pre></div>
<a id="brancheswxruby2wxwidgets_282swigclassesWindowi"></a>
<div class="modfile"><h4>Modified: br...
2011 Jun 10
0
Wine release 1.3.22
...ObjectImpl.
d3dxof: Factor out duplicated code for parsing X file header.
d3dxof: Factor out parse template loops into a function.
Fr?d?ric Delanoy (1):
taskmgr: No need for translatable string for IDC_MEM_USAGE_HISTORY_GRAPH pushbutton.
Gerald Pfeifer (1):
imm32: Simplify find_window where we do not need to consider the return value of EnumChildWindows.
Hans Leidekker (24):
msi: Skip files from global assemblies in the RemoveFiles action.
msi: Set the SystemComponent installation property if necessary.
appwiz.cpl: Don't list system components.
unins...
2006 Dec 18
13
unit testing wxruby GUIs
paul.allton at uk.bnpparibas.com wrote:
> I''m a big fan of automated UI testing (i.e. driving the UI from some
robot API). I appreciate this
> is potentially a whole new project, but does wxwidgets provide a
method of clicking buttons,
> typing into components ... if so, would it be technically possible to
expose this in wxruby.
I like automated UI testing too, but
2007 Apr 30
0
[997] branches/wxruby2/wxwidgets_282: Window - 2.6 -> 2.8 API, new methods and deprecations; update doc
...;cx">
</span><span class="cx"> h2. Methods
</span><span class="lines">@@ -82,8 +84,8 @@
</span><span class="cx"> * "Window#find_focus":#Window_findfocus
</span><span class="cx"> * "Window#find_window":#Window_findwindow
</span><span class="cx"> * "Window#find_window_by_id":#Window_findwindowbyid
</span><ins>+* "Window#find_window_by_label":#Window_findwindowbylabel
</ins><span class="cx"> * "Window#find_window...