From a965dff1759c1d14d7afd6aa8d05abc106a867f9 Mon Sep 17 00:00:00 2001 From: Matthias Melcher Date: Sun, 7 Oct 2007 18:39:23 +0000 Subject: STR #1742: Updated documentation to reflect the true nature of "selection()" and "value()" for Fl_Multi_Browser which can be quite surprisin for unsuspecting customers. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@5952 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- documentation/Fl_Browser_.html | 7 +++++-- documentation/Fl_Multi_Browser.html | 36 +++++++++++++++++++++++++++--------- 2 files changed, 32 insertions(+), 11 deletions(-) (limited to 'documentation') diff --git a/documentation/Fl_Browser_.html b/documentation/Fl_Browser_.html index 99ff5b479..2183d61c7 100644 --- a/documentation/Fl_Browser_.html +++ b/documentation/Fl_Browser_.html @@ -376,8 +376,11 @@ callback function for the widget.

void *Fl_Browser_::selection() const

Returns the item currently selected, or NULL if there is no selection. -For multiple selection browsers this call returns the last item that was -selected. + +

For multiple selection browsers this call returns the currently focused item, +even if it is not selected. To find all selected items, call + +Fl_Multi_Browser::selected() for every item in question.

Fl_Color Fl_Browser_::textcolor() const diff --git a/documentation/Fl_Multi_Browser.html b/documentation/Fl_Multi_Browser.html index 071f004da..5140bf67e 100644 --- a/documentation/Fl_Multi_Browser.html +++ b/documentation/Fl_Multi_Browser.html @@ -38,23 +38,41 @@ methods to add and remove lines from the browser.

  • select
  • value
  • +

    Fl_Multi_Browser::Fl_Multi_Browser(int x, int y, int w, int h, const char *label = 0)

    - Creates a new Fl_Multi_Browser widget using the given + +Creates a new Fl_Multi_Browser widget using the given position, size, and label string. The default boxtype is FL_DOWN_BOX . + +

    virtual Fl_Multi_Browser::~Fl_Multi_Browser()

    - The destructor also deletes all the items in the list. + +The destructor also deletes all the items in the list. + +

    int Fl_Browser::deselect()

    - Deselects all lines. + +Deselects all lines. + +

    int Fl_Browser::select(int,int=1)
    int Fl_Browser::selected(int) const

    - Selects one or more lines or gets the current selection state of a + +Selects one or more lines or gets the current selection state of a line. -

    int Fl_Browser::value() const -
    void Fl_Browser::value(int)

    - Selects a single line or gets the last toggled line. This returns zero -if no line has been toggled, so be aware that this can happen in a -callback. + + +

    void Fl_Browser::value(int) +
    int Fl_Browser::value() const

    + +The first version of this call selects a single line. The second version returns +the currently focused item, even if it is not selected. To find all +selected items, call + +Fl_Multi_Browser::selected() for every item in question. + + -- cgit v1.2.3