From aaaf0a0537e03cec7a47330550a31bb4e96dacde Mon Sep 17 00:00:00 2001 From: Matthias Melcher Date: Wed, 1 Nov 2023 17:22:31 +0100 Subject: FLUID: Adds options to draw ghosted outlines. --- fluid/Fl_Group_Type.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'fluid/Fl_Group_Type.h') diff --git a/fluid/Fl_Group_Type.h b/fluid/Fl_Group_Type.h index fb8feb16d..03fa3cdcd 100644 --- a/fluid/Fl_Group_Type.h +++ b/fluid/Fl_Group_Type.h @@ -41,6 +41,7 @@ class Fl_Group_Proxy : public Fl_Group { public: Fl_Group_Proxy(int X,int Y,int W,int H) : Fl_Group(X, Y, W, H) { Fl_Group::current(0); } void resize(int x, int y, int w, int h) FL_OVERRIDE; + void draw() FL_OVERRIDE; }; class Fl_Group_Type : public Fl_Widget_Type @@ -94,6 +95,7 @@ class Fl_Flex_Proxy : public Fl_Flex { public: Fl_Flex_Proxy(int X,int Y,int W,int H) : Fl_Flex(X, Y, W, H) { Fl_Group::current(0); } void resize(int x, int y, int w, int h) FL_OVERRIDE; + void draw() FL_OVERRIDE; }; class Fl_Flex_Type : public Fl_Group_Type @@ -155,6 +157,7 @@ class Fl_Tabs_Proxy : public Fl_Tabs { public: Fl_Tabs_Proxy(int X,int Y,int W,int H) : Fl_Tabs(X,Y,W,H) {} void resize(int,int,int,int) FL_OVERRIDE; + void draw() FL_OVERRIDE; }; class Fl_Tabs_Type : public Fl_Group_Type @@ -215,6 +218,7 @@ class Fl_Wizard_Proxy : public Fl_Wizard { public: Fl_Wizard_Proxy(int X,int Y,int W,int H) : Fl_Wizard(X,Y,W,H) {} void resize(int,int,int,int) FL_OVERRIDE; + void draw() FL_OVERRIDE; }; extern const char wizard_type_name[]; -- cgit v1.2.3