GpgFrontend Project
A Free, Powerful, Easy-to-Use, Compact, Cross-Platform, and Installation-Free OpenPGP(pgp) Crypto Tool.
|
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_; }
107 void PrepareToDestroy();
122 std::shared_ptr<Ui_PlainTextEditor> ui_;
125 bool read_done_ =
false;
126 QThread* read_thread_ =
nullptr;
127 bool binary_mode_ =
false;
128 size_t read_bytes_ = 0;
129 std::string charset_name_;
130 std::string language_name_;
131 int32_t charset_confidence_;
132 bool is_crlf_ =
false;
165 #endif // __EDITORPAGE_H__
void SetFilePath(const QString &filePath)
Definition: PlainTextEditorPage.cpp:101
Definition: VerifyDetailsDialog.cpp:33
const QString & GetFilePath() const
Definition: PlainTextEditorPage.cpp:75
void ShowNotificationWidget(QWidget *widget, const char *className)
Definition: PlainTextEditorPage.cpp:105
void slot_insert_text(const std::string &data)
Definition: PlainTextEditorPage.cpp:206
PlainTextEditorPage(QString file_path={}, QWidget *parent=nullptr)
Definition: PlainTextEditorPage.cpp:39
Definition: FileReadThread.h:38
void detect_cr_lf(const std::string &data)
Definition: PlainTextEditorPage.cpp:287
void CloseNoteByClass(const char *className)
Definition: PlainTextEditorPage.cpp:111
bool sign_marked_
true, if the signed header is marked, false if not
Definition: PlainTextEditorPage.h:124
Class for handling a single tab of the tabwidget.
Definition: PlainTextEditorPage.h:45
void detect_encoding(const std::string &data)
Definition: PlainTextEditorPage.cpp:263
static CharsetInfo Detect(const std::string &buffer)
Definition: CharsetOperator.cpp:42
void SignalSendReadBlock(const std::string &block)
void slot_format_gpg_header()
Definition: PlainTextEditorPage.cpp:120
QPlainTextEdit * GetTextPage()
Definition: PlainTextEditorPage.cpp:79
bool WillCharsetChange() const
detect if the charset of the file will change
Definition: PlainTextEditorPage.cpp:81
QString full_file_path_
The path to the file handled in the tab.
Definition: PlainTextEditorPage.h:123
bool ReadDone() const
Definition: PlainTextEditorPage.h:101
void NotifyFileSaved()
notify the user that the file has been saved.
Definition: PlainTextEditorPage.cpp:92