29 #ifndef __EDITORPAGE_H__
30 #define __EDITORPAGE_H__
34 #include "core/GpgConstants.h"
35 #include "ui/GpgFrontendUI.h"
37 class Ui_PlainTextEditor;
55 QWidget* parent =
nullptr);
101 [[nodiscard]]
bool ReadDone()
const {
return this->read_done_; }
124 std::shared_ptr<Ui_PlainTextEditor> ui_;
127 bool read_done_ =
false;
128 bool binary_mode_ =
false;
129 size_t read_bytes_ = 0;
130 std::string charset_name_;
131 std::string language_name_;
132 int32_t charset_confidence_{};
133 bool is_crlf_ =
false;
Class for handling a single tab of the tabwidget.
Definition: PlainTextEditorPage.h:45
void detect_encoding(const std::string &data)
Definition: PlainTextEditorPage.cpp:263
void slot_insert_text(QByteArray bytes_data)
Definition: PlainTextEditorPage.cpp:211
bool WillCharsetChange() const
detect if the charset of the file will change
Definition: PlainTextEditorPage.cpp:90
void NotifyFileSaved()
notify the user that the file has been saved.
Definition: PlainTextEditorPage.cpp:101
void slot_format_gpg_header()
Definition: PlainTextEditorPage.cpp:129
bool sign_marked_
true, if the signed header is marked, false if not
Definition: PlainTextEditorPage.h:126
QPlainTextEdit * GetTextPage()
Definition: PlainTextEditorPage.cpp:88
PlainTextEditorPage(QString file_path={}, QWidget *parent=nullptr)
Definition: PlainTextEditorPage.cpp:42
void SetFilePath(const QString &filePath)
Definition: PlainTextEditorPage.cpp:110
bool ReadDone() const
Definition: PlainTextEditorPage.h:101
QString full_file_path_
The path to the file handled in the tab.
Definition: PlainTextEditorPage.h:125
void CloseNoteByClass(const char *className)
Definition: PlainTextEditorPage.cpp:120
void detect_cr_lf(const std::string &data)
Definition: PlainTextEditorPage.cpp:287
void ShowNotificationWidget(QWidget *widget, const char *className)
Definition: PlainTextEditorPage.cpp:114
void SignalUIBytesDisplayed()
this signal is emitted when the bytes has been append in texteditor.
const QString & GetFilePath() const
Definition: PlainTextEditorPage.cpp:84
Definition: FileReadTask.cpp:29