Files
qt-creator/src/libs/utils/fixedsizeclicklabel.h

40 lines
890 B
C
Raw Normal View History

// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
2008-12-02 14:09:21 +01:00
#pragma once
2008-12-02 12:01:29 +01:00
#include "utils_global.h"
#include <QLabel>
2008-12-02 12:01:29 +01:00
namespace Utils {
class QTCREATOR_UTILS_EXPORT FixedSizeClickLabel : public QLabel
2008-12-02 14:09:21 +01:00
{
2008-12-02 12:01:29 +01:00
Q_OBJECT
Q_PROPERTY(QString maxText READ maxText WRITE setMaxText DESIGNABLE true)
public:
explicit FixedSizeClickLabel(QWidget *parent = nullptr);
2008-12-02 12:01:29 +01:00
void setText(const QString &text, const QString &maxText);
using QLabel::setText;
QSize sizeHint() const override;
2008-12-02 12:01:29 +01:00
QString maxText() const;
void setMaxText(const QString &maxText);
protected:
void mousePressEvent(QMouseEvent *ev) override;
void mouseReleaseEvent(QMouseEvent *ev) override;
signals:
void clicked();
2008-12-02 12:01:29 +01:00
private:
QString m_maxText;
bool m_pressed = false;
2008-12-02 12:01:29 +01:00
};
2008-12-02 14:09:21 +01:00
} // namespace Utils