aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/widgets/FilePage.h
diff options
context:
space:
mode:
authorSaturneric <[email protected]>2022-01-23 08:35:59 +0000
committerSaturneric <[email protected]>2022-01-23 08:35:59 +0000
commita7fb788cd0379bc3f49d5c0fdb0cbdf2b8401f7b (patch)
tree3299c2bcbddc0eb1fa0b9bb3ae002e5ac856180c /src/ui/widgets/FilePage.h
parent<refactor>(ui): tidy up codes and comments. (diff)
downloadGpgFrontend-a7fb788cd0379bc3f49d5c0fdb0cbdf2b8401f7b.tar.gz
GpgFrontend-a7fb788cd0379bc3f49d5c0fdb0cbdf2b8401f7b.zip
<refactor>(ui): tidy up codes and comments.
1. tidy up widgets.
Diffstat (limited to 'src/ui/widgets/FilePage.h')
-rw-r--r--src/ui/widgets/FilePage.h178
1 files changed, 145 insertions, 33 deletions
diff --git a/src/ui/widgets/FilePage.h b/src/ui/widgets/FilePage.h
index b83e0f9e..7c1880ee 100644
--- a/src/ui/widgets/FilePage.h
+++ b/src/ui/widgets/FilePage.h
@@ -38,62 +38,174 @@ class Ui_FilePage;
namespace GpgFrontend::UI {
+/**
+ * @brief
+ *
+ */
class FilePage : public QWidget {
Q_OBJECT
public:
+ /**
+ * @brief Construct a new File Page object
+ *
+ * @param parent
+ */
explicit FilePage(QWidget* parent = nullptr);
- [[nodiscard]] QString getSelected() const;
+ /**
+ * @brief Get the Selected object
+ *
+ * @return QString
+ */
+ [[nodiscard]] QString GetSelected() const;
public slots:
- void slotGoPath();
+ /**
+ * @brief
+ *
+ */
+ void SlotGoPath();
signals:
- void pathChanged(const QString& path);
- void signalRefreshInfoBoard(const QString& text,
+ /**
+ * @brief
+ *
+ * @param path
+ */
+ void SignalPathChanged(const QString& path);
+
+ /**
+ * @brief
+ *
+ * @param text
+ * @param verify_label_status
+ */
+ void SignalRefreshInfoBoard(const QString& text,
InfoBoardStatus verify_label_status);
private slots:
- void fileTreeViewItemClicked(const QModelIndex& index);
- void fileTreeViewItemDoubleClicked(const QModelIndex& index);
-
- void slotUpLevel();
-
- void slotOpenItem();
- void slotRenameItem();
- void slotDeleteItem();
- void slotEncryptItem();
- void slotEncryptSignItem();
- void slotDecryptItem();
- void slotSignItem();
- void slotVerifyItem();
- void slotCalculateHash();
- void slotMkdir();
- void slotCreateEmptyFile();
-
- void onCustomContextMenu(const QPoint& point);
+ /**
+ * @brief
+ *
+ * @param index
+ */
+ void slot_file_tree_view_item_clicked(const QModelIndex& index);
+
+ /**
+ * @brief
+ *
+ * @param index
+ */
+ void slot_file_tree_view_item_double_clicked(const QModelIndex& index);
+
+ /**
+ * @brief
+ *
+ */
+ void slot_up_level();
+
+ /**
+ * @brief
+ *
+ */
+ void slot_open_item();
+
+ /**
+ * @brief
+ *
+ */
+ void slot_rename_item();
+
+ /**
+ * @brief
+ *
+ */
+ void slot_delete_item();
+
+ /**
+ * @brief
+ *
+ */
+ void slot_encrypt_item();
+
+ /**
+ * @brief
+ *
+ */
+ void slot_encrypt_sign_item();
+
+ /**
+ * @brief
+ *
+ */
+ void slot_decrypt_item();
+
+ /**
+ * @brief
+ *
+ */
+ void slot_sign_item();
+
+ /**
+ * @brief
+ *
+ */
+ void slot_verify_item();
+
+ /**
+ * @brief
+ *
+ */
+ void slot_calculate_hash();
+
+ /**
+ * @brief
+ *
+ */
+ void slot_mkdir();
+
+ /**
+ * @brief
+ *
+ */
+ void slot_create_empty_file();
protected:
+ /**
+ * @brief
+ *
+ * @param event
+ */
void keyPressEvent(QKeyEvent* event) override;
+ /**
+ * @brief
+ *
+ * @param point
+ */
+ void onCustomContextMenu(const QPoint& point);
+
private:
- void createPopupMenu();
+ /**
+ * @brief Create a popup menu object
+ *
+ */
+ void create_popup_menu();
- std::shared_ptr<Ui_FilePage> ui;
+ std::shared_ptr<Ui_FilePage> ui_; ///<
- QFileSystemModel* dirModel;
- QCompleter* pathEditCompleter;
- QStringListModel* pathCompleteModel;
+ QFileSystemModel* dir_model_; ///<
+ QCompleter* path_edit_completer_; ///<
+ QStringListModel* path_complete_model_; ///<
- // using boost path
- boost::filesystem::path mPath;
- boost::filesystem::path selectedPath;
+ boost::filesystem::path m_path_; ///<
+ boost::filesystem::path selected_path_; ///<
- QMenu* popUpMenu{};
- QMenu* optionPopUpMenu{};
- QWidget* firstParent;
+ QMenu* popup_menu_{}; ///<
+ QMenu* option_popup_menu_{}; ///<
+ QWidget* first_parent_{}; ///<
};
} // namespace GpgFrontend::UI