From c9bb66d595927bd14871c10b216ed05ffb5e3b12 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Fri, 27 Jul 2012 02:32:32 +0300 Subject: Add support for images in npc menu. --- src/gui/widgets/extendedlistbox.h | 50 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 src/gui/widgets/extendedlistbox.h (limited to 'src/gui/widgets/extendedlistbox.h') diff --git a/src/gui/widgets/extendedlistbox.h b/src/gui/widgets/extendedlistbox.h new file mode 100644 index 000000000..c6f3278fc --- /dev/null +++ b/src/gui/widgets/extendedlistbox.h @@ -0,0 +1,50 @@ +/* + * The ManaPlus Client + * Copyright (C) 2012 The ManaPlus Developers + * + * This file is part of The ManaPlus Client. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef EXTENDEDLISTBOX_H +#define EXTENDEDLISTBOX_H + +#include "gui/widgets/listbox.h" + +class ExtendedListBox : public ListBox +{ + public: + /** + * Constructor. + */ + ExtendedListBox(gcn::ListModel *listModel); + + ~ExtendedListBox(); + + /** + * Draws the list box. + */ + void draw(gcn::Graphics *graphics); + + unsigned int getRowHeight() const; + + void setRowHeight(unsigned int n) + { mRowHeight = n; } + + protected: + unsigned int mRowHeight; +}; + +#endif -- cgit v1.2.3-60-g2f50