always reurning false for contains() to help test tools
This commit is contained in:
parent
f681e0e2db
commit
0ccffad3ac
|
@ -50,6 +50,11 @@ QskFocusIndicator::~QskFocusIndicator()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool QskFocusIndicator::contains( const QPointF & ) const
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
void QskFocusIndicator::onFocusItemGeometryChanged()
|
void QskFocusIndicator::onFocusItemGeometryChanged()
|
||||||
{
|
{
|
||||||
updateFocusFrame();
|
updateFocusFrame();
|
||||||
|
|
|
@ -22,6 +22,8 @@ class QSK_EXPORT QskFocusIndicator : public QskControl
|
||||||
QskFocusIndicator( QQuickItem* parent = nullptr );
|
QskFocusIndicator( QQuickItem* parent = nullptr );
|
||||||
~QskFocusIndicator() override;
|
~QskFocusIndicator() override;
|
||||||
|
|
||||||
|
bool contains( const QPointF & ) const override;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void windowChangeEvent( QskWindowChangeEvent* ) override;
|
void windowChangeEvent( QskWindowChangeEvent* ) override;
|
||||||
virtual QRectF focusRect() const;
|
virtual QRectF focusRect() const;
|
||||||
|
|
Loading…
Reference in New Issue