![Uwe Rathmann](/assets/img/avatar_default.png)
commit f429d3ab4e82ab06bfd40577aef8e2d5fdfd59fd Author: Uwe Rathmann <Uwe.Rathmann@tigertal.de> Date: Wed Aug 4 14:40:36 2021 +0200 subcontrolProxy introduced
30 lines
665 B
C++
30 lines
665 B
C++
/******************************************************************************
|
|
* Copyright (C) 2021 Edelhirsch Software GmbH
|
|
* This file may be used under the terms of the 3-clause BSD License
|
|
*****************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include "Box.h"
|
|
#include <QskTextLabel.h>
|
|
|
|
class UsageSpacer : public QskTextLabel
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QSK_SUBCONTROLS( Text )
|
|
|
|
UsageSpacer( QQuickItem* parent = nullptr )
|
|
: QskTextLabel( "_____", parent )
|
|
{
|
|
setSubcontrolProxy( QskTextLabel::Text, Text );
|
|
}
|
|
};
|
|
|
|
class Usage : public Box
|
|
{
|
|
public:
|
|
Usage( QQuickItem* parent );
|
|
};
|