diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-02-22 22:28:59 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-02-22 22:28:59 +0300 |
commit | 56c7ed4647d168842bda18ee797e735ccc5fd557 (patch) | |
tree | 34caf81ea253d331b1c2baf30e5ced3d73c2486d /src/gui/models/fontsmodel.h | |
parent | 4adbe6036ac29080bb8d02d92efe1175209a85a3 (diff) | |
download | plus-56c7ed4647d168842bda18ee797e735ccc5fd557.tar.gz plus-56c7ed4647d168842bda18ee797e735ccc5fd557.tar.bz2 plus-56c7ed4647d168842bda18ee797e735ccc5fd557.tar.xz plus-56c7ed4647d168842bda18ee797e735ccc5fd557.zip |
Move themesmodel into gui/models directory.
Diffstat (limited to 'src/gui/models/fontsmodel.h')
-rw-r--r-- | src/gui/models/fontsmodel.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/src/gui/models/fontsmodel.h b/src/gui/models/fontsmodel.h new file mode 100644 index 000000000..b20d3386b --- /dev/null +++ b/src/gui/models/fontsmodel.h @@ -0,0 +1,42 @@ +/* + * 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_FONTSMODEL_H +#define GUI_MODELS_FONTSMODEL_H + +#include "gui/theme.h" + +#include "gui/models/namesmodel.h" + +#include "debug.h" + +class FontsModel final : public NamesModel +{ + public: + FontsModel() : + NamesModel() + { Theme::fillFontsList(mNames); } + + ~FontsModel() + { } +}; + +#endif // GUI_MODELS_FONTSMODEL_H |