From 7da5a27b404078ecefcb90f2374e2e2e09ad9e47 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Mon, 8 Aug 2005 00:00:41 +0000 Subject: Add documentation for screen_count() and screen_xywh() (STR #931) git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4471 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- documentation/Fl.html | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'documentation') diff --git a/documentation/Fl.html b/documentation/Fl.html index 96791f3d3..7a25de4db 100644 --- a/documentation/Fl.html +++ b/documentation/Fl.html @@ -115,6 +115,8 @@ state information and global methods for the current application.

  • repeat_timeout
  • run
  • scheme
  • +
  • screen_count
  • +
  • screen_xywh
  • selection
  • selection_owner
  • set_abort
  • @@ -1057,6 +1059,21 @@ and "plastic" are recognized, and NULL will use the scheme defined in the FLTK_SCHEME environment variable or the scheme resource under X11. +

    int screen_count();

    + +

    Gets the number of available screens.

    + +

    void screen_xywh(int &x, int &y, int &w, int &h);
    +void screen_xywh(int &x, int &y, int &w, int &h, int mx, int my);
    +void screen_xywh(int &x, int &y, int &w, int &h, int n);

    + +

    Gets the bounding box of a screen. The first form gets the +bounding box for the screen the mouse pointer is in. The second +form gets the bounding box for the screen that contains the +specified coordinates. The last form gets the bounding box for +the numbered screen, where n is a number from 0 to the +number of screens less 1.

    +

    void selection(Fl_Widget &owner, const char* stuff, int len);

    Changes the current selection. The block of text is -- cgit v1.2.3