| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- //
- // Copyright (c) 2008-2020 the Urho3D project.
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- //
- #pragma once
- #include "../UI/FontFace.h"
- namespace Urho3D
- {
- class FreeTypeLibrary;
- class Texture2D;
- /// Free type font face description.
- class URHO3D_API FontFaceFreeType : public FontFace
- {
- public:
- /// Construct.
- explicit FontFaceFreeType(Font* font);
- /// Destruct.
- ~FontFaceFreeType() override;
- /// Load font face.
- bool Load(const unsigned char* fontData, unsigned fontDataSize, float pointSize) override;
- /// Return pointer to the glyph structure corresponding to a character. Return null if glyph not found.
- const FontGlyph* GetGlyph(unsigned c) override;
- /// Return if font face uses mutable glyphs.
- bool HasMutableGlyphs() const override { return hasMutableGlyph_; }
- private:
- /// Setup next texture.
- bool SetupNextTexture(int textureWidth, int textureHeight);
- /// Load char glyph.
- bool LoadCharGlyph(unsigned charCode, Image* image = nullptr);
- /// Smooth one row of a horizontally oversampled glyph image.
- void BoxFilter(unsigned char* dest, size_t destSize, const unsigned char* src, size_t srcSize);
- /// FreeType library.
- SharedPtr<FreeTypeLibrary> freeType_;
- /// FreeType face. Non-null after creation only in dynamic mode.
- void* face_{};
- /// Load mode.
- int loadMode_{};
- /// Use subpixel glyph positioning?
- bool subpixel_{};
- /// Oversampling level.
- int oversampling_{};
- /// Ascender.
- float ascender_{};
- /// Has mutable glyph.
- bool hasMutableGlyph_{};
- /// Glyph area allocator.
- AreaAllocator allocator_;
- };
- }
|