summaryrefslogtreecommitdiff
path: root/FL/Fl_Window.H
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2016-03-06 22:22:22 +0000
committerManolo Gouy <Manolo>2016-03-06 22:22:22 +0000
commit5ca73da7b3e14153bb9f3bd17a64ced4874cc43d (patch)
tree86760f82e66f0e719fcd659acbc3fb859cea466f /FL/Fl_Window.H
parentacfeee6d78fd8d6b5bfeb094a09241885af143fc (diff)
Driver-based Fl_Double_Window implementation - continued.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11304 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Fl_Window.H')
-rw-r--r--FL/Fl_Window.H6
1 files changed, 5 insertions, 1 deletions
diff --git a/FL/Fl_Window.H b/FL/Fl_Window.H
index 88b3a0737..9dd443e8e 100644
--- a/FL/Fl_Window.H
+++ b/FL/Fl_Window.H
@@ -37,7 +37,7 @@ class Fl_X;
class Fl_Window_Driver;
class Fl_RGB_Image;
class Fl_Shared_Image;
-
+class Fl_Double_Window;
/**
This widget produces an actual window. This can either be a main
@@ -637,6 +637,10 @@ public:
void capture_titlebar_and_borders(Fl_Shared_Image*& top, Fl_Shared_Image*& left, Fl_Shared_Image*& bottom, Fl_Shared_Image*& right);
Fl_Window_Driver *driver() { return i; }
+ /**
+ Return non-null if this is an Fl_Overlay_Window object.
+ */
+ virtual Fl_Double_Window *as_double_window() {return NULL; }
};
#endif