196 lines
4.7 KiB
C++
196 lines
4.7 KiB
C++
/***
|
|
|
|
Olive - Non-Linear Video Editor
|
|
Copyright (C) 2021 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 VIEWERTEXTEDITOR_H
|
|
#define VIEWERTEXTEDITOR_H
|
|
|
|
#include <QApplication>
|
|
#include <QDebug>
|
|
#include <QFontComboBox>
|
|
#include <QTextEdit>
|
|
#include <QPushButton>
|
|
|
|
#include "widget/slider/floatslider.h"
|
|
#include "widget/slider/integerslider.h"
|
|
|
|
namespace olive {
|
|
|
|
class ViewerTextEditorToolBar : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
ViewerTextEditorToolBar(QWidget *parent = nullptr);
|
|
|
|
QString GetFontFamily() const
|
|
{
|
|
return font_combo_->currentText();
|
|
}
|
|
|
|
QString GetFontStyleName() const
|
|
{
|
|
return style_combo_->currentText();
|
|
}
|
|
|
|
public slots:
|
|
void SetFontFamily(QString s)
|
|
{
|
|
font_combo_->blockSignals(true);
|
|
font_combo_->setCurrentFont(s);
|
|
UpdateFontStyleList(s);
|
|
font_combo_->blockSignals(false);
|
|
}
|
|
|
|
void SetStyle(QString style)
|
|
{
|
|
style_combo_->blockSignals(true);
|
|
style_combo_->setCurrentText(style);
|
|
style_combo_->blockSignals(false);
|
|
}
|
|
|
|
void SetFontSize(double d) { font_sz_slider_->SetValue(d); }
|
|
void SetUnderline(bool e) { underline_btn_->setChecked(e); }
|
|
void SetStrikethrough(bool e) { strikethrough_btn_->setChecked(e); }
|
|
void SetAlignment(Qt::Alignment a);
|
|
void SetColor(const QColor &c);
|
|
void SetSmallCaps(bool e) { small_caps_btn_->setChecked(e); }
|
|
void SetStretch(int i) { stretch_slider_->SetValue(i); }
|
|
void SetKerning(qreal i) { kerning_slider_->SetValue(i); }
|
|
void SetLineHeight(qreal i) { line_height_slider_->SetValue(i); }
|
|
|
|
signals:
|
|
void FamilyChanged(const QString &s);
|
|
void SizeChanged(double d);
|
|
void StyleChanged(const QString &s);
|
|
void UnderlineChanged(bool e);
|
|
void StrikethroughChanged(bool e);
|
|
void AlignmentChanged(Qt::Alignment alignment);
|
|
void ColorChanged(const QColor &c);
|
|
void SmallCapsChanged(bool e);
|
|
void StretchChanged(int i);
|
|
void KerningChanged(qreal i);
|
|
void LineHeightChanged(qreal i);
|
|
|
|
void FirstPaint();
|
|
|
|
protected:
|
|
virtual void mousePressEvent(QMouseEvent *event) override;
|
|
|
|
virtual void mouseMoveEvent(QMouseEvent *event) override;
|
|
|
|
virtual void mouseReleaseEvent(QMouseEvent *event) override;
|
|
|
|
virtual void closeEvent(QCloseEvent *event) override;
|
|
|
|
virtual void paintEvent(QPaintEvent *event) override;
|
|
|
|
private:
|
|
QPoint drag_anchor_;
|
|
|
|
QFontComboBox *font_combo_;
|
|
|
|
FloatSlider *font_sz_slider_;
|
|
|
|
QComboBox *style_combo_;
|
|
|
|
QPushButton *underline_btn_;
|
|
QPushButton *strikethrough_btn_;
|
|
|
|
QPushButton *align_left_btn_;
|
|
QPushButton *align_center_btn_;
|
|
QPushButton *align_right_btn_;
|
|
QPushButton *align_justify_btn_;
|
|
|
|
IntegerSlider *stretch_slider_;
|
|
FloatSlider *kerning_slider_;
|
|
FloatSlider *line_height_slider_;
|
|
QPushButton *small_caps_btn_;
|
|
|
|
QPushButton *color_btn_;
|
|
|
|
bool painted_;
|
|
|
|
private slots:
|
|
void UpdateFontStyleList(const QString &family);
|
|
|
|
void UpdateFontStyleListAndEmitFamilyChanged(const QString &family);
|
|
|
|
};
|
|
|
|
class ViewerTextEditor : public QTextEdit
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
ViewerTextEditor(double scale, QWidget *parent = nullptr);
|
|
|
|
void ConnectToolBar(ViewerTextEditorToolBar *toolbar);
|
|
|
|
void SetListenToFocusEvents(bool e) { listen_to_focus_events_ = e; }
|
|
|
|
protected:
|
|
virtual void keyPressEvent(QKeyEvent *event) override;
|
|
|
|
virtual void paintEvent(QPaintEvent *event) override;
|
|
|
|
private:
|
|
static void UpdateToolBar(ViewerTextEditorToolBar *toolbar, const QTextCharFormat &f, const QTextBlockFormat &b, Qt::Alignment alignment);
|
|
|
|
void MergeCharFormat(const QTextCharFormat &fmt);
|
|
|
|
void ApplyStyle(QTextCharFormat *format, const QString &family, const QString &style);
|
|
|
|
QVector<ViewerTextEditorToolBar *> toolbars_;
|
|
|
|
QImage dpi_force_;
|
|
|
|
QTextDocument *transparent_clone_;
|
|
|
|
bool block_update_toolbar_signal_;
|
|
|
|
bool listen_to_focus_events_;
|
|
|
|
private slots:
|
|
void FocusChanged(QWidget *old, QWidget *now);
|
|
|
|
void FormatChanged(const QTextCharFormat &f);
|
|
|
|
void SetFamily(const QString &s);
|
|
|
|
void SetStyle(const QString &s);
|
|
|
|
void SetFontStrikethrough(bool e);
|
|
|
|
void SetSmallCaps(bool e);
|
|
|
|
void SetFontStretch(int i);
|
|
|
|
void SetFontKerning(qreal i);
|
|
|
|
void SetLineHeight(qreal i);
|
|
|
|
void LockScrollBarMaximumToZero();
|
|
|
|
void DocumentChanged();
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif // VIEWERTEXTEDITOR_H
|