From 628c14231ce3a1b88ce6082cffc234d2a59df60a Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Thu, 15 May 2014 23:34:41 +0300 Subject: Move modelistmodel into separate file. --- src/gui/models/modelistmodel.h | 67 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 src/gui/models/modelistmodel.h (limited to 'src/gui/models/modelistmodel.h') 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 . + */ + +#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(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 -- cgit v1.2.3-70-g09d2