Displaying 8 results from an estimated 8 matches for "art_other".
Did you mean:
port_other
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 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
2007 Jan 06
0
[838] trunk/wxruby2/doc/textile/artprovider.txtl: Add methods listing; rubyify examples; distinguish class methods
...<ins>+h2. Class Methods
</ins><span class="cx">
</span><ins>+h3(#ArtProvider_getbitmap). ArtProvider.get_bitmap
+
</ins><span class="cx"> "Bitmap":bitmap.html *get_bitmap*(%(arg-type)ArtID% id, %(arg-type)ArtClient% client = ART_OTHER,
</span><span class="cx"> %(arg-type)Size% size = DEFAULT_SIZE)
</span><span class="cx">
</span><span class="lines">@@ -158,7 +166,7 @@
</span><span class="cx">
</span><span clas...
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
2007 Jun 05
0
[1051] trunk/wxruby2/samples/aui/aui.rb: Changed assign_image_list to set_image_list.
...UTC (rev 1051)
</span><span class="lines">@@ -1165,7 +1165,7 @@
</span><span class="cx"> img_list.add( Wx::ArtProvider::get_bitmap( Wx::ART_NORMAL_FILE,
</span><span class="cx"> Wx::ART_OTHER,
</span><span class="cx"> Wx::Size.new(16, 16) ) )
</span><del>- tree.assign_image_list(img_list)
</del><ins>+ tree.set_image_list(img_list)
</ins><span class="cx"> root = t...
2007 Jun 25
0
[1065] trunk/wxruby2/samples/bigdemo/wxTreeCtrl.rbw: Fix an icon file path issue
...-06-25 17:32:39 UTC (rev 1065)
</span><span class="lines">@@ -72,7 +72,8 @@
</span><span class="cx"> fldropenidx = il.add(bm)
</span><span class="cx"> bm.copy_from_icon(Wx::ArtProvider::get_icon(Wx::ART_FILE_OPEN, Wx::ART_OTHER, isz))
</span><span class="cx"> fileidx = il.add(bm)
</span><del>- smileidx = il.add(Wx::Bitmap.new("./icons/wxwin16x16.xpm"))
</del><ins>+ bmp_file = File.join(File.dirname(__FILE__), ''icons'', ''...
2007 Mar 22
0
[916] branches/wxruby2/wxwidgets_282: More Wx::AUI classes, event hooks and sample
...ANY, Wx::DEFAULT_POSITION,
+ Wx::DEFAULT_SIZE,
+ Wx::TB_FLAT|Wx::TB_NODIVIDER )
+ tb2.set_tool_bitmap_size( Wx::Size.new(16,16) )
+
+ tb2_bmp1 = Wx::ArtProvider::get_bitmap( Wx::ART_QUESTION,
+ Wx::ART_OTHER,
+ Wx::Size.new(16,16) )
+ tb2.add_tool(101, "Test", tb2_bmp1);
+ tb2.add_tool(101, "Test", tb2_bmp1);
+ tb2.add_tool(101, "Test", tb2_bmp1);
+ tb2.add_tool(101, "Test", tb2_bmp1);
+ tb2.add_separato...
2005 May 03
10
Is wxRuby-SWIG version usable enough to package for download?
If wxRuby-SWIG is as usable as wxRuby 0.6.0, maybe it should be given a
version number and packaged up for download.
Given the nature of SWIG, having a lot more people use it would probably
result in more code contributions to this project.
Seems most of the changes are 2+ months old, so I''m guessing wxRuby-SWIG
is fairly stable right now in terms of frequency of changes...