qt6windows7/tests/manual/qtexttableborders/widget.h
2023-10-29 23:33:08 +01:00

32 lines
510 B
C++

// Copyright (C) 2019 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#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