mirror of
https://github.com/chris2511/xca.git
synced 2026-09-12 19:51:05 +05:00
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.
54 lines
794 B
C++
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
|