mirror of
https://github.com/fltk/fltk.git
synced 2026-05-29 04:26:27 +08:00
Some Doxygen doc cleaning.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8355 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
+7
-9
@@ -640,13 +640,6 @@ Fl_Window* fl_find(Window xid) {
|
|||||||
Returns the first top-level window in the list of shown() windows. If
|
Returns the first top-level window in the list of shown() windows. If
|
||||||
a modal() window is shown this is the top-most modal window, otherwise
|
a modal() window is shown this is the top-most modal window, otherwise
|
||||||
it is the most recent window to get an event.
|
it is the most recent window to get an event.
|
||||||
|
|
||||||
The second form sets the window that is returned by
|
|
||||||
first_window. The window is removed from wherever it is in the
|
|
||||||
list and inserted at the top. This is not done if Fl::modal()
|
|
||||||
is on or if the window is not shown(). Because the first window
|
|
||||||
is used to set the "parent" of modal windows, this is often
|
|
||||||
useful.
|
|
||||||
*/
|
*/
|
||||||
Fl_Window* Fl::first_window() {
|
Fl_Window* Fl::first_window() {
|
||||||
Fl_X* i = Fl_X::first;
|
Fl_X* i = Fl_X::first;
|
||||||
@@ -663,8 +656,13 @@ Fl_Window* Fl::next_window(const Fl_Window* window) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
See Fl_Window* first_window()
|
Sets the window that is returned by first_window().
|
||||||
*/
|
The window is removed from wherever it is in the
|
||||||
|
list and inserted at the top. This is not done if Fl::modal()
|
||||||
|
is on or if the window is not shown(). Because the first window
|
||||||
|
is used to set the "parent" of modal windows, this is often
|
||||||
|
useful.
|
||||||
|
*/
|
||||||
void Fl::first_window(Fl_Window* window) {
|
void Fl::first_window(Fl_Window* window) {
|
||||||
if (!window || !window->shown()) return;
|
if (!window || !window->shown()) return;
|
||||||
fl_find( Fl_X::i(window)->xid );
|
fl_find( Fl_X::i(window)->xid );
|
||||||
|
|||||||
Reference in New Issue
Block a user