MyGUI 3.4.2
MyGUI_Macros.h
Go to the documentation of this file.
1/*
2 * This source file is part of MyGUI. For the latest info, see http://mygui.info/
3 * Distributed under the MIT License
4 * (See accompanying file COPYING.MIT or copy at http://opensource.org/licenses/MIT)
5 */
6
7#ifndef MYGUI_MACROS_H_
8#define MYGUI_MACROS_H_
9
10#include "MyGUI_Prerequest.h"
11#include <limits>
12#include <cstddef>
13#include <cstdint>
14
15namespace MyGUI
16{
17
18 const size_t ITEM_NONE = (std::numeric_limits<size_t>::max)();
19 const int DEFAULT = -1;
20 const float ALPHA_MAX = 1.0f;
21 const float ALPHA_MIN = 0.0f;
22
23 const int MYGUI_FLAG_NONE = 0;
24 constexpr int MYGUI_FLAG(uint8_t num) { return 1 << num; }
25
26} // namespace MyGUI
27
28#endif // MYGUI_MACROS_H_
const int MYGUI_FLAG_NONE
const int DEFAULT
constexpr int MYGUI_FLAG(uint8_t num)
const float ALPHA_MIN
const float ALPHA_MAX
const size_t ITEM_NONE