Deskflow 1.22.0.197
Keyboard and mouse sharing utility
Loading...
Searching...
No Matches
NewScreenWidget.h
Go to the documentation of this file.
1/*
2 * Deskflow -- mouse and keyboard sharing utility
3 * SPDX-FileCopyrightText: (C) 2012 - 2016 Symless Ltd.
4 * SPDX-FileCopyrightText: (C) 2008 Volker Lanz <vl@fidra.de>
5 * SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception
6 */
7
8#pragma once
9
10#include <QLabel>
11
12class QMouseEvent;
13class QWidget;
14
15class NewScreenWidget : public QLabel
16{
17 Q_OBJECT
18
19public:
20 explicit NewScreenWidget(QWidget *parent);
21
22protected:
23 void mousePressEvent(QMouseEvent *event) override;
24};
NewScreenWidget(QWidget *parent)
Definition NewScreenWidget.cpp:17
void mousePressEvent(QMouseEvent *event) override
Definition NewScreenWidget.cpp:22