1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339
|
/*
* This source file is part of MyGUI. For the latest info, see http://mygui.info/
* Distributed under the MIT License
* (See accompanying file COPYING.MIT or copy at http://opensource.org/licenses/MIT)
*/
#ifndef MYGUI_LIST_BOX_H_
#define MYGUI_LIST_BOX_H_
#include "MyGUI_Prerequest.h"
#include "MyGUI_Button.h"
#include "MyGUI_Any.h"
#include "MyGUI_EventPair.h"
#include "MyGUI_IItem.h"
#include "MyGUI_IItemContainer.h"
#include "MyGUI_IBItemInfo.h"
namespace MyGUI
{
typedef delegates::CMultiDelegate2<ListBox*, size_t> EventHandle_ListPtrSizeT;
typedef delegates::CMultiDelegate2<ListBox*, const IBNotifyItemData&> EventHandle_ListBoxPtrCIBNotifyCellDataRef;
/** \brief @wpage{ListBox}
ListBox widget description should be here.
*/
class MYGUI_EXPORT ListBox :
public Widget,
public IItemContainer,
public MemberObsolete<ListBox>
{
MYGUI_RTTI_DERIVED( ListBox )
public:
ListBox();
//------------------------------------------------------------------------------//
// манипуляции айтемами
/** @name Item Methods.
Methods used to manipulate items.
*/
//@{
//! Get number of items
size_t getItemCount() const;
//! Insert an item into a array at a specified position
void insertItemAt(size_t _index, const UString& _name, Any _data = Any::Null);
//! Add an item to the end of a array
void addItem(const UString& _name, Any _data = Any::Null);
//! Remove item at a specified position
void removeItemAt(size_t _index);
//! Remove all items
void removeAllItems();
//! Swap items at a specified positions
void swapItemsAt(size_t _index1, size_t _index2);
//! Search item, returns the position of the first occurrence in array or ITEM_NONE if item not found
size_t findItemIndexWith(const UString& _name);
//@}
//------------------------------------------------------------------------------//
// манипуляции выделениями
/** @name Item Selection Methods
Methods used to manipulate item selection.
*/
//@{
/** Get index of selected item (ITEM_NONE if none selected) */
size_t getIndexSelected() const;
/** Select specified _index */
void setIndexSelected(size_t _index);
/** Clear item selection */
void clearIndexSelected();
//@}
//------------------------------------------------------------------------------//
// манипуляции данными
/** @name Item Data Methods
Methods used to manipulate item user data.
*/
//@{
//! Replace an item data at a specified position
void setItemDataAt(size_t _index, Any _data);
//! Clear an item data at a specified position
void clearItemDataAt(size_t _index);
//! Get item data from specified position
template <typename ValueType>
ValueType* getItemDataAt(size_t _index, bool _throw = true)
{
MYGUI_ASSERT_RANGE(_index, mItemsInfo.size(), "ListBox::getItemDataAt");
return mItemsInfo[_index].second.castType<ValueType>(_throw);
}
//@}
//------------------------------------------------------------------------------//
// манипуляции отображением
//! Replace an item name at a specified position
void setItemNameAt(size_t _index, const UString& _name);
//! Get item name from specified position
const UString& getItemNameAt(size_t _index);
//------------------------------------------------------------------------------//
// манипуляции выдимостью
/** @name Item Visibility Methods
Methods used to determine and manipulate item visibility.
*/
//@{
//! Move all elements so specified becomes visible
void beginToItemAt(size_t _index);
//! Move all elements so first becomes visible
void beginToItemFirst();
//! Move all elements so last becomes visible
void beginToItemLast();
//! Move all elements so selected becomes visible
void beginToItemSelected();
//------------------------------------------------------------------------------//
// видим ли мы элемент, полностью или нет
/** Return true if item visible
@param
_index of item
@param
_fill
false: function return true when whole item is visible
true: function return true when at least part of item is visible
*/
bool isItemVisibleAt(size_t _index, bool _fill = true);
//! Same as ListBox::isItemVisibleAt for selected item
bool isItemSelectedVisible(bool _fill = true);
//! Set scroll visible when it needed
void setScrollVisible(bool _visible);
//! Set scroll position
void setScrollPosition(size_t _position);
//@}
//------------------------------------------------------------------------------------//
/** @name Widget Methods
Methods used to manipulate the widget's settings.
*/
//@{
//! @copydoc Widget::setPosition(const IntPoint& _value)
virtual void setPosition(const IntPoint& _value);
//! @copydoc Widget::setSize(const IntSize& _value)
virtual void setSize(const IntSize& _value);
//! @copydoc Widget::setCoord(const IntCoord& _value)
virtual void setCoord(const IntCoord& _value);
/** @copydoc Widget::setPosition(int _left, int _top) */
void setPosition(int _left, int _top);
/** @copydoc Widget::setSize(int _width, int _height) */
void setSize(int _width, int _height);
/** @copydoc Widget::setCoord(int _left, int _top, int _width, int _height) */
void setCoord(int _left, int _top, int _width, int _height);
//@}
// возвращает максимальную высоту вмещающую все строки и родительский бордюр
//! Return optimal height to fit all items in ListBox
int getOptimalHeight();
/** Enable "Activate on click" mode that requires a full mouse click (press and release)
to activate an item. By default, items are activated on mouse press.
*/
void setActivateOnClick(bool activateOnClick);
/** Get item Widget pointer by item index if it is visible
@note returned widget can be deleted, so this pointer
is valid only at time when you got it and can be invalid
next frame
*/
Widget* getWidgetByIndex(size_t _index);
/*events:*/
/** Event : Enter pressed or double click.\n
signature : void method(MyGUI::ListBox* _sender, size_t _index)\n
@param _sender widget that called this event
@param _index of selected item
*/
EventPair<EventHandle_WidgetSizeT, EventHandle_ListPtrSizeT> eventListSelectAccept;
/** Event : Selected item position changed.\n
signature : void method(MyGUI::ListBox* _sender, size_t _index)\n
@param _sender widget that called this event
@param _index of new item
*/
EventPair<EventHandle_WidgetSizeT, EventHandle_ListPtrSizeT> eventListChangePosition;
/** Event : Item was selected by mouse.\n
signature : void method(MyGUI::ListBox* _sender, size_t _index)\n
@param _sender widget that called this event
@param _index index of selected item
*/
EventPair<EventHandle_WidgetSizeT, EventHandle_ListPtrSizeT> eventListMouseItemActivate;
/** Event : Mouse is over item.\n
signature : void method(MyGUI::ListBox* _sender, size_t _index)\n
@param _sender widget that called this event
@param _index of focused item
*/
EventPair<EventHandle_WidgetSizeT, EventHandle_ListPtrSizeT> eventListMouseItemFocus;
/** Event : Position of scroll changed.\n
signature : void method(MyGUI::ListBox* _sender, size_t _position)\n
@param _sender widget that called this event
@param _position of scroll
*/
EventPair<EventHandle_WidgetSizeT, EventHandle_ListPtrSizeT> eventListChangeScroll;
/** Event : Notify about event in item widget.\n
signature : void method(MyGUI::ListBox* _sender, const MyGUI::IBNotifyItemData& _info)
@param _sender widget that called this event
@param _info info about item notify
*/
EventHandle_ListBoxPtrCIBNotifyCellDataRef eventNotifyItem;
/*internal:*/
/** \internal @name Internal
Internal use methods.
*/
//@{
// дебажная проверка на правильность выравнивания списка
void _checkAlign();
// вспомогательные методы для составных списков
void _setItemFocus(size_t _position, bool _focus);
void _sendEventChangeScroll(size_t _position);
// IItemContainer impl
virtual size_t _getItemCount();
virtual void _addItem(const MyGUI::UString& _name);
virtual void _removeItemAt(size_t _index);
virtual void _setItemNameAt(size_t _index, const UString& _name);
virtual const UString& _getItemNameAt(size_t _index);
virtual void _resetContainer(bool _update);
//@}
protected:
virtual void initialiseOverride();
virtual void shutdownOverride();
void onMouseWheel(int _rel);
void onKeyButtonPressed(KeyCode _key, Char _char);
void onKeyButtonReleased(KeyCode _key);
void notifyScrollChangePosition(ScrollBar* _sender, size_t _rel);
void notifyMousePressed(Widget* _sender, int _left, int _top, MouseButton _id);
void notifyMouseClick(Widget* _sender);
void notifyMouseDoubleClick(Widget* _sender);
void notifyMouseWheel(Widget* _sender, int _rel);
void notifyMouseSetFocus(Widget* _sender, Widget* _old);
void notifyMouseLostFocus(Widget* _sender, Widget* _new);
void notifyKeyButtonPressed(Widget* _sender, KeyCode _key, Char _char);
void notifyKeyButtonReleased(Widget* _sender, KeyCode _key);
void notifyMouseButtonReleased(Widget* _sender, int _left, int _top, MouseButton _id);
void updateScroll();
void updateLine(bool _reset = false);
void _activateItem(Widget* _sender);
void _setScrollView(size_t _position);
// перерисовывает от индекса до низа
void _redrawItemRange(size_t _start = 0);
// перерисовывает индекс
void _redrawItem(size_t _index);
// ищет и выделяет елемент
void _selectIndex(size_t _index, bool _select);
// метод для запроса номера айтема и контейнера
virtual size_t _getItemIndex(Widget* _item);
virtual void setPropertyOverride(const std::string& _key, const std::string& _value);
private:
void _checkMapping(const std::string& _owner);
Widget* _getClientWidget();
size_t getIndexByWidget(Widget* _widget);
private:
std::string mSkinLine;
ScrollBar* mWidgetScroll;
// наши дети в строках
typedef std::vector<Button*> VectorButton;
VectorButton mWidgetLines;
bool mActivateOnClick; // Require a full mouse click rather than only mouse press to activate an item
int mHeightLine; // высота одной строки
int mTopIndex; // индекс самого верхнего элемента
int mOffsetTop; // текущее смещение
int mRangeIndex; // размерность скрола
size_t mLastRedrawLine; // последняя перерисованная линия
size_t mIndexSelect; // текущий выделенный элемент или ITEM_NONE
size_t mLineActive; // текущий виджет над которым мыша
typedef std::pair<UString, Any> PairItem;
typedef std::vector<PairItem> VectorItemInfo;
VectorItemInfo mItemsInfo;
// имеем ли мы фокус ввода
bool mNeedVisibleScroll;
IntSize mOldSize;
Widget* mClient;
};
} // namespace MyGUI
#endif // MYGUI_LIST_BOX_H_
|