2014-08-14 15:47:30 +08:00
|
|
|
/*
|
2015-06-11 00:11:50 +08:00
|
|
|
Copyright © 2014-2015 by The qTox Project
|
2015-06-06 09:40:08 +08:00
|
|
|
|
2014-08-14 15:47:30 +08:00
|
|
|
This file is part of qTox, a Qt-based graphical interface for Tox.
|
|
|
|
|
2015-06-06 09:40:08 +08:00
|
|
|
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.
|
2015-06-06 09:40:08 +08:00
|
|
|
|
|
|
|
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
|
2015-06-06 09:40:08 +08:00
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
2014-08-14 15:47:30 +08:00
|
|
|
|
2015-06-06 09:40:08 +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
|
|
|
|
2015-06-07 11:20:06 +08:00
|
|
|
class CroppingLabel : public QLabel
|
2014-08-14 15:47:30 +08:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2015-06-07 11:20:06 +08:00
|
|
|
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);
|
|
|
|
|
2015-06-09 02:08:24 +08:00
|
|
|
void setText(const QString& text);
|
2014-11-16 06:17:30 +08:00
|
|
|
QString fullText(); ///< Returns the un-cropped text
|
|
|
|
|
2015-06-19 20:01:50 +08:00
|
|
|
|
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:
|
2015-06-08 02:25:05 +08:00
|
|
|
void paintEvent(QPaintEvent* paintEvent) override;
|
2014-08-14 17:42:03 +08:00
|
|
|
void setElidedText();
|
2015-07-03 21:16:27 +08:00
|
|
|
void hideTextEdit();
|
2014-09-01 17:16:41 +08:00
|
|
|
void showTextEdit();
|
2015-06-09 02:08:24 +08:00
|
|
|
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
|
|
|
|
2015-06-07 11:20:06 +08:00
|
|
|
private slots:
|
2015-06-11 00:11:50 +08:00
|
|
|
void editingFinished();
|
2015-06-07 11:20:06 +08:00
|
|
|
|
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
|