/** * Copyright (C) 2021-2024 Saturneric * * This file is part of GpgFrontend. * * GpgFrontend is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * 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 GpgFrontend. If not, see . * * The initial version of the source code is inherited from * the gpg4usb project, which is under GPL-3.0-or-later. * * All the source code of GpgFrontend was modified and released by * Saturneric starting on May 12, 2021. * * SPDX-License-Identifier: GPL-3.0-or-later * */ #pragma once #include "core/typedef/GpgTypedef.h" namespace GpgFrontend { class GpgImportInformation; } namespace GpgFrontend::UI { class KeyPairOperaTab : public QWidget { Q_OBJECT public: /** * @brief Construct a new Key Pair Opera Tab object * * @param key_id * @param parent */ KeyPairOperaTab(int channel, GpgKeyPtr key, QWidget* parent); /** * @brief Create a Opera Menu object * */ void CreateOperaMenu(); signals: /** * @brief * */ void SignalKeyDatabaseRefresh(); private slots: /** * @details Export the key to a file, which is chosen in a file dialog */ void slot_export_private_key(); /** * @brief * */ void slot_export_short_private_key(); /** * @brief * */ void slot_export_public_key(); /** * @brief * */ void slot_modify_edit_datetime(); /** * @brief * */ void slot_modify_password(); /** * @brief * */ void slot_publish_key_to_server(); /** * @brief * */ void slot_update_key_from_server(); /** * @brief * */ void slot_gen_revoke_cert(); /** * @brief * */ void slot_modify_tofu_policy(); /** * @brief * */ void slot_set_owner_trust_level(); /** * @brief * */ void slot_import_revoke_cert(); /** * @brief * */ void slot_export_paper_key(); /** * @brief * */ void slot_import_paper_key(); /** * @brief * * @param secret * @param ascii * @param shortest * @param type */ void slot_export_key(bool secret, bool ascii, bool shortest, const QString& type); private: int current_gpg_context_channel_; GpgKeyPtr m_key_; ///< QMenu* key_server_opera_menu_{}; ///< QMenu* rev_cert_opera_menu_{}; QMenu* secret_key_export_opera_menu_{}; ///< }; } // namespace GpgFrontend::UI