similar to: Patch for RubyConstants.i

Displaying 20 results from an estimated 40000 matches similar to: "Patch for RubyConstants.i"

2005 Aug 30
2
Re: new RubyConstants.i
Here is a small patch to apply the above RubyConstants.i, it makes it so all the samples run. Run the patch in the same directory as the RubyConstants.i Sean On 8/30/05, Sean Long <sean.m.long@gmail.com> wrote: > I went through RubyConstants.i and updated it so everything matches > wx2.6.1, I also did some rearranging so it is easy to see which files > the different constants came
2006 Aug 19
12
Compiling WxRuby2 on Ubuntu 6.06
Hi All, I am trying to compile WxRuby on Ubuntu 6.06. I checked out the latest source code from CVS and ran ''rake'' under the wxruby2 directory. I am getting the following error. root@imayam:/work/wxruby/wxruby2# rake (in /work/wxruby/wxruby2) rake aborted! Don''t know how to build task ''src/App.cpp'' (See full trace by running task with --trace) I am
2006 Aug 24
1
Patch to RubyConstants.i
While investigating the ''TextCtrl background?'' message from Mark I noticed some Constants related to TextCtrl were missing. Sean _______________________________________________ wxruby-users mailing list wxruby-users@rubyforge.org http://rubyforge.org/mailman/listinfo/wxruby-users
2005 Sep 13
3
Patch to RubyConstants.i
This patch does two things: 1) puts in the enums (+ Ruby aliases) for the TreeCtrl icon settings 2) Removes a redundant definition of wxCURSOR_DEFAULT, eliminating a compiler warning on Windows Roy _______________________________________________ wxruby-users mailing list wxruby-users@rubyforge.org http://rubyforge.org/mailman/listinfo/wxruby-users
2006 Mar 30
4
RubyConstants.i patch
This patch fixes the problem with the undefined constants. Apologies to Alex as I didn''t apply his patches yet. The fix is to just removed the _C from the end of the ones that won''t compile anymore. Roy _______________________________________________ wxruby-users mailing list wxruby-users@rubyforge.org http://rubyforge.org/mailman/listinfo/wxruby-users
2006 Sep 13
2
RubyConstants.i.patch
This patch fixes up two problems with ArtProvider constants and fixes a small typo. Roy _______________________________________________ wxruby-users mailing list wxruby-users@rubyforge.org http://rubyforge.org/mailman/listinfo/wxruby-users
2006 Aug 12
5
Windows build?
I performed a get on the CVS WxRuby2; I have installed wxWidgets 2.6.3 and SWIG 1.3.29. Additionally I am running Visual Studio on Windows XP. When I run rake to compile I receive the following error. App.cpp c:\wxWidgets-2.6.3/include\wx/platform.h(190) : fatal error C1083: Cannot open include file: ''wx/setup.h'': No such file or directory rake aborted! Command failed with
2005 Sep 13
2
Patches I forgot to send last night, pt. 1
Patch for RubyConstants.i to add ImageList constants _______________________________________________ wxruby-users mailing list wxruby-users@rubyforge.org http://rubyforge.org/mailman/listinfo/wxruby-users
2005 Aug 31
5
Re: event handlers for wxGrid
I got a warning from the list about the attachments being too big so I am not sure if the original went through. So here is a zip of the files. Sean On 8/30/05, Sean Long <sean.m.long@gmail.com> wrote: > I added all the event handlers for wxGrid. These patches also have > changes from my previous patches that have not been commited yet > (choicebook). wxGrid is actually getting
2005 Aug 29
3
added Choicebook
Here are the new files in a zip and the patches to existing. Also added Listbook values to parents.rb that I forgot when adding that. Sean _______________________________________________ wxruby-users mailing list wxruby-users@rubyforge.org http://rubyforge.org/mailman/listinfo/wxruby-users
2006 Aug 21
4
Patch for caret sample
Cleaned up so it follows Ruby coding style and uses ID_EXIT, ID_ABOUT. Sean _______________________________________________ wxruby-users mailing list wxruby-users@rubyforge.org http://rubyforge.org/mailman/listinfo/wxruby-users
2007 Oct 02
2
wxRuby Tutorial
Hi Everyone, My name is Sean Lindsay, and I have recently joined the wxRuby project. I have been talking with Alex and have agreed to update the tutorial. I have started by placing a link to a new temporary tutorial page so that the old one can stay in place for the time being. I have written up a preliminary table of contents and would be happy to hear any
2006 Aug 21
2
Patch to Calendar sample
This patch cleans up the calendar sample to follow the Ruby coding style. It also uses ID_ABOUT and ID_EXIT for the About and Quit menu item ID''s these allow wxWidgets to put the About and Quit menu in the correct location on Mac OS X. We should probably do this with all the samples. Sean _______________________________________________ wxruby-users mailing list
2006 Jul 24
6
MiniFrame.i
Hi Another little patch, adding MiniFrame (a frame with small title bar and buttons which doesn''t appear in the desktop taskbar). Also a sample - not very interesting, happy to roll this into something else if that''s better. cheers alex _______________________________________________ wxruby-users mailing list wxruby-users@rubyforge.org
2005 Aug 22
2
Adding ScreenDC
Here is the file to add ScreenDC. I noticed that it inherits from wxDC which is what the docs show but the headers for each platform are much different: - Mac,MSW,os2,motif,palmos all inherit from wxWindowDC - X11,GTK inherit from wxPaintDC - MGL, cocoa inherit from wxDC After saying that on Windows it still work inheriting from wxDC so I left it for now, any thoughts? Sean
2006 Aug 07
1
wxWidgets 2.7.0
Just saw that 2.7.0 was released and thought I would post my thoughts on that in regard to our effort. The 2.7.0 release is a ''Development'' release on the way to the stable 2.8.0 and so it could have ABI or API changes along the way. I think we should still focus on 2.6.3 for our initial release and keep our eye on the 2.7.x development and once it gets close to 2.8.0 then start
2006 Aug 21
1
Patch for listbook sample
I made it use ID_EXIT so it follows my previous suggestion to use this predefined constant. Sean _______________________________________________ wxruby-users mailing list wxruby-users@rubyforge.org http://rubyforge.org/mailman/listinfo/wxruby-users
2010 Mar 13
3
[BUG] Menus on Snow Leopard not working correctly
I posted the following bug at http://rubyforge.org/tracker/index.php?func=detail&aid=27962&group_id=35&atid=218. Is anyone else dealing with this? > In running the 2.0.1 samples under OS X 10.6.2, some menu items do not appear as they should. > > For example: > * in the "minimal" sample, the "file" menu appears in the menu bar, but the individual items
2005 Aug 10
5
more patches
Here are a few patches 2 small changes and one a little hefty. All are to *.i files. SpinCtrl.patch - Changes cWxSpinCtrl.klass to mWxSpinCtrl in rb_define_method. Dialog.patch - Removed the %ignore wxDialog::wxDialog line, this line prevents Dialogs working with XRC. Window.i - Added special code for find_window_* methods so the correct object type is returned, this is very important when
2006 Oct 18
3
Nightly automatic documentation generation
Is there a way to have RubyForge run our ''rake html_docs'' on SVN Head each night and if successful copy to http://wxruby.rubyforge.org/doc/? I do not know all the features RubyForge provides to us but this one would be pretty nice. Sean