IGUIListBox.h 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. // Copyright (C) 2002-2012 Nikolaus Gebhardt
  2. // This file is part of the "Irrlicht Engine".
  3. // For conditions of distribution and use, see copyright notice in irrlicht.h
  4. #ifndef __I_GUI_LIST_BOX_H_INCLUDED__
  5. #define __I_GUI_LIST_BOX_H_INCLUDED__
  6. #include "IGUIElement.h"
  7. #include "SColor.h"
  8. namespace irr
  9. {
  10. namespace gui
  11. {
  12. class IGUISpriteBank;
  13. class IGUIScrollBar;
  14. //! Enumeration for listbox colors
  15. enum EGUI_LISTBOX_COLOR
  16. {
  17. //! Color of text
  18. EGUI_LBC_TEXT=0,
  19. //! Color of selected text
  20. EGUI_LBC_TEXT_HIGHLIGHT,
  21. //! Color of icon
  22. EGUI_LBC_ICON,
  23. //! Color of selected icon
  24. EGUI_LBC_ICON_HIGHLIGHT,
  25. //! Not used, just counts the number of available colors
  26. EGUI_LBC_COUNT
  27. };
  28. //! Default list box GUI element.
  29. /** \par This element can create the following events of type EGUI_EVENT_TYPE:
  30. \li EGET_LISTBOX_CHANGED
  31. \li EGET_LISTBOX_SELECTED_AGAIN
  32. */
  33. class IGUIListBox : public IGUIElement
  34. {
  35. public:
  36. //! constructor
  37. IGUIListBox(IGUIEnvironment* environment, IGUIElement* parent, s32 id, core::rect<s32> rectangle)
  38. : IGUIElement(EGUIET_LIST_BOX, environment, parent, id, rectangle) {}
  39. //! returns amount of list items
  40. virtual u32 getItemCount() const = 0;
  41. //! returns string of a list item. the may id be a value from 0 to itemCount-1
  42. virtual const wchar_t* getListItem(u32 id) const = 0;
  43. //! adds an list item, returns id of item
  44. virtual u32 addItem(const wchar_t* text) = 0;
  45. //! adds an list item with an icon
  46. /** \param text Text of list entry
  47. \param icon Sprite index of the Icon within the current sprite bank. Set it to -1 if you want no icon
  48. \return The id of the new created item */
  49. virtual u32 addItem(const wchar_t* text, s32 icon) = 0;
  50. //! Removes an item from the list
  51. virtual void removeItem(u32 index) = 0;
  52. //! get the the id of the item at the given absolute coordinates
  53. /** \return The id of the list item or -1 when no item is at those coordinates*/
  54. virtual s32 getItemAt(s32 xpos, s32 ypos) const = 0;
  55. //! Returns the icon of an item
  56. virtual s32 getIcon(u32 index) const = 0;
  57. //! Sets the sprite bank which should be used to draw list icons.
  58. /** This font is set to the sprite bank of the built-in-font by
  59. default. A sprite can be displayed in front of every list item.
  60. An icon is an index within the icon sprite bank. Several
  61. default icons are available in the skin through getIcon. */
  62. virtual void setSpriteBank(IGUISpriteBank* bank) = 0;
  63. //! clears the list, deletes all items in the listbox
  64. virtual void clear() = 0;
  65. //! returns id of selected item. returns -1 if no item is selected.
  66. virtual s32 getSelected() const = 0;
  67. //! sets the selected item. Set this to -1 if no item should be selected
  68. virtual void setSelected(s32 index) = 0;
  69. //! sets the selected item. Set this to 0 if no item should be selected
  70. virtual void setSelected(const wchar_t *item) = 0;
  71. //! set whether the listbox should scroll to newly selected items
  72. virtual void setAutoScrollEnabled(bool scroll) = 0;
  73. //! returns true if automatic scrolling is enabled, false if not.
  74. virtual bool isAutoScrollEnabled() const = 0;
  75. //! set all item colors at given index to color
  76. virtual void setItemOverrideColor(u32 index, video::SColor color) = 0;
  77. //! set all item colors of specified type at given index to color
  78. virtual void setItemOverrideColor(u32 index, EGUI_LISTBOX_COLOR colorType, video::SColor color) = 0;
  79. //! clear all item colors at index
  80. virtual void clearItemOverrideColor(u32 index) = 0;
  81. //! clear item color at index for given colortype
  82. virtual void clearItemOverrideColor(u32 index, EGUI_LISTBOX_COLOR colorType) = 0;
  83. //! has the item at index its color overwritten?
  84. virtual bool hasItemOverrideColor(u32 index, EGUI_LISTBOX_COLOR colorType) const = 0;
  85. //! return the overwrite color at given item index.
  86. virtual video::SColor getItemOverrideColor(u32 index, EGUI_LISTBOX_COLOR colorType) const = 0;
  87. //! return the default color which is used for the given colorType
  88. virtual video::SColor getItemDefaultColor(EGUI_LISTBOX_COLOR colorType) const = 0;
  89. //! set the item at the given index
  90. virtual void setItem(u32 index, const wchar_t* text, s32 icon) = 0;
  91. //! Insert the item at the given index
  92. /** \return The index on success or -1 on failure. */
  93. virtual s32 insertItem(u32 index, const wchar_t* text, s32 icon) = 0;
  94. //! Swap the items at the given indices
  95. virtual void swapItems(u32 index1, u32 index2) = 0;
  96. //! set global itemHeight
  97. virtual void setItemHeight( s32 height ) = 0;
  98. //! Sets whether to draw the background
  99. virtual void setDrawBackground(bool draw) = 0;
  100. //! Access the vertical scrollbar
  101. virtual IGUIScrollBar* getVerticalScrollBar() const = 0;
  102. };
  103. } // end namespace gui
  104. } // end namespace irr
  105. #endif