summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-02-23 12:19:52 +0300
committerAndrei Karas <akaras@inbox.ru>2014-02-23 12:19:52 +0300
commit0d6d3d8c02aa4979577bbcd932c875d6463046b4 (patch)
tree75fa59549f317dcf2c799c7b25d5662b16e7f467 /src
parentdf2ba2dd07a6358f9015af6a6549ef766f86a8fb (diff)
downloadplus-0d6d3d8c02aa4979577bbcd932c875d6463046b4.tar.gz
plus-0d6d3d8c02aa4979577bbcd932c875d6463046b4.tar.bz2
plus-0d6d3d8c02aa4979577bbcd932c875d6463046b4.tar.xz
plus-0d6d3d8c02aa4979577bbcd932c875d6463046b4.zip
Move targettypemodel into gui/model directory.
Diffstat (limited to 'src')
-rw-r--r--src/gui/models/targettypemodel.h58
-rw-r--r--src/gui/windows/textcommandeditor.cpp30
2 files changed, 59 insertions, 29 deletions
diff --git a/src/gui/models/targettypemodel.h b/src/gui/models/targettypemodel.h
new file mode 100644
index 000000000..d049585a5
--- /dev/null
+++ b/src/gui/models/targettypemodel.h
@@ -0,0 +1,58 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2009-2010 Andrei Karas
+ * 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_MODELS_TARGETTYPEMODEL_H
+#define GUI_MODELS_TARGETTYPEMODEL_H
+
+#include "gui/models/listmodel.h"
+
+#include "utils/gettext.h"
+
+const char *TARGET_TYPE_TEXT[3] =
+{
+ // TRANSLATORS: target type
+ N_("No Target"),
+ // TRANSLATORS: target type
+ N_("Allow Target"),
+ // TRANSLATORS: target type
+ N_("Need Target")
+};
+
+class TargetTypeModel final : public ListModel
+{
+ public:
+ ~TargetTypeModel()
+ { }
+
+ int getNumberOfElements() override final
+ {
+ return 3;
+ }
+
+ std::string getElementAt(int i) override final
+ {
+ if (i >= getNumberOfElements() || i < 0)
+ return "???";
+ return TARGET_TYPE_TEXT[i];
+ }
+};
+
+#endif // GUI_MODELS_TARGETTYPEMODEL_H
diff --git a/src/gui/windows/textcommandeditor.cpp b/src/gui/windows/textcommandeditor.cpp
index c1cd204ac..1a3094701 100644
--- a/src/gui/windows/textcommandeditor.cpp
+++ b/src/gui/windows/textcommandeditor.cpp
@@ -29,6 +29,7 @@
#include "gui/models/iconsmodel.h"
#include "gui/models/listmodel.h"
+#include "gui/models/targettypemodel.h"
#include "gui/widgets/button.h"
#include "gui/widgets/dropdown.h"
@@ -45,16 +46,6 @@
#include "debug.h"
-const char *TARGET_TYPE_TEXT[3] =
-{
- // TRANSLATORS: target type
- N_("No Target"),
- // TRANSLATORS: target type
- N_("Allow Target"),
- // TRANSLATORS: target type
- N_("Need Target"),
-};
-
const char *MAGIC_SCHOOL_TEXT[6] =
{
// TRANSLATORS: magic school
@@ -71,25 +62,6 @@ const char *MAGIC_SCHOOL_TEXT[6] =
N_("Astral Magic")
};
-class TargetTypeModel final : public ListModel
-{
-public:
- ~TargetTypeModel()
- { }
-
- int getNumberOfElements() override final
- {
- return 3;
- }
-
- std::string getElementAt(int i) override final
- {
- if (i >= getNumberOfElements() || i < 0)
- return "???";
- return TARGET_TYPE_TEXT[i];
- }
-};
-
class MagicSchoolModel final : public ListModel
{
public: