diff options
| author | Manolo Gouy <Manolo> | 2016-04-19 15:00:02 +0000 |
|---|---|---|
| committer | Manolo Gouy <Manolo> | 2016-04-19 15:00:02 +0000 |
| commit | 6600993adc787768217609c93dd0b3cab581864e (patch) | |
| tree | 2c1e1456e33b363db4225c3f00e6964d05bbaea3 /FL/Fl_Window_Driver.H | |
| parent | f9edd867538f44af3eaf56cb8673b05668b56428 (diff) | |
Transform Fl_X::make(Fl_Window*) for Mac platform into Fl_X *Fl_Cocoa_Window_Driver::makeWindow()
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11658 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Fl_Window_Driver.H')
| -rw-r--r-- | FL/Fl_Window_Driver.H | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/FL/Fl_Window_Driver.H b/FL/Fl_Window_Driver.H index 67fc2dfb3..08b396821 100644 --- a/FL/Fl_Window_Driver.H +++ b/FL/Fl_Window_Driver.H @@ -74,6 +74,7 @@ public: int shown() const { return pWindow->shown(); } /** returns the parent of the window. */ Fl_Group *parent() const { return pWindow->parent(); } + char show_iconic() { return pWindow->show_iconic_; } // --- accessors to private window data int minw(); @@ -93,6 +94,8 @@ public: void x(int X); void y(int Y); void current(Fl_Window *c); + void show_iconic(char c) { pWindow->show_iconic_ = c; } + void i(Fl_X *x) { pWindow->i = x; } /** for an Fl_Overlay_Window, returns the value of its overlay_ member variable */ Fl_Window *overlay() { return pWindow->as_overlay_window() ? pWindow->as_overlay_window()->overlay_ : NULL; |
