1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00
qTox/src/widget/tool/croppinglabel.h

71 lines
1.9 KiB
C
Raw Normal View History

2014-08-14 15:47:30 +08:00
/*
2015-06-11 00:11:50 +08:00
Copyright © 2014-2015 by The qTox Project
2014-08-14 15:47:30 +08:00
This file is part of qTox, a Qt-based graphical interface for Tox.
qTox is libre software: you can redistribute it and/or modify
2014-08-14 15:47:30 +08:00
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.
qTox is distributed in the hope that it will be useful,
2014-08-14 15:47:30 +08:00
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.
2014-08-14 15:47:30 +08:00
You should have received a copy of the GNU General Public License
along with qTox. If not, see <http://www.gnu.org/licenses/>.
2014-08-14 15:47:30 +08:00
*/
#ifndef CROPPINGLABEL_H
#define CROPPINGLABEL_H
#include <QLabel>
2014-09-11 21:44:34 +08:00
class QLineEdit;
2014-08-14 15:47:30 +08:00
class CroppingLabel : public QLabel
2014-08-14 15:47:30 +08:00
{
Q_OBJECT
public:
explicit CroppingLabel(QWidget* parent = 0);
2014-08-14 15:47:30 +08:00
2015-06-11 00:11:50 +08:00
void editBegin();
2014-09-01 17:00:06 +08:00
void setEditable(bool editable);
void setEdlideMode(Qt::TextElideMode elide);
void setText(const QString& text);
2014-11-16 06:17:30 +08:00
QString fullText(); ///< Returns the un-cropped text
2015-06-11 00:11:50 +08:00
public slots:
void minimizeMaximumWidth();
2014-09-01 17:16:41 +08:00
signals:
2015-06-11 00:11:50 +08:00
void editFinished(const QString& newText);
void editRemoved();
2014-09-01 17:16:41 +08:00
void clicked();
2014-08-14 17:42:03 +08:00
protected:
void paintEvent(QPaintEvent* paintEvent) override;
2014-08-14 17:42:03 +08:00
void setElidedText();
void hideTextEdit();
2014-09-01 17:16:41 +08:00
void showTextEdit();
virtual void resizeEvent(QResizeEvent *ev) final override;
virtual QSize sizeHint() const final override;
virtual QSize minimumSizeHint() const final override;
virtual void mouseReleaseEvent(QMouseEvent *e) final override;
2014-08-14 15:47:30 +08:00
private slots:
2015-06-11 00:11:50 +08:00
void editingFinished();
2014-08-14 15:47:30 +08:00
private:
QString origText;
2014-09-01 17:00:06 +08:00
QLineEdit* textEdit;
bool blockPaintEvents;
bool editable;
Qt::TextElideMode elideMode;
2014-08-14 15:47:30 +08:00
};
#endif // CROPPINGLABEL_H