94 lines
3.0 KiB
C++
94 lines
3.0 KiB
C++
/************************************************************************
|
|
**
|
|
** @file velidedlabel.h
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
** @date 8 5, 2020
|
|
**
|
|
** @brief
|
|
** @copyright
|
|
** This source code is part of the Valentina project, a pattern making
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
** Copyright (C) 2020 Valentina project
|
|
** <https://gitlab.com/smart-pattern/valentina> All Rights Reserved.
|
|
**
|
|
** Valentina is free software: you can redistribute it and/or modify
|
|
** it under the terms of the GNU General Public License as published by
|
|
** the Free Software Foundation, either version 3 of the License, or
|
|
** (at your option) any later version.
|
|
**
|
|
** Valentina is distributed in the hope that it will be useful,
|
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
** GNU General Public License for more details.
|
|
**
|
|
** You should have received a copy of the GNU General Public License
|
|
** along with Valentina. If not, see <http://www.gnu.org/licenses/>.
|
|
**
|
|
*************************************************************************/
|
|
#ifndef VELIDEDLABEL_H
|
|
#define VELIDEDLABEL_H
|
|
|
|
#include <QFrame>
|
|
|
|
#include "../vmisc/defglobal.h"
|
|
|
|
class VElidedLabel : public QFrame
|
|
{
|
|
Q_OBJECT // NOLINT
|
|
Q_PROPERTY(QString text READ text WRITE setText)
|
|
Q_PROPERTY(bool IsElided READ IsElided)
|
|
Q_PROPERTY(bool showElided READ ShowElided WRITE SetShowElided)
|
|
public:
|
|
explicit VElidedLabel(QWidget *parent = nullptr);
|
|
explicit VElidedLabel(const QString &text, QWidget *parent = nullptr);
|
|
|
|
void setText(const QString &text);
|
|
const QString& text() const;
|
|
|
|
bool IsElided() const;
|
|
|
|
bool ShowElided() const;
|
|
void SetShowElided(bool showElided);
|
|
|
|
protected:
|
|
virtual void paintEvent(QPaintEvent *event) override;
|
|
|
|
signals:
|
|
void ElisionChanged(bool m_elided);
|
|
|
|
private:
|
|
// cppcheck-suppress unknownMacro
|
|
Q_DISABLE_COPY_MOVE(VElidedLabel) // NOLINT
|
|
bool m_elided{false};
|
|
bool m_showElided{true};
|
|
QString m_content{};
|
|
|
|
bool DrawParagraph(QPainter &painter, const QString& paragraph, int &y, bool &didElide);
|
|
};
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
inline const QString &VElidedLabel::text() const
|
|
{
|
|
return m_content;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
inline bool VElidedLabel::IsElided() const
|
|
{
|
|
return m_elided;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
inline bool VElidedLabel::ShowElided() const
|
|
{
|
|
return m_showElided;
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
inline void VElidedLabel::SetShowElided(bool showElided)
|
|
{
|
|
m_showElided = showElided;
|
|
}
|
|
|
|
#endif // VELIDEDLABEL_H
|