Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/ceguilua/ceguilua-0.5.0/package/elements/Listbox.pkg @ 2710

Last change on this file since 2710 was 2710, checked in by rgrieder, 15 years ago

Merged buildsystem3 containing buildsystem2 containing Adi's buildsystem branch back to the trunk.
Please update the media directory if you were not using buildsystem3 before.

  • Property svn:eol-style set to native
File size: 1.6 KB
Line 
1/***********************************************************************
2        Listbox
3***********************************************************************/
4class Listbox : public Window
5{
6        unsigned long getItemCount() const;
7        unsigned long getSelectedCount() const;
8        ListboxItem* getFirstSelectedItem() const;
9        ListboxItem* getNextSelected(const ListboxItem* start_item) const;
10        ListboxItem* getListboxItemFromIndex(unsigned long index) const;
11        unsigned long getItemIndex(const ListboxItem* item) const;
12        ListboxItem* findItemWithText(string text, const ListboxItem* start_item);
13        bool isSortEnabled() const;
14        bool isMultiselectEnabled() const;
15        bool isItemSelected(unsigned long index) const;
16        bool isListboxItemInList(const ListboxItem* item) const;
17        bool isVertScrollbarAlwaysShown() const;
18        bool isHorzScrollbarAlwaysShown() const;
19
20        void resetList(void);
21        void addItem(ListboxItem* item);
22        void insertItem(ListboxItem* item, const ListboxItem* position);
23        void removeItem(const ListboxItem* item);
24        void clearAllSelections(void);
25        void setSortingEnabled(bool setting);
26        void setMultiselectEnabled(bool setting);
27        void setShowVertScrollbar(bool setting);
28        void setShowHorzScrollbar(bool setting);
29        void setItemSelectState(ListboxItem* item, bool state);
30        void setItemSelectState(unsigned long item_index, bool state);
31        void handleUpdatedItemData(void);
32        void ensureItemIsVisible(unsigned long item_index);
33        void ensureItemIsVisible(const ListboxItem* item);
34       
35        Rect getListRenderArea() const;
36        Scrollbar* getVertScrollbar() const;
37        Scrollbar* getHorzScrollbar() const;
38        float getWidestItemWidth() const;
39        float getTotalItemsHeight() const;
40};
Note: See TracBrowser for help on using the repository browser.