diff options
Diffstat (limited to 'gui/PopUpWidget.h')
-rw-r--r-- | gui/PopUpWidget.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gui/PopUpWidget.h b/gui/PopUpWidget.h index bd1d3b3918..f2c1728b52 100644 --- a/gui/PopUpWidget.h +++ b/gui/PopUpWidget.h @@ -59,13 +59,14 @@ protected: int _rightPadding; public: - PopUpWidget(GuiObject *boss, const String &name); + PopUpWidget(GuiObject *boss, const String &name, const char *tooltip = 0); void handleMouseDown(int x, int y, int button, int clickCount); void handleMouseWheel(int x, int y, int direction); void appendEntry(const String &entry, uint32 tag = (uint32)-1); void clearEntries(); + int numEntries() { return _entries.size(); } /** Select the entry at the given index. */ void setSelected(int item); |