summaryrefslogtreecommitdiff
path: root/src/gui/widgets/colorpage.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-08-06 14:02:19 +0300
committerAndrei Karas <akaras@inbox.ru>2013-08-06 14:12:59 +0300
commit73e7be1617217396c5f1eead52af87bc7fef2357 (patch)
treeb985dfd5f1173a6c7e1c741c796a4a61de0cefa8 /src/gui/widgets/colorpage.h
parent5ffbb0ca66337bd13a21a1875cc5bec5cc9a724d (diff)
downloadplus-73e7be1617217396c5f1eead52af87bc7fef2357.tar.gz
plus-73e7be1617217396c5f1eead52af87bc7fef2357.tar.bz2
plus-73e7be1617217396c5f1eead52af87bc7fef2357.tar.xz
plus-73e7be1617217396c5f1eead52af87bc7fef2357.zip
add colors tab into chat emotes window.
Diffstat (limited to 'src/gui/widgets/colorpage.h')
-rw-r--r--src/gui/widgets/colorpage.h54
1 files changed, 54 insertions, 0 deletions
diff --git a/src/gui/widgets/colorpage.h b/src/gui/widgets/colorpage.h
new file mode 100644
index 000000000..c86ee5a07
--- /dev/null
+++ b/src/gui/widgets/colorpage.h
@@ -0,0 +1,54 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2013 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 <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef GUI_WIDGETS_COLORPAGE_H
+#define GUI_WIDGETS_COLORPAGE_H
+
+#include "gui/widgets/widget2.h"
+
+#include "gui/widgets/listbox.h"
+
+#include <guichan/widget.hpp>
+
+#include "localconsts.h"
+
+class ColorPage final : public ListBox
+{
+ public:
+ ColorPage(const Widget2 *const widget,
+ gcn::ListModel *const listModel,
+ const std::string &skin);
+
+ A_DELETE_COPY(ColorPage)
+
+ ~ColorPage();
+
+ void draw(gcn::Graphics *graphics) override;
+
+ void resetAction();
+
+ void adjustSize() override;
+
+ private:
+ int mItemPadding;
+ unsigned int mRowHeight;
+};
+
+#endif // GUI_WIDGETS_COLORPAGE_H