53 lines
1.4 KiB
C++
53 lines
1.4 KiB
C++
/***
|
|
|
|
Olive - Non-Linear Video Editor
|
|
Copyright (C) 2019 Olive Team
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
***/
|
|
|
|
#ifndef TEXTEDITEX_H
|
|
#define TEXTEDITEX_H
|
|
|
|
#include <QTextEdit>
|
|
#include <QPushButton>
|
|
|
|
class TextEditEx : public QWidget {
|
|
Q_OBJECT
|
|
public:
|
|
TextEditEx(QWidget* parent = nullptr, bool enable_rich_text = true);
|
|
|
|
void setUndoRedoEnabled(bool e);
|
|
QTextDocument* document();
|
|
QTextCursor textCursor();
|
|
void setTextCursor(const QTextCursor &cursor);
|
|
void setTextHeight(int h);
|
|
public slots:
|
|
void setHtml(const QString &text);
|
|
void setPlainText(const QString &text);
|
|
signals:
|
|
void textModified(const QString& s);
|
|
private slots:
|
|
void text_edit_menu();
|
|
void open_text_edit();
|
|
void queue_text_modified();
|
|
private:
|
|
QTextEdit* text_editor_;
|
|
|
|
bool enable_rich_text_;
|
|
};
|
|
|
|
#endif // TEXTEDITEX_H
|