According to QUIP-18 [1], all tests file should be LicenseRef-Qt-Commercial OR GPL-3.0-only [1]: https://contribute.qt-project.org/quips/18 Pick-to: 6.7 Task-number: QTBUG-121787 Change-Id: I9657df5d660820e56c96d511ea49d321c54682e8 Reviewed-by: Christian Ehrlicher <ch.ehrlicher@gmx.de>
53 lines
1.1 KiB
C++
53 lines
1.1 KiB
C++
// Copyright (C) 2021 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
|
|
|
#ifndef MAINWINDOW_H
|
|
#define MAINWINDOW_H
|
|
|
|
#include <QMainWindow>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
namespace Ui { class MainWindow; }
|
|
QT_END_NAMESPACE
|
|
|
|
class MainWindow : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
MainWindow(QWidget *parent = nullptr);
|
|
~MainWindow();
|
|
|
|
private slots:
|
|
void on_setTextButton_clicked();
|
|
|
|
void on_pasteImageButton_clicked();
|
|
void setImage(const QImage &newImage);
|
|
void on_pasteTextButton_clicked();
|
|
|
|
|
|
void on_copyBinaryButton_clicked();
|
|
|
|
void on_pasteBinaryButton_clicked();
|
|
|
|
void on_comboBox_textActivated(const QString &arg1);
|
|
|
|
void on_pasteHtmlButton_clicked();
|
|
|
|
void on_clearButton_clicked();
|
|
|
|
private:
|
|
Ui::MainWindow *ui;
|
|
QImage image;
|
|
QClipboard *clipboard;
|
|
bool eventFilter(QObject *obj, QEvent *event) override;
|
|
|
|
QColor generateRandomColor();
|
|
|
|
protected:
|
|
void dragEnterEvent(QDragEnterEvent *e) override;
|
|
void dropEvent(QDropEvent *e) override;
|
|
|
|
};
|
|
#endif // MAINWINDOW_H
|