search for: get_font

Displaying 13 results from an estimated 13 matches for "get_font".

Did you mean: set_font
2006 Nov 13
0
[735] trunk/wxruby2: Got the ''get_item_sample'' sample working had to add some missing ListCtrl constants.
...quot; - print "text: ",item.get_text,"\n" - print "text color:",show_color(item.get_text_colour),"\n" - print "BG color: ",show_color(item.get_background_colour),"\n" - print "font: ",show_font(item.get_font),"\n\n" </del><ins>+ item = Wx::ListItem.new() + item.set_id(i) + if list.get_item(item) + print "ID:",item.get_id,"\n" + print "column: ",item.get_column,"\n" + print "text: ",...
2005 Nov 23
1
Wx::SystemSettings
...these out in the sample file for now, and the rest work as expected. For reference, running this in gdb I get the following error with the bad colours: Program received signal EXC_BAD_ACCESS, Could not access memory. 0x02da4c04 in wxColour::wxColour(wxColour const&) () 3) Wx::SystemSettings.get_font(xxx) segfaults for me for any value, so I have %ignored it for now in the .i file. For reference, gdb reports: Program received signal EXC_BAD_ACCESS, Could not access memory. 0x02d83d68 in wxObject::Ref(wxObject const&) () all the best alex ___________________________________________...
2005 Nov 25
2
Wx::SystemSettings mark II
hi patches and files for Wx::SystemSettings, with get_font included in swig file and a sample that doesn''t segfault wxruby. CVS patches: RubyConstants.i, type_map.i CVS new: system_settings.rb (sample) SystemSettings.i (SWIG file) The sample should allow you to view the available information about system colours, fonts and metrics (eg cursor s...
2007 Mar 27
0
[922] branches/wxruby2/wxwidgets_282: Changes, additions and deprecations 2.6 -> 2.8 Wx API
...class="lines">@@ -70,8 +76,10 @@ </span><span class="cx"> * "DC#get_char_width":#DC_getcharwidth </span><span class="cx"> * "DC#get_clipping_box":#DC_getclippingbox </span><span class="cx"> * "DC#get_font":#DC_getfont </span><ins>+* "DC#get_layout_direction":#DC_getlayoutdirection </ins><span class="cx"> * "DC#get_logical_function":#DC_getlogicalfunction </span><span class="cx"> * "DC#get_map_mode":#DC_getmapm...
2003 Dec 29
4
memory management
Hi! I''m proceeding with my image organizer program, now one can get pictures in their acual size: a new dialog box is created, the image inside. BUT It seems, that this memory is reserved, so not freed, when I close the dialog. Do I have to delete the Bitmap manually, when closing the corresponding dialog window? Or what? thx in advance ps: I will send the code next year... Gergo --
2007 Jan 03
0
[823] trunk/wxruby2/doc/textile: Remove docs for some deprecated classes
.... - -h2. Derived from - -"Object":object.html - -h2. See also - -Tab classes overviewwxtaboverview - -<div id="methods"> - -h2. Methods - -* "TabControl.new":#TabControl_new -* "TabControl#get_col_position":#TabControl_getcolposition -* "TabControl#get_font":#TabControl_getfont -* "TabControl#get_height":#TabControl_getheight -* "TabControl#get_id":#TabControl_getid -* "TabControl#get_label":#TabControl_getlabel -* "TabControl#get_row_position":#TabControl_getrowposition -* "TabControl#get_selected&quo...
2009 Jun 08
6
Display of Photomatix GUI Has No Buttons, Checkmarks
I would like to use Photomatix Pro 3.1.3 on my WINE install. I was able to successfully install it after installing corefonts and .NET 2.0 using winetricks. The program opens fine but none of the buttons, checkmarks, or other window dressings appear: [Image: http://img93.imageshack.us/img93/7739/photomatix.png ] I have several other applications installed in WINE and none of them exhibit this
2009 Apr 10
3
Apropos Agent 6.5 crashing when launched
...not supported yet Unhandled Exception: System.ArgumentException: Font '?' cannot be found. at System.Drawing.FontFamily.GetGdipGenericSansSerif() at System.Drawing.FontFamily.get_GenericSansSerif() at System.Drawing.SystemFonts.get_DefaultFont() at System.Windows.Forms.Control.get_Font() at System.Windows.Forms.Control.get_FontHeight() at System.Windows.Forms.TextBoxBase.get_PreferredHeight() at System.Windows.Forms.TextBoxBase.get_DefaultSize() at System.Windows.Forms.Control..ctor(Boolean autoInstallSyncContext) at System.Windows.Forms.TextBoxBase..ctor() at S...
2007 Mar 18
0
[894] branches/wxruby2/wxwidgets_282/doc/textile/window.txtl: Document changed Window methods in 2.6 -> 2.8 API
...w_geteffectivebestsize </ins><span class="cx"> * "Window#get_event_handler":#Window_geteventhandler </span><span class="cx"> * "Window#get_extra_style":#Window_getextrastyle </span><span class="cx"> * "Window#get_font":#Window_getfont </span><span class="lines">@@ -129,7 +127,6 @@ </span><span class="cx"> * "Window#get_size":#Window_getsize </span><span class="cx"> * "Window#get_sizer":#Window_getsizer </span><spa...
2006 Nov 15
0
[740] trunk/wxruby2: API - Make ListCtrl#get_item return a ListCtrl item corresponding to a row and
...mn,"\n" </span><span class="cx"> print "text: ",item.get_text,"\n" </span><span class="lines">@@ -46,10 +44,9 @@ </span><span class="cx"> print "font: ",show_font(item.get_font),"\n\n" </span><span class="cx"> end </span><span class="cx"> end </span><ins>+ # test other column </ins><span class="cx"> 0.upto(2) do |i| </span><del>- item = Wx::ListItem.ne...
2006 Dec 26
0
[806] trunk/wxruby2/samples/treectrl: Restored demonstration of use of icons and fonts within TreeCtrl
...t;<del>- set_item_font(root_id, Wx::ITALIC_FONT) </del><ins>+ # note that font sizes can also be varied, but only on platforms + # that use the generic TreeCtrl - OS X and GTK, and only if + # Wx::TR_HAS_VARIABLE_ROW_HEIGHT style was used in the constructor + font = get_font + font.set_style(Wx::FONTSTYLE_ITALIC) + set_item_font(root_id, font) </ins><span class="cx"> </span><span class="cx"> id,cookie = get_first_child(root_id) </span><span class="cx"> set_item_text_colour(id, Wx::BLUE) &l...
2007 May 05
0
[1012] trunk/wxruby2/doc/textile: Added docs for AUI Advanced User Interface classes
...ot;:#AuiDockArt_getcolour. + +h3(#AuiDockArt_getcolour). AuiDockArt#get_colour + + "Colour":colour.html *get_colour*(%(arg-type)Integer% id) + +Get the colour of a certain setting. + +_id_ can be one of the colour values of *AuiPaneDockArtSetting*. + + +h3(#AuiDockArt_getfont). AuiDockArt#get_font + + "Font":font.html *get_font*(%(arg-type)Integer% id) + +Get a font setting. + +h3(#AuiDockArt_getmetric). AuiDockArt#get_metric + + Integer *get_metric*(%(arg-type)Integer% id) + +Get the value of a certain setting. + +_id_ can be one of the size values of *AuiPaneDockArtSetting*. + +...
2005 Aug 15
16
swig_up
Tracing down some things to add in validators and I''ve run across something that kinda bothers me... In order to implement validators you have to override the clone method. The directors seems to be set up to specifically handle this situation. However, whenever C++ calls back to the object''s methods the swig_get_up function is returning false. It seems like swig_up