- point to main Calamares site in the 'part of' headers instead of to github (this is the "this file is part of Calamares" opening line for most files). - remove boilerplate from all source files, CMake modules and completions, this is the 3-paragraph summary of the GPL-3.0-or-later, which has a meaning entirely covered by the SPDX tag.
51 lines
1.3 KiB
C++
51 lines
1.3 KiB
C++
/* === This file is part of Calamares - <https://calamares.io> ===
|
|
*
|
|
* SPDX-FileCopyrightText: 2014 Teo Mrnjavac <teo@kde.org>
|
|
* SPDX-FileCopyrightText: 2017 Adriaan de Groot <groot@kde.org>
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*
|
|
* Calamares is Free Software: see the License-Identifier above.
|
|
*
|
|
*/
|
|
|
|
#ifndef LIBCALAMARESUI_CLICKABLELABEL_H
|
|
#define LIBCALAMARESUI_CLICKABLELABEL_H
|
|
|
|
#include <QElapsedTimer>
|
|
#include <QLabel>
|
|
|
|
#include "DllMacro.h"
|
|
|
|
namespace Calamares
|
|
{
|
|
|
|
/** @brief A Label where the whole label area is clickable
|
|
*
|
|
* When clicking anywhere on the Label (text, background, whatever)
|
|
* the signal clicked() is emitted. Use this as a buddy for radio
|
|
* buttons or other clickable things where you want mouse interaction
|
|
* with the label, to be the same as mouse interaction with the control.
|
|
*/
|
|
class UIDLLEXPORT ClickableLabel : public QLabel
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit ClickableLabel( QWidget* parent = nullptr );
|
|
explicit ClickableLabel( const QString& text, QWidget* parent = nullptr );
|
|
virtual ~ClickableLabel() override;
|
|
|
|
signals:
|
|
void clicked();
|
|
|
|
protected:
|
|
virtual void mousePressEvent( QMouseEvent* event ) override;
|
|
virtual void mouseReleaseEvent( QMouseEvent* event ) override;
|
|
|
|
private:
|
|
QElapsedTimer m_time;
|
|
};
|
|
|
|
} // namespace Calamares
|
|
|
|
#endif // LIBCALAMARESUI_CLICKABLELABEL_H
|