summaryrefslogtreecommitdiffstats
path: root/tests/manual/qtexttableborders/widget.h
blob: d60486114427d15cb4eab290f4e562091f52dd0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright (C) 2019 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#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