QSkinny 0.8.0
C++/Qt UI toolkit
Loading...
Searching...
No Matches
QskGlyphGraphicProvider.cpp
1/******************************************************************************
2 * QSkinny - Copyright (C) The authors
3 * SPDX-License-Identifier: BSD-3-Clause
4 *****************************************************************************/
5
6#include "QskGlyphGraphicProvider.h"
7#include "QskGraphic.h"
8#include "QskGlyphTable.h"
9
10#include <qrawfont.h>
11#include <qpainter.h>
12#include <qpainterpath.h>
13
14class QskGlyphGraphicProvider::PrivateData
15{
16 public:
17 QskGlyphTable glyphTable;
18};
19
20QskGlyphGraphicProvider::QskGlyphGraphicProvider( QObject* parent )
21 : QskGraphicProvider( parent )
22 , m_data( new PrivateData )
23{
24}
25
26QskGlyphGraphicProvider::~QskGlyphGraphicProvider()
27{
28}
29
30void QskGlyphGraphicProvider::setIconFont( const QRawFont& font )
31{
32 m_data->glyphTable.setIconFont( font );
33}
34
35QRawFont QskGlyphGraphicProvider::iconFont() const
36{
37 return m_data->glyphTable.iconFont();
38}
39
40QskGraphic QskGlyphGraphicProvider::glyphGraphic( uint index ) const
41{
42 return m_data->glyphTable.glyphGraphic( index );
43}
44
45const QskGraphic* QskGlyphGraphicProvider::loadGraphic( const QString& key ) const
46{
47 if ( const auto index = glyphIndex( key ) )
48 {
49 const auto graphic = glyphGraphic( index );
50 if ( !graphic.isNull() )
51 return new QskGraphic( graphic );
52 }
53
54 return nullptr;
55}
56
57uint QskGlyphGraphicProvider::glyphIndex( const QString& key ) const
58{
59 const auto& table = m_data->glyphTable;
60
61 if ( ( table.glyphCount() > 0 ) && !key.isEmpty() )
62 {
63 if ( key.startsWith( '#' ) )
64 {
65 bool ok;
66 const auto glyphIndex = key.toUInt( &ok );
67 if ( ok )
68 return glyphIndex;
69 }
70 else if ( key.startsWith( "U+" ) )
71 {
72 bool ok;
73 const char32_t code = key.mid( 2 ).toUInt( &ok, 16 );
74 if ( ok )
75 return table.codeToIndex( code );
76 }
77 else
78 {
79 return table.nameToIndex( key );
80 }
81 }
82
83 return 0;
84}
A paint device for scalable graphics.
Definition QskGraphic.h:28