/usr/include/MYGUI/MyGUI_FontData.h is in libmygui-dev 3.2.0-5.
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 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 | /*!
@file
@author Albert Semenov
@date 06/2009
*/
/*
This file is part of MyGUI.
MyGUI is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
MyGUI 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 Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with MyGUI. If not, see <http://www.gnu.org/licenses/>.
*/
#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__
|