summaryrefslogtreecommitdiff
path: root/src/gui/models/modelistmodel.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-05-15 23:34:41 +0300
committerAndrei Karas <akaras@inbox.ru>2014-05-15 23:34:41 +0300
commit628c14231ce3a1b88ce6082cffc234d2a59df60a (patch)
treed02d5a130a9f8b809c14ec227ff455327f3f645a /src/gui/models/modelistmodel.h
parentb4c85f2e10a0175379ff394881028d12a7a30ca9 (diff)
downloadplus-628c14231ce3a1b88ce6082cffc234d2a59df60a.tar.gz
plus-628c14231ce3a1b88ce6082cffc234d2a59df60a.tar.bz2
plus-628c14231ce3a1b88ce6082cffc234d2a59df60a.tar.xz
plus-628c14231ce3a1b88ce6082cffc234d2a59df60a.zip
Move modelistmodel into separate file.
Diffstat (limited to 'src/gui/models/modelistmodel.h')
-rw-r--r--src/gui/models/modelistmodel.h67
1 files changed, 67 insertions, 0 deletions
diff --git a/src/gui/models/modelistmodel.h b/src/gui/models/modelistmodel.h
new file mode 100644
index 000000000..a34ba810a
--- /dev/null
+++ b/src/gui/models/modelistmodel.h
@@ -0,0 +1,67 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2004-2009 The Mana World Development Team
+ * Copyright (C) 2009-2010 The Mana Developers
+ * 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_MODELISTMODEL_H
+#define GUI_MODELS_MODELISTMODEL_H
+
+#include "gui/models/listmodel.h"
+
+#include "localconsts.h"
+
+class ModeListModel final : public ListModel
+{
+ public:
+ ModeListModel();
+
+ A_DELETE_COPY(ModeListModel)
+
+ ~ModeListModel()
+ { }
+
+ /**
+ * Returns the number of elements in container.
+ */
+ int getNumberOfElements() override final
+ { return static_cast<int>(mVideoModes.size()); }
+
+ /**
+ * Returns element from container.
+ */
+ std::string getElementAt(int i)
+ { return mVideoModes[i]; }
+
+ /**
+ * Returns the index corresponding to the given video mode.
+ * E.g.: "800x600".
+ * or -1 if not found.
+ */
+ int getIndexOf(const std::string &widthXHeightMode);
+
+ private:
+#ifndef ANDROID
+ void addCustomMode(const std::string &mode);
+#endif
+
+ StringVect mVideoModes;
+};
+
+#endif // GUI_MODELS_MODELISTMODEL_H