xca/widgets/clicklabel.h
Christian Hohnstaedt 993da2d474 Use C++11 initializers for all non-static class members
When XCA started in 2002, there were no C++ initializers.
Drop explicit initializers from the constructors.

 - Fix indentations of section declarators.
 - Replace NULL by nullptr when feasible.
 - Sort private section: properties first, then methods.
2023-10-08 22:19:18 +02:00

54 lines
794 B
C++

/* vi: set sw=4 ts=4:
*
* Copyright (C) 2001 - 2007 Christian Hohnstaedt.
*
* All rights reserved.
*/
#ifndef __CLICKLABEL_H
#define __CLICKLABEL_H
#include <QLabel>
class QMouseEvent;
class DoubleClickLabel : public QLabel
{
Q_OBJECT
QString clicktext{};
public:
DoubleClickLabel(QWidget *parent) : QLabel(parent) { }
void setClickText(QString s);
protected:
void mouseDoubleClickEvent ( QMouseEvent * e );
signals:
void doubleClicked(QString text);
};
class ClickLabel : public DoubleClickLabel
{
Q_OBJECT
public:
ClickLabel(QWidget *parent);
void setRed();
void setGreen();
void disableToolTip();
protected:
void setColor(const QColor &col);
};
class CopyLabel : public DoubleClickLabel
{
Q_OBJECT
public:
CopyLabel(QWidget *parent);
};
#endif