diff options
Diffstat (limited to 'FL')
| -rw-r--r-- | FL/Fl.H | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -20,7 +20,9 @@ // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 // USA. // -// Please report all bugs and problems to "fltk-bugs@fltk.org". +// Please report all bugs and problems on the following page: +// +// http://www.fltk.org/str.php // #ifndef Fl_H @@ -199,6 +201,14 @@ public: static int w(); static int h(); + // multi-head support: + static int screen_count(); + static void screen_xywh(int &x, int &y, int &w, int &h) { + screen_xywh(x, y, w, h, e_x_root, e_y_root); + } + static void screen_xywh(int &x, int &y, int &w, int &h, int mx, int my); + static void screen_xywh(int &x, int &y, int &w, int &h, int n); + // color map: static void set_color(Fl_Color, uchar, uchar, uchar); static void set_color(Fl_Color, unsigned); |
