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
This commit is contained in:
parent
2c8dce49b1
commit
7da5a27b40
2
CHANGES
2
CHANGES
@ -1,7 +1,7 @@
|
||||
CHANGES IN FLTK 1.1.7
|
||||
|
||||
- Documentation fixes (STR #648, STR #692, STR #730, STR
|
||||
#744, STR #745, STR #942)
|
||||
#744, STR #745, STR #942, STR #931)
|
||||
- Fixed OSX compilation problems with non-HFS filesystems
|
||||
(STR #972)
|
||||
- Problems with CMake on MinGW have been solved, thanks
|
||||
|
||||
@ -115,6 +115,8 @@ state information and global methods for the current application.</P>
|
||||
<LI><A HREF="#Fl.repeat_timeout">repeat_timeout</A></LI>
|
||||
<LI><A HREF="#Fl.run">run</A></LI>
|
||||
<LI><A HREF="#Fl.scheme">scheme</A></LI>
|
||||
<LI><A HREF="#Fl.screen_count">screen_count</A></LI>
|
||||
<LI><A HREF="#Fl.screen_xywh">screen_xywh</A></LI>
|
||||
<LI><A HREF="#Fl.selection">selection</A></LI>
|
||||
<LI><A HREF="#Fl.selection_owner">selection_owner</A></LI>
|
||||
<LI><A HREF="#Fl.set_abort">set_abort</A></LI>
|
||||
@ -1057,6 +1059,21 @@ and "plastic" are recognized, and <TT>NULL</TT> will use the
|
||||
scheme defined in the <TT>FLTK_SCHEME</TT> environment variable
|
||||
or the <TT>scheme</TT> resource under X11.
|
||||
|
||||
<H4><A NAME="Fl.screen_count">int screen_count();</A></H4>
|
||||
|
||||
<P>Gets the number of available screens.</P>
|
||||
|
||||
<H4><A NAME="Fl.screen_xywh">void screen_xywh(int &x, int &y, int &w, int &h);<BR>
|
||||
void screen_xywh(int &x, int &y, int &w, int &h, int mx, int my);<BR>
|
||||
void screen_xywh(int &x, int &y, int &w, int &h, int n);</A></H4>
|
||||
|
||||
<P>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 <tt>n</tt> is a number from 0 to the
|
||||
number of screens less 1.</P>
|
||||
|
||||
<H4><A NAME="Fl.selection">void selection(Fl_Widget &owner, const char* stuff, int len);</A></H4>
|
||||
|
||||
<P>Changes the current selection. The block of text is
|
||||
|
||||
Loading…
Reference in New Issue
Block a user