/usr/include/MYGUI/MyGUI_FontData.h is in libmygui-dev 3.2.2-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | /*
* This source file is part of MyGUI. For the latest info, see http://mygui.info/
* Distributed under the MIT License
* (See accompanying file COPYING.MIT or copy at http://opensource.org/licenses/MIT)
*/
#ifndef MYGUI_FONT_DATA_H_
#define MYGUI_FONT_DATA_H_
#include "MyGUI_Prerequest.h"
namespace MyGUI
{
namespace FontCodeType
{
enum Enum
{
Tab = 0x0009,
LF = 0x000A,
CR = 0x000D,
Space = 0x0020,
NEL = 0x0085,
// The following are special code points. These are used represent displayable text elements that do not correspond to
// any actual Unicode code point. To prevent collisions, they must be defined with values higher than that of the
// highest valid Unicode code point (0x10FFFF as of Unicode 6.1).
Selected = 0xFFFFFFFC, // Used for rendering text selections when they have input focus.
SelectedBack = 0xFFFFFFFD, // Used for rendering text selections when they don't have input focus.
Cursor = 0xFFFFFFFE, // Used for rendering the blinking text cursor.
NotDefined = 0xFFFFFFFF // Used to render substitute glyphs for characters that aren't supported by the current font.
};
}
// информация об одном символе
struct GlyphInfo
{
GlyphInfo(
Char _codePoint = 0U,
float _width = 0.0f,
float _height = 0.0f,
float _advance = 0.0f,
float _bearingX = 0.0f,
float _bearingY = 0.0f,
const FloatRect& _uvRect = FloatRect()) :
codePoint(_codePoint),
width(_width),
height(_height),
advance(_advance),
bearingX(_bearingX),
bearingY(_bearingY),
uvRect(_uvRect)
{
}
Char codePoint;
float width;
float height;
float advance;
float bearingX;
float bearingY;
FloatRect uvRect;
};
typedef std::vector<GlyphInfo> VectorGlyphInfo;
} // namespace MyGUI
#endif // MYGUI_FONT_DATA_H_
|