mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-26 14:17:05 +08:00
30 lines
534 B
C++
30 lines
534 B
C++
// Copyright (C) 2016 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>
|
|
#include <QTextCursor>
|
|
|
|
namespace Ui {
|
|
class Widget;
|
|
}
|
|
|
|
class Widget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit Widget(QWidget *parent = nullptr);
|
|
~Widget();
|
|
public slots:
|
|
void setFontPointSize(int value);
|
|
void setIndentWidth(int value);
|
|
private:
|
|
Ui::Widget *ui;
|
|
QTextCursor* textCursor;
|
|
};
|
|
|
|
#endif // WIDGET_H
|