QSkinny 0.8.0
C++/Qt UI toolkit
Loading...
Searching...
No Matches
QskComboBoxSkinlet.cpp
1/******************************************************************************
2 * QSkinny - Copyright (C) The authors
3 * SPDX-License-Identifier: BSD-3-Clause
4 *****************************************************************************/
5
6#include "QskComboBoxSkinlet.h"
7#include "QskComboBox.h"
8
9#include "QskGraphic.h"
10#include "QskLabelData.h"
11#include "QskTextOptions.h"
12
13#include "QskSGNode.h"
14#include "QskSubcontrolLayoutEngine.h"
15#include "QskTextRenderer.h"
16
17#include <qfontmetrics.h>
18
19static int qskWidestIndex( const QskComboBox* box )
20{
21 const auto font = box->effectiveFont( QskComboBox::Text );
22
23 int index = -1;
24 qreal w = 0.0;
25
26 for ( int i = 0; i < box->count(); i++ )
27 {
28 const auto option = box->optionAt( i );
29
30 const auto size = QskTextRenderer::textSize(
31 option.text(), font, QskTextOptions() );
32
33 if ( size.width() > w )
34 {
35 w = size.width();
36 index = i;
37 }
38 }
39
40 return index;
41}
42
43namespace
44{
45 class LayoutEngine : public QskSubcontrolLayoutEngine
46 {
47 public:
48 LayoutEngine( const QskComboBox* box, int index = -1 )
49 : QskSubcontrolLayoutEngine( Qt::Horizontal )
50 {
51 setSpacing( box->spacingHint( QskComboBox::Panel ) );
52
53 QSizeF graphicSize;
54 QString text;
55
56 if ( index < 0 )
57 {
58 if ( box->currentIndex() >= 0 )
59 {
60 const auto option = box->optionAt( box->currentIndex() );
61
62 graphicSize = option.icon().graphic().defaultSize();
63 text = option.text();
64 }
65 else
66 {
67 text = box->placeholderText();
68 }
69 }
70 else
71 {
72 const auto option = box->optionAt( index );
73
74 graphicSize = option.icon().graphic().defaultSize();
75 text = option.text();
76 }
77
78 setGraphicTextElements( box,
79 QskComboBox::Text, text, QskComboBox::Icon, graphicSize );
80
81 const auto alignment = box->alignmentHint(
82 QskComboBox::Panel, Qt::AlignLeft );
83
84 setFixedContent( QskComboBox::Text, Qt::Horizontal, alignment );
85 }
86 };
87}
88
89QskComboBoxSkinlet::QskComboBoxSkinlet( QskSkin* skin )
90 : Inherited( skin )
91{
92 setNodeRoles( { PanelRole, IconRole, TextRole, StatusIndicatorRole } );
93}
94
95QskComboBoxSkinlet::~QskComboBoxSkinlet() = default;
96
97QRectF QskComboBoxSkinlet::subControlRect( const QskSkinnable* skinnable,
98 const QRectF& contentsRect, QskAspect::Subcontrol subControl ) const
99{
100 using Q = QskComboBox;
101
102 const auto* box = static_cast< const QskComboBox* >( skinnable );
103
104 if ( subControl == Q::Panel )
105 return contentsRect;
106
107 if ( subControl == Q::Text || subControl == Q::Icon )
108 {
109 const auto r = box->subControlContentsRect( contentsRect, Q::Panel );
110
111 LayoutEngine layoutEngine( box );
112 layoutEngine.setGeometries( r );
113
114 return layoutEngine.subControlRect( subControl );
115 }
116
117 if( subControl == Q::StatusIndicator )
118 {
119 auto rect = box->innerBox( Q::Panel, contentsRect );
120 const auto size = box->strutSizeHint( Q::StatusIndicator );
121 rect.setLeft( rect.right() - size.width() );
122 return rect;
123 }
124
125 return Inherited::subControlRect( skinnable, contentsRect, subControl );
126}
127
128QSGNode* QskComboBoxSkinlet::updateSubNode(
129 const QskSkinnable* skinnable, quint8 nodeRole, QSGNode* node ) const
130{
131 using Q = QskComboBox;
132
133 const auto box = static_cast< const QskComboBox* >( skinnable );
134
135 switch ( nodeRole )
136 {
137 case PanelRole:
138 return updateBoxNode( box, node, Q::Panel );
139
140 case IconRole:
141 {
142 const auto option = box->optionAt( box->currentIndex() );
143 return updateGraphicNode( box, node,
144 option.icon().graphic(), Q::Icon );
145 }
146
147 case TextRole:
148 return updateTextNode( box, node );
149
150 case StatusIndicatorRole:
151 return updateSymbolNode( box, node, Q::StatusIndicator );
152 }
153
154 return Inherited::updateSubNode( skinnable, nodeRole, node );
155}
156
157QSGNode* QskComboBoxSkinlet::updateTextNode(
158 const QskComboBox* box, QSGNode* node ) const
159{
160 using Q = QskComboBox;
161
162 const auto rect = box->subControlRect( Q::Text ).toAlignedRect();
163
164 const auto textHeight = box->effectiveFontHeight( Q::Text );
165 if ( !box->clip() && ( rect.height() < textHeight ) )
166 return nullptr;
167
168 const auto alignment = box->alignmentHint( Q::Text, Qt::AlignLeft | Qt::AlignVCenter );
169
170 return QskSkinlet::updateTextNode( box, node, rect,
171 alignment, box->currentText(), Q::Text );
172}
173
174QSizeF QskComboBoxSkinlet::sizeHint( const QskSkinnable* skinnable,
175 Qt::SizeHint which, const QSizeF& ) const
176{
177 using Q = QskComboBox;
178
179 if ( which != Qt::PreferredSize )
180 return QSizeF();
181
182 const auto box = static_cast< const QskComboBox* >( skinnable );
183
184 LayoutEngine layoutEngine( box, qskWidestIndex( box ) );
185 auto size = layoutEngine.sizeHint( which, QSizeF() );
186
187 const auto spacingHint = box->spacingHint( Q::Panel );
188 const auto menuGraphicHint = box->strutSizeHint( Q::StatusIndicator );
189
190 size.rwidth() += spacingHint + menuGraphicHint.width();
191
192 size = box->outerBoxSize( Q::Panel, size );
193 size = size.expandedTo( box->strutSizeHint( Q::Panel ) );
194 size = size.grownBy( skinnable->marginHint( Q::Panel ) );
195
196 return size;
197}
198
199#include "moc_QskComboBoxSkinlet.cpp"
Subcontrol
For use within the rendering or lay-outing of a specific QskSkinnable.
Definition QskAspect.h:104
QRectF subControlRect(QskAspect::Subcontrol) const
QRectF subControlContentsRect(QskAspect::Subcontrol) const
qreal spacingHint(QskAspect, QskSkinHintStatus *=nullptr) const
Retrieves a spacing hint.
QMarginsF marginHint(QskAspect, QskSkinHintStatus *=nullptr) const
Retrieves a margin hint.
QFont effectiveFont(QskAspect) const
QSizeF strutSizeHint(QskAspect, QskSkinHintStatus *=nullptr) const
Retrieves a strut size hint.
QSizeF outerBoxSize(QskAspect, const QSizeF &innerBoxSize) const
Calculate the size, when being expanded by paddings, indentations.
QRectF innerBox(QskAspect, const QRectF &outerBox) const
Calculate the rectangle, whith paddings, indentations being subtracted.
Qt::Alignment alignmentHint(QskAspect, Qt::Alignment=Qt::Alignment()) const
Retrieves an alignment hint.