summaryrefslogtreecommitdiff
path: root/FL
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2018-02-20 09:08:38 +0000
committerManolo Gouy <Manolo>2018-02-20 09:08:38 +0000
commit06b925964d7f2c493415670d413dd682920cf7ad (patch)
tree8fe45bffea37766a4a306690c534f8dcb021a784 /FL
parent78183fb45b61cf744fdc1950ec1f84cb921d1d0e (diff)
Remove Fl::run_also_windowless() and FL::wait_also_windowless() from planned public FLTK 1.4 API.
These were introduced at r12647, that is, during development of the 1.4 API. These functions provided windowless support only on the MacOS platform, where this can be obtained without those functions. Windowless support on other platforms would require changing the event loop. There's no evidence from STR's there's a demand for windowless mode on other platforms. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@12680 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL')
-rw-r--r--FL/Fl.H2
-rw-r--r--FL/Fl_Screen_Driver.H3
2 files changed, 0 insertions, 5 deletions
diff --git a/FL/Fl.H b/FL/Fl.H
index 07d87ec7d..17bdd0aa1 100644
--- a/FL/Fl.H
+++ b/FL/Fl.H
@@ -414,8 +414,6 @@ public:
static int check();
static int ready();
static int run();
- static int run_also_windowless();
- static int wait_also_windowless(double delay = 1e20);
/** Returns non-zero when a request for program termination was received and accepted.
On the MacOS platform, the "Quit xxx" item of the application menu is such a request,
that is considered accepted when all windows are closed. On other platforms, this function
diff --git a/FL/Fl_Screen_Driver.H b/FL/Fl_Screen_Driver.H
index 564b77754..de40ce47b 100644
--- a/FL/Fl_Screen_Driver.H
+++ b/FL/Fl_Screen_Driver.H
@@ -178,9 +178,6 @@ public:
/* Number of pixels per drawing unit for the display.
The default implementation may be enough. */
virtual float retina_factor() { return 1; }
- // The default implementation of the next 2 functions may be enough.
- virtual int run_also_windowless();
- virtual int wait_also_windowless(double delay);
};