mirror of
https://github.com/deskflow/deskflow.git
synced 2026-07-10 21:19:24 +08:00
* Rename controls and improve setting enable logic * Move settings dialog to new lib * Rename dialog to dialogs * Include .ui files for GUI lib and include autogen headers in exe * Unit test settings dialog * Fix lint errors * Update ChangeLog * Fixed test name * Add debug messages * Tweak message * Logging for CI issue * Revert "Logging for CI issue" This reverts commit124b2c1acd. * Revert "Add debug messages" This reverts commit39b6a06c71. * Add Windows compiler error * Exclude test on Windows
27 lines
871 B
C++
27 lines
871 B
C++
/*
|
|
* synergy -- mouse and keyboard sharing utility
|
|
* Copyright (C) 2022 Symless Ltd.
|
|
*
|
|
* This package is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* found in the file LICENSE that should have accompanied this file.
|
|
*
|
|
* This package is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <QMessageBox>
|
|
|
|
class UpgradeDialog : public QMessageBox {
|
|
public:
|
|
explicit UpgradeDialog(QWidget *parent = nullptr);
|
|
void showDialog(const QString &text);
|
|
};
|