mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 10:58:52 +00:00
974534f28a
- Moves the zoom menu to the zoom value
38 lines
681 B
C++
38 lines
681 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file GuiClickableLabel.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef GUICLICKABLELABEL_H
|
|
#define GUICLICKABLELABEL_H
|
|
|
|
#include <QLabel>
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
// see https://wiki.qt.io/Clickable_QLabel
|
|
class GuiClickableLabel : public QLabel {
|
|
Q_OBJECT
|
|
public:
|
|
explicit GuiClickableLabel(QWidget * parent);
|
|
|
|
~GuiClickableLabel();
|
|
|
|
Q_SIGNALS:
|
|
void clicked();
|
|
void pressed();
|
|
|
|
protected:
|
|
void mousePressEvent(QMouseEvent *) override;
|
|
void mouseReleaseEvent(QMouseEvent *) override;
|
|
};
|
|
|
|
}
|
|
}
|
|
#endif
|