GpgFrontend Project
A Free, Powerful, Easy-to-Use, Compact, Cross-Platform, and Installation-Free OpenPGP(pgp) Crypto Tool.
PlainTextEditorPage.h
1 
29 #ifndef __EDITORPAGE_H__
30 #define __EDITORPAGE_H__
31 
32 #include <string>
33 
34 #include "core/GpgConstants.h"
35 #include "ui/GpgFrontendUI.h"
36 
37 class Ui_PlainTextEditor;
38 
39 namespace GpgFrontend::UI {
40 
45 class PlainTextEditorPage : public QWidget {
46  Q_OBJECT
47  public:
54  explicit PlainTextEditorPage(QString file_path = {},
55  QWidget* parent = nullptr);
56 
60  [[nodiscard]] const QString& GetFilePath() const;
61 
67  void SetFilePath(const QString& filePath);
68 
72  QPlainTextEdit* GetTextPage();
73 
80  void ShowNotificationWidget(QWidget* widget, const char* className);
81 
87  void CloseNoteByClass(const char* className);
88 
93  void ReadFile();
94 
101  [[nodiscard]] bool ReadDone() const { return this->read_done_; }
102 
107  void PrepareToDestroy();
108 
113  bool WillCharsetChange() const;
114 
119  void NotifyFileSaved();
120 
121  private:
122  std::shared_ptr<Ui_PlainTextEditor> ui_;
123  QString full_file_path_;
124  bool sign_marked_{};
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;
133 
139  void detect_encoding(const std::string& data);
140 
146  void detect_cr_lf(const std::string& data);
147 
148  private slots:
149 
153  void slot_format_gpg_header();
154 
160  void slot_insert_text(const std::string& data);
161 };
162 
163 } // namespace GpgFrontend::UI
164 
165 #endif // __EDITORPAGE_H__
GpgFrontend::UI::PlainTextEditorPage::SetFilePath
void SetFilePath(const QString &filePath)
Definition: PlainTextEditorPage.cpp:101
GpgFrontend::UI
Definition: VerifyDetailsDialog.cpp:33
GpgFrontend::UI::PlainTextEditorPage::GetFilePath
const QString & GetFilePath() const
Definition: PlainTextEditorPage.cpp:75
GpgFrontend::UI::PlainTextEditorPage::ShowNotificationWidget
void ShowNotificationWidget(QWidget *widget, const char *className)
Definition: PlainTextEditorPage.cpp:105
GpgFrontend::UI::PlainTextEditorPage::slot_insert_text
void slot_insert_text(const std::string &data)
Definition: PlainTextEditorPage.cpp:206
GpgFrontend::UI::PlainTextEditorPage::PlainTextEditorPage
PlainTextEditorPage(QString file_path={}, QWidget *parent=nullptr)
Definition: PlainTextEditorPage.cpp:39
GpgFrontend::UI::FileReadThread
Definition: FileReadThread.h:38
GpgFrontend::UI::PlainTextEditorPage::detect_cr_lf
void detect_cr_lf(const std::string &data)
Definition: PlainTextEditorPage.cpp:287
GpgFrontend::UI::PlainTextEditorPage::CloseNoteByClass
void CloseNoteByClass(const char *className)
Definition: PlainTextEditorPage.cpp:111
GpgFrontend::UI::PlainTextEditorPage::sign_marked_
bool sign_marked_
true, if the signed header is marked, false if not
Definition: PlainTextEditorPage.h:124
GpgFrontend::UI::PlainTextEditorPage
Class for handling a single tab of the tabwidget.
Definition: PlainTextEditorPage.h:45
GpgFrontend::UI::PlainTextEditorPage::detect_encoding
void detect_encoding(const std::string &data)
Definition: PlainTextEditorPage.cpp:263
GpgFrontend::CharsetOperator::Detect
static CharsetInfo Detect(const std::string &buffer)
Definition: CharsetOperator.cpp:42
GpgFrontend::UI::FileReadThread::SignalSendReadBlock
void SignalSendReadBlock(const std::string &block)
GpgFrontend::UI::PlainTextEditorPage::slot_format_gpg_header
void slot_format_gpg_header()
Definition: PlainTextEditorPage.cpp:120
GpgFrontend::UI::PlainTextEditorPage::GetTextPage
QPlainTextEdit * GetTextPage()
Definition: PlainTextEditorPage.cpp:79
GpgFrontend::UI::PlainTextEditorPage::WillCharsetChange
bool WillCharsetChange() const
detect if the charset of the file will change
Definition: PlainTextEditorPage.cpp:81
GpgFrontend::UI::PlainTextEditorPage::full_file_path_
QString full_file_path_
The path to the file handled in the tab.
Definition: PlainTextEditorPage.h:123
GpgFrontend::UI::PlainTextEditorPage::ReadDone
bool ReadDone() const
Definition: PlainTextEditorPage.h:101
GpgFrontend::UI::PlainTextEditorPage::NotifyFileSaved
void NotifyFileSaved()
notify the user that the file has been saved.
Definition: PlainTextEditorPage.cpp:92