summaryrefslogtreecommitdiff
path: root/src/gui/widgets
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-02-22 16:59:58 +0300
committerAndrei Karas <akaras@inbox.ru>2014-02-22 16:59:58 +0300
commitab5a67829ec6c80accfeb4f186a70886c82c8dba (patch)
treec017d3a20ec4275254d92eaa126b4eb73acb00b3 /src/gui/widgets
parent775810f943f7f6540d3bb180fdb91a074fdbaa75 (diff)
downloadplus-ab5a67829ec6c80accfeb4f186a70886c82c8dba.tar.gz
plus-ab5a67829ec6c80accfeb4f186a70886c82c8dba.tar.bz2
plus-ab5a67829ec6c80accfeb4f186a70886c82c8dba.tar.xz
plus-ab5a67829ec6c80accfeb4f186a70886c82c8dba.zip
Move extendednamesmodel into gui/models directory.
Diffstat (limited to 'src/gui/widgets')
-rw-r--r--src/gui/widgets/extendednamesmodel.cpp65
-rw-r--r--src/gui/widgets/extendednamesmodel.h59
2 files changed, 0 insertions, 124 deletions
diff --git a/src/gui/widgets/extendednamesmodel.cpp b/src/gui/widgets/extendednamesmodel.cpp
deleted file mode 100644
index a8a21d98d..000000000
--- a/src/gui/widgets/extendednamesmodel.cpp
+++ /dev/null
@@ -1,65 +0,0 @@
-/*
- * The ManaPlus Client
- * Copyright (C) 2012-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/>.
- */
-
-#include "gui/widgets/extendednamesmodel.h"
-
-#include "debug.h"
-
-ExtendedNamesModel::ExtendedNamesModel() :
- mNames(),
- mImages()
-{
-}
-
-ExtendedNamesModel::~ExtendedNamesModel()
-{
- clear();
-}
-
-int ExtendedNamesModel::getNumberOfElements()
-{
- return static_cast<int>(mNames.size());
-}
-
-std::string ExtendedNamesModel::getElementAt(int i)
-{
- if (i >= getNumberOfElements() || i < 0)
- return "???";
- return mNames[i];
-}
-
-const Image *ExtendedNamesModel::getImageAt(int i)
-{
- if (i >= static_cast<int>(mImages.size()) || i < 0)
- return nullptr;
-
- return mImages[i];
-}
-
-void ExtendedNamesModel::clear()
-{
- mNames.clear();
- FOR_EACH (std::vector<Image*>::iterator, it, mImages)
- {
- if (*it)
- (*it)->decRef();
- }
- mImages.clear();
-}
diff --git a/src/gui/widgets/extendednamesmodel.h b/src/gui/widgets/extendednamesmodel.h
deleted file mode 100644
index 3c38c48ed..000000000
--- a/src/gui/widgets/extendednamesmodel.h
+++ /dev/null
@@ -1,59 +0,0 @@
-/*
- * The ManaPlus Client
- * Copyright (C) 2012-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_WIDGETS_EXTENDEDNAMESMODEL_H
-#define GUI_WIDGETS_EXTENDEDNAMESMODEL_H
-
-#include "utils/stringvector.h"
-
-#include "gui/models/extendedlistmodel.h"
-
-class ExtendedNamesModel : public ExtendedListModel
-{
- public:
- ExtendedNamesModel();
-
- A_DELETE_COPY(ExtendedNamesModel)
-
- virtual ~ExtendedNamesModel();
-
- virtual int getNumberOfElements() override final A_WARN_UNUSED;
-
- virtual std::string getElementAt(int i) override final A_WARN_UNUSED;
-
- virtual const Image *getImageAt(int i) override final A_WARN_UNUSED;
-
- StringVect &getNames() A_WARN_UNUSED
- { return mNames; }
-
- std::vector<Image*> &getImages() A_WARN_UNUSED
- { return mImages; }
-
- size_t size() A_WARN_UNUSED
- { return mNames.size(); }
-
- void clear();
-
- protected:
- StringVect mNames;
- std::vector<Image*> mImages;
-};
-
-#endif // GUI_WIDGETS_EXTENDEDNAMESMODEL_H