diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-02-22 16:59:58 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-02-22 16:59:58 +0300 |
commit | ab5a67829ec6c80accfeb4f186a70886c82c8dba (patch) | |
tree | c017d3a20ec4275254d92eaa126b4eb73acb00b3 /src/gui/models/extendednamesmodel.cpp | |
parent | 775810f943f7f6540d3bb180fdb91a074fdbaa75 (diff) | |
download | plus-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/models/extendednamesmodel.cpp')
-rw-r--r-- | src/gui/models/extendednamesmodel.cpp | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/src/gui/models/extendednamesmodel.cpp b/src/gui/models/extendednamesmodel.cpp new file mode 100644 index 000000000..c986085db --- /dev/null +++ b/src/gui/models/extendednamesmodel.cpp @@ -0,0 +1,65 @@ +/* + * 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/models/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(); +} |