Displaying 20 results from an estimated 10000 matches similar to: "Patch for wxToolBar.rbw"
2005 Sep 02
2
About.rbw.patch
This patch file allows the About menu item in the bigdemo sample to work.
_______________________________________________
wxruby-users mailing list
wxruby-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/wxruby-users
2006 Aug 25
1
wxCheckListBox.rbw patch file
This fixes truncated text on the CheckListBox sample in bigdemo.
Roy
_______________________________________________
wxruby-users mailing list
wxruby-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/wxruby-users
2006 Aug 25
3
Patch to wxComboBox.rbw
This patch fixes the sample so it works correctly. You''ll need to
patches in the previous e-mail.
Roy
_______________________________________________
wxruby-users mailing list
wxruby-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/wxruby-users
2005 Sep 11
6
Patch to wxNotebook.rbw
Patch to the notebook example to remove the call to the deprecated
NotebookSizer. It appears to work just fine without the sizer.
Roy
_______________________________________________
wxruby-users mailing list
wxruby-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/wxruby-users
2005 Sep 02
3
Patch to wxDialog.rbw
This patch file adds a missing parameter to the sample source so the
dialog sample will work. Also attached is a patch to add an additional
optional parameter to wxStaticLine.h. I was going through header files
to confirm the other problem and discovered there''s another optional
parameter.
Roy
_______________________________________________
wxruby-users mailing list
2006 Sep 12
1
Patch to wxScrolledWindow.rbw
This patch removes the dc.free call that we don''t support anymore.
_______________________________________________
wxruby-users mailing list
wxruby-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/wxruby-users
2006 Sep 27
4
wxScrolledWindow.rbw
This patch removes the call to ''free'' from the sample.
Roy
_______________________________________________
wxruby-users mailing list
wxruby-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/wxruby-users
2008 Sep 27
3
Problems with ToolBar Sintaxis
First of all, it''s my first week learnig ruby and so is for wxruby,also
this is my first time working with a GUI so please, please, be patient.
I''m having problems with the code for a toolbar, i want to add an item,
but a don''t know how. this is my code for now:
@toolBarPrincipal=ToolBar.new(@panel)
@toolBarPrincipal.add_tool(-1, ''&Bonzai'',
2006 Sep 15
1
wxGenericDirCtrl
wxGenericDirCtrl.rbw and bigdemo.rb.patch file.
Note that we still have the extension .rbw on all the samples. Maybe we
should mass-migrate them to .rb (and fix bigdemo.rb)?
Roy
_______________________________________________
wxruby-users mailing list
wxruby-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/wxruby-users
2006 Oct 14
3
Samples
Updated all the sample files to add the shebang line and the require
code we discussed.
I also added the wxRuby copyright notice to all the samples I know I
added (I may have missed some).
Next, how about we rename all the .rbw files to .rb and update bigdemo?
Roy
2006 Sep 14
1
wxChoicebook
wxChoicebook.rbw + patch file to bigdemo.rb
Roy
_______________________________________________
wxruby-users mailing list
wxruby-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/wxruby-users
2006 Sep 14
2
wxBitmapButton.rbw
Here is a sample for BitmapButtons. I realize we have one in the Button
sample but I''m just bringing us closer to the python demo. The patch
for bigdemo.rb includes the previous patch, too. Sorry ''bout that. :)
_______________________________________________
wxruby-users mailing list
wxruby-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/wxruby-users
2006 Sep 06
12
Patch to wxWindow.h
This patch fixes background color problems (at least on Windows). It
uses the dreaded ''FIXME''
My plan for next weekend is to try building wxPython from the source to
see how they manage to achieve several things with SWIG that we''re not
(yet) able to. If I''m successful it might lead to wrapping a
significant portion of wxWidgets more correctly than
2005 Sep 04
3
bigdemo patches
Patches:
1) Sizer.rbw: Selects first item after creating the list
2) wxCalendarCtrl.rbw: Uses ruby DateTime now
3) wxButton.rbw: There is no function ''set_tool_tip_string''. Changed
to set_tool_tip
4) wxCheckBox.rbw: Missing quote on require. cID was too big, caused
assert failure
5) wxCheckListBox.rbw: Missing argument to StaticText.new added (I
don''t
2006 Aug 18
10
TreeCtrl update
The previous TreeCtrl.i was very messy and just plain wrong, for
instance it had GetFirstChild as depreciated when in fact only 1
version of it was depreciated not both.
I changed GetFirstChild and GetNextChild to return an array of values
to match the wxPython and wxPerl usage.
I also noticed that wxTreeCtrl is inherited from wxControl on Windows
and wxScrolledWindow on everything else so I #if
2005 Sep 13
3
Swig hates us...
Swig is making mincemeat out of ComboBox.new. Because of the way it''s
picking the ''correct'' one to call it''s calling with a null name instead
of a default name. How did we fix this before?
2006 Oct 15
4
TaskBarIcon
Attached are some patches to implement the TaskBarIcon. Let me know how
this works on Linux and OS X. You may want to ''svn update'' first and
get the new version of ruby.png since I fixed the transparent background.
Roy
-------------- next part --------------
An embedded and charset-unspecified text was scrubbed...
Name: bigdemo.rb.patch
Url:
2006 Apr 23
2
Bigdemo Menu Demo
Does anyone know how the wxMenu.rbw files was going to be competed? I
believe we have the code now to finish it off but I don''t want to guess
what the demo writer had in mind (though I think it''s obvious).
Specifically, it''s the code that adds and removes menu items.
I''ve made some progress on other fronts:
o Test case for object tracking
o Object
2005 Sep 04
3
Possible patch for wxCheckListBox.h
I cut-n-pasted the public section from the wxWindows headers. Several
things were missing so it seemed the easiest way to fix it. This fixed
a problem with the way the overloaded new was being handled. This
correctly generated all the versions so that it won''t have the problem
with the non-initialized default parameters. I will admit I haven''t
done serious testing on
2005 Sep 19
9
more fixes for Grid classes
I am still hunting the bug where the cell editor finishes and crashes
on Mac OS. In the process I have gone over these Grid related classes
in great detail and found most were %importing wxObject.h and
wxEvtHandler.h and they were not needed.
I added a *.i file for ClientDataContainer not sure if it is needed
out side Grid. I also added GridCellCoords.
Sean