diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-10-04 20:07:58 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-10-04 20:07:58 +0300 |
commit | a6c31640303618601c8520c13f1565e8ed816447 (patch) | |
tree | 05424b61d17053d38d1c8972953e4560f17e914f /src/enums/gui | |
parent | 60745b8038b18d4b7b7198a03547676b92988426 (diff) | |
download | plus-a6c31640303618601c8520c13f1565e8ed816447.tar.gz plus-a6c31640303618601c8520c13f1565e8ed816447.tar.bz2 plus-a6c31640303618601c8520c13f1565e8ed816447.tar.xz plus-a6c31640303618601c8520c13f1565e8ed816447.zip |
Move layouttype into enums directory.
Diffstat (limited to 'src/enums/gui')
-rw-r--r-- | src/enums/gui/layouttype.h | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/src/enums/gui/layouttype.h b/src/enums/gui/layouttype.h new file mode 100644 index 000000000..1f01466c7 --- /dev/null +++ b/src/enums/gui/layouttype.h @@ -0,0 +1,42 @@ +/* + * The ManaPlus Client + * Copyright (C) 2007-2009 The Mana World Development Team + * Copyright (C) 2009-2010 The Mana Developers + * Copyright (C) 2011-2016 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 ENUMS_GUI_WIDGETS_LAYOUTTYPE_H +#define ENUMS_GUI_WIDGETS_LAYOUTTYPE_H + +#include "localconsts.h" + +namespace LayoutType +{ + /** + * When the minimum size of the layout is less than the available size, + * the remaining pixels are equally split amongst the FILL items. + */ + enum Type + { + DEF = -42, /**< Default value, behaves like AUTO_ADD. */ + SET = -43, /**< Uses the share as the new size. */ + ADD = -44 /**< Adds the share to the current size. */ + }; +} // namespace LayoutType + +#endif // ENUMS_GUI_WIDGETS_LAYOUTTYPE_H |