summaryrefslogtreecommitdiff
path: root/src/cfg_gfx/quartz.H
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2016-01-24 16:22:50 +0000
committerMatthias Melcher <fltk@matthiasm.com>2016-01-24 16:22:50 +0000
commit60ec452d043e44bcbb05860381e2077a3b56b09c (patch)
tree1eaf13dc05a6da6a53a949fc1a66df6030cab943 /src/cfg_gfx/quartz.H
parent49cf30286b505e15ca0496605efca5546c7bbf85 (diff)
Reorganizing color drawing code.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11045 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/cfg_gfx/quartz.H')
-rw-r--r--src/cfg_gfx/quartz.H7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/cfg_gfx/quartz.H b/src/cfg_gfx/quartz.H
index 33ef68086..a85f200c1 100644
--- a/src/cfg_gfx/quartz.H
+++ b/src/cfg_gfx/quartz.H
@@ -43,8 +43,8 @@ class FL_EXPORT Fl_Quartz_Graphics_Driver : public Fl_Graphics_Driver {
public:
static const char *class_id;
const char *class_name() {return class_id;};
- void color(Fl_Color c);
- void color(uchar r, uchar g, uchar b);
+// void color(Fl_Color c);
+// void color(uchar r, uchar g, uchar b);
void draw(const char* str, int n, int x, int y);
#ifdef __APPLE__
void draw(const char *str, int n, float x, float y);
@@ -111,6 +111,9 @@ protected:
void pie(int x, int y, int w, int h, double a1, double a2);
// --- implementation is in src/fl_line_style.cxx which includes src/cfg_gfx/xxx_line_style.cxx
void line_style(int style, int width=0, char* dashes=0);
+ // --- implementation is in src/fl_color.cxx which includes src/cfg_gfx/xxx_color.cxx
+ void color(Fl_Color c);
+ void color(uchar r, uchar g, uchar b);
};