From 21c0134931ef22d6645fc182d7812776e14e369d Mon Sep 17 00:00:00 2001 From: ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> Date: Sat, 23 Feb 2019 10:21:27 +0100 Subject: New member function const Fl_Image* Fl_Window::shape() replaces int Fl_Window::is_shaped() The new function allows to get the window's shaping image and delete it after use, if appropriate. --- src/Fl_Window_Driver.H | 1 + 1 file changed, 1 insertion(+) (limited to 'src/Fl_Window_Driver.H') diff --git a/src/Fl_Window_Driver.H b/src/Fl_Window_Driver.H index d1fba2e8d..8bf8a89a8 100644 --- a/src/Fl_Window_Driver.H +++ b/src/Fl_Window_Driver.H @@ -127,6 +127,7 @@ public: // --- window data virtual int decorated_w() { return w(); } // default, should be overidden by driver virtual int decorated_h() { return h(); } + virtual const Fl_Image* shape() { return NULL; } // --- window management virtual void take_focus(); -- cgit v1.2.3