2022-05-10 10:06:48 +00:00
|
|
|
// Copyright (C) 2019 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2019-07-22 17:06:34 +00:00
|
|
|
|
|
|
|
#ifndef WIDGET_H
|
|
|
|
#define WIDGET_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class Widget;
|
|
|
|
}
|
|
|
|
|
|
|
|
class Widget : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit Widget(QWidget *parent = nullptr);
|
|
|
|
~Widget();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void onDocumentSelected();
|
|
|
|
void onPrint();
|
|
|
|
void onPreview();
|
|
|
|
void onOpenBrowser();
|
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::Widget *ui;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // WIDGET_H
|