From 497afccb07164373e0de6639e754d7d691f1926f Mon Sep 17 00:00:00 2001 From: Fabien Costantini Date: Tue, 14 Oct 2008 22:12:25 +0000 Subject: Doxygen pdf man: First version added in documentation/fltk.pdf, old doc removed, images, dox files moved to a new src directory. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6431 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- documentation/Fl_Check_Browser.html | 104 ------------------------------------ 1 file changed, 104 deletions(-) delete mode 100644 documentation/Fl_Check_Browser.html (limited to 'documentation/Fl_Check_Browser.html') diff --git a/documentation/Fl_Check_Browser.html b/documentation/Fl_Check_Browser.html deleted file mode 100644 index df14ee0d8..000000000 --- a/documentation/Fl_Check_Browser.html +++ /dev/null @@ -1,104 +0,0 @@ - - - Fl_Check_Browser - - - -

class Fl_Check_Browser

-
-

Class Hierarchy

- -

Include Files

- -

Description

- -The Fl_Check_Browser widget displays a scrolling list of text -lines that may be selected and/or checked by the user. - -

Methods

-
- - -
- - - - - -
-
- -

Fl_Check_Browser::Fl_Check_Browser(int, int, int, int, const char * = 0)

-The constructor makes an empty browser. - -

int Fl_Check_Browser::add(const char *)
-int Fl_Check_Browser::add(const char *, int)

-Add a new unchecked line to the end of the browser. The text is copied -using the strdup() function. It may also be NULL to make -a blank line. The second form can set the item checked. - -

void Fl_Check_Browser::check_all()

-Sets all the items checked. - -

void Fl_Check_Browser::check_none()

-Sets all the items unchecked. - -

int Fl_Check_Browser::checked(int item) const
-void Fl_Check_Browser::checked(int item, int b)

-The first form gets the current status of item item. The second form -sets the check status of item item to b. - -

void Fl_Check_Browser::clear()

-Remove every item from the browser. - -

int Fl_Check_Browser::nchecked() const

-Returns how many items are currently checked. - -

int Fl_Check_Browser::nitems() const

-Returns how many lines are in the browser. The last line number is equal to -this. - -

int Fl_Check_Browser::remove(int n)

-Remove line n and make the browser one line shorter. Returns the -number of lines left in the browser. - -

void Fl_Check_Browser::set_checked(int item)

-Equivalent to Fl_Check_Browser::checked(item, 1). - -

char *Fl_Check_Browser::text(int item) const

-Return a pointer to an internal buffer holding item item's text. - -

int Fl_Check_Browser::value() const

-Returns the index of the currently selected item. - - - -- cgit v1.2.3