diff options
Diffstat (limited to 'src/ui/keypair_details/KeyPairSubkeyTab.h')
-rw-r--r-- | src/ui/keypair_details/KeyPairSubkeyTab.h | 138 |
1 files changed, 95 insertions, 43 deletions
diff --git a/src/ui/keypair_details/KeyPairSubkeyTab.h b/src/ui/keypair_details/KeyPairSubkeyTab.h index f254fed0..a64d143c 100644 --- a/src/ui/keypair_details/KeyPairSubkeyTab.h +++ b/src/ui/keypair_details/KeyPairSubkeyTab.h @@ -1,4 +1,6 @@ /** + * Copyright (C) 2021 Saturneric + * * This file is part of GpgFrontend. * * GpgFrontend is free software: you can redistribute it and/or modify @@ -6,19 +8,21 @@ * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * - * Foobar is distributed in the hope that it will be useful, + * GpgFrontend 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 Foobar. If not, see <https://www.gnu.org/licenses/>. + * along with GpgFrontend. If not, see <https://www.gnu.org/licenses/>. + * + * The initial version of the source code is inherited from + * the gpg4usb project, which is under GPL-3.0-or-later. * - * The initial version of the source code is inherited from gpg4usb-team. - * Their source code version also complies with GNU General Public License. + * All the source code of GpgFrontend was modified and released by + * Saturneric<[email protected]> starting on May 12, 2021. * - * The source code version of this software was modified and released - * by Saturneric<[email protected]> starting on May 12, 2021. + * SPDX-License-Identifier: GPL-3.0-or-later * */ @@ -26,9 +30,9 @@ #define GPGFRONTEND_KEYPAIRSUBKEYTAB_H #include "KeySetExpireDateDialog.h" -#include "gpg/GpgContext.h" +#include "core/GpgContext.h" #include "ui/GpgFrontendUI.h" -#include "ui/keygen/SubkeyGenerateDialog.h" +#include "ui/key_generate/SubkeyGenerateDialog.h" namespace GpgFrontend::UI { @@ -36,49 +40,97 @@ class KeyPairSubkeyTab : public QWidget { Q_OBJECT public: + /** + * @brief Construct a new Key Pair Subkey Tab object + * + * @param key + * @param parent + */ KeyPairSubkeyTab(const std::string& key, QWidget* parent); private: - void createSubkeyList(); - - void createSubkeyOperaMenu(); - - const GpgSubKey& getSelectedSubkey(); - - GpgKey key_; - QTableWidget* subkeyList{}; - std::vector<GpgSubKey> buffered_subkeys; - - QGroupBox* listBox; - QGroupBox* detailBox; - - QMenu* subkeyOperaMenu{}; - - QLabel* keySizeVarLabel; /** Label containing the keys key size */ - QLabel* expireVarLabel; /** Label containing the keys expiration date */ - QLabel* createdVarLabel; /** Label containing the keys creation date */ - QLabel* algorithmVarLabel; /** Label containing the keys algorithm */ - QLabel* keyidVarLabel; /** Label containing the keys keyid */ - QLabel* fingerPrintVarLabel; /** Label containing the keys fingerprint */ - QLabel* usageVarLabel; - QLabel* masterKeyExistVarLabel; - QLabel* cardKeyLabel; + /** + * @brief Create a subkey list object + * + */ + void create_subkey_list(); + + /** + * @brief Create a subkey opera menu object + * + */ + void create_subkey_opera_menu(); + + /** + * @brief Get the selected subkey object + * + * @return const GpgSubKey& + */ + const GpgSubKey& get_selected_subkey(); + + GpgKey key_; ///< + QTableWidget* subkey_list_{}; ///< + std::vector<GpgSubKey> buffered_subkeys_; ///< + + QGroupBox* list_box_; ///< + QGroupBox* detail_box_; ///< + + QMenu* subkey_opera_menu_{}; ///< + + QLabel* key_size_var_label_; ///< Label containing the keys key size + QLabel* expire_var_label_; ///< Label containing the keys expiration date + QLabel* created_var_label_; ///< Label containing the keys creation date + QLabel* algorithm_var_label_; ///< Label containing the keys algorithm + QLabel* key_id_var_label_; ///< Label containing the keys keyid + QLabel* fingerprint_var_label_; ///< Label containing the keys fingerprint + QLabel* usage_var_label_; ///< + QLabel* master_key_exist_var_label_; ///< + QLabel* card_key_label_; ///< private slots: - void slotAddSubkey(); - - void slotRefreshSubkeyList(); - - void slotRefreshSubkeyDetail(); - - void slotEditSubkey(); - - void slotRevokeSubkey(); - - void slotRefreshKeyInfo(); + /** + * @brief + * + */ + void slot_add_subkey(); + + /** + * @brief + * + */ + void slot_refresh_subkey_list(); + + /** + * @brief + * + */ + void slot_refresh_subkey_detail(); + + /** + * @brief + * + */ + void slot_edit_subkey(); + + /** + * @brief + * + */ + void slot_revoke_subkey(); + + /** + * @brief + * + */ + void slot_refresh_key_info(); protected: + /** + * @brief + * + * @param event + */ void contextMenuEvent(QContextMenuEvent* event) override; }; |