Displaying 6 results from an estimated 6 matches for "getcolour".
Did you mean:
get_colour
2007 Mar 23
0
[917] branches/wxruby2/wxwidgets_282/swig/classes/include/wxAuiDockArt.h: Fix spelling mistake from wxWidgets headers
...ot;lines">@@ -15,7 +15,7 @@
</span><span class="cx"> virtual void SetFont(int id, const wxFont& font) = 0;
</span><span class="cx"> virtual wxFont GetFont(int id) = 0;
</span><span class="cx"> virtual wxColour GetColour(int id) = 0;
</span><del>- virtual void SetColour(int id, const wxColor& colour) = 0;
</del><ins>+ virtual void SetColour(int id, const wxColour& colour) = 0;
</ins><span class="cx"> wxColour GetColor(int id) { return GetColour(id); }...
2005 Nov 23
1
Wx::SystemSettings
Hi all
Please find attached files to implement (much of) Wx::SystemSettings for
wxruby2. I really just wanted to be able to get screen width and screen
height, but there''s lots of other stuff there too; the sample file
provides a listing of what''s avaiable, with descriptions. With this email
* patch to typemap.i
* patch to RubyConstants.i
* new SystemSettings.i file for
2006 Oct 20
0
[695] trunk/wxruby2/swig/classes/include/wxPen.h: Get/SetStipple not available on GTK
...50 UTC (rev 694)
+++ trunk/wxruby2/swig/classes/include/wxPen.h        2006-10-20 19:32:49 UTC (rev 695)
</span><span class="lines">@@ -21,7 +21,10 @@
</span><span class="cx"> wxColour& GetColour() const;
</span><span class="cx"> int GetDashes(wxDash** dashes ) const;
</span><span class="cx"> int GetJoin() const;
</span><del>- wxBitmap* GetStipple() const;
</del><ins>+// not available on GTK
+#if defined(__WXMSW__) |...
2008 Jan 07
7
rainbow function
Hello
I'm using rainbow function to generate 10 colors for the plot and it is
difficult to tell the neighboring colors from each other. How can I make
the colors more differently.
Thanks
Zhaoming
[[alternative HTML version deleted]]
2007 Mar 17
0
[883] branches/wxruby2/wxwidgets_282/swig: API changes for move to WxWidgets 2.8
...3,7 +43,7 @@
</span><span class="cx"> The default value is black.
</span><span class="cx">         */
</span><span class="cx">
</span><del>- wxColour& GetColour() ;
</del><ins>+ const wxColour& GetColour() ;
</ins><span class="cx">         /**
</span><span class="cx">        &am...
2007 Mar 22
0
[916] branches/wxruby2/wxwidgets_282: More Wx::AUI classes, event hooks and sample
...iDockArt
+{
+public:
+ wxAuiDockArt() { }
+ virtual ~wxAuiDockArt() { }
+
+ virtual int GetMetric(int id) = 0;
+ virtual void SetMetric(int id, int new_val) = 0;
+ virtual void SetFont(int id, const wxFont& font) = 0;
+ virtual wxFont GetFont(int id) = 0;
+ virtual wxColour GetColour(int id) = 0;
+ virtual void SetColour(int id, const wxColor& colour) = 0;
+ wxColour GetColor(int id) { return GetColour(id); }
+ void SetColor(int id, const wxColour& color) { SetColour(id, color); }
+
+ virtual void DrawSash(wxDC& dc,
+ wxWindow* w...