Although this was not strictly necessary I decided to implement the proposed patch, but in a slightly different way. This adds a static public method for internal use only but it wouldn't do any harm if a user called it.
28 lines
683 B
C++
28 lines
683 B
C++
//
|
|
// Window minification code for the Fast Light Tool Kit (FLTK).
|
|
//
|
|
// Copyright 1998-2023 by Bill Spitzak and others.
|
|
//
|
|
// This library is free software. Distribution and use rights are outlined in
|
|
// the file "COPYING" which should have been included with this file. If this
|
|
// file is missing or damaged, see the license at:
|
|
//
|
|
// https://www.fltk.org/COPYING.php
|
|
//
|
|
// Please see the following page on how to report bugs and issues:
|
|
//
|
|
// https://www.fltk.org/bugs.php
|
|
//
|
|
|
|
#include <FL/Fl_Window.H>
|
|
#include "Fl_Window_Driver.H"
|
|
|
|
void Fl_Window::iconize() {
|
|
if (!shown()) {
|
|
show_next_window_iconic(1);
|
|
show();
|
|
} else {
|
|
pWindowDriver->iconize();
|
|
}
|
|
}
|