summaryrefslogtreecommitdiff
path: root/src/gui/buttontext.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-05-17 20:07:42 +0300
committerAndrei Karas <akaras@inbox.ru>2014-05-17 20:07:42 +0300
commitb59b62516e22d599e0532e6e0f777769ccaadf4a (patch)
treeca1b3a04c2363ed4ec3fcd96c8a085a22ef0bb63 /src/gui/buttontext.h
parentad6d93bed95046d983c005fce409e8e5328ce46f (diff)
downloadplus-b59b62516e22d599e0532e6e0f777769ccaadf4a.tar.gz
plus-b59b62516e22d599e0532e6e0f777769ccaadf4a.tar.bz2
plus-b59b62516e22d599e0532e6e0f777769ccaadf4a.tar.xz
plus-b59b62516e22d599e0532e6e0f777769ccaadf4a.zip
Move buttontext into separate file.
Diffstat (limited to 'src/gui/buttontext.h')
-rw-r--r--src/gui/buttontext.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/gui/buttontext.h b/src/gui/buttontext.h
new file mode 100644
index 000000000..68196d447
--- /dev/null
+++ b/src/gui/buttontext.h
@@ -0,0 +1,42 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2011-2014 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_BUTTONTEXT_H
+#define GUI_BUTTONTEXT_H
+
+#include "localconsts.h"
+
+#include <string>
+
+struct ButtonText final
+{
+ ButtonText(const std::string &text0, const int key0) :
+ text(text0),
+ key(key0)
+ {
+ }
+
+ A_DELETE_COPY(ButtonText)
+
+ std::string text;
+ int key;
+};
+
+#endif // GUI_BUTTONTEXT_H