IGUIListBox.h 4.5 KB

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