diff options
author | saturneric <[email protected]> | 2024-06-28 21:05:25 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-06-28 21:05:25 +0000 |
commit | d0333031c1f593998a501eff866f091ff2f036be (patch) | |
tree | 707a597c25b488955572601e87ba9e379df0a6ed /src/ui/widgets/KeyTable.h | |
parent | feat: rewrite key list structure and logic (diff) | |
download | GpgFrontend-d0333031c1f593998a501eff866f091ff2f036be.tar.gz GpgFrontend-d0333031c1f593998a501eff866f091ff2f036be.zip |
feat: user can select shown columns at key table
Diffstat (limited to 'src/ui/widgets/KeyTable.h')
-rw-r--r-- | src/ui/widgets/KeyTable.h | 176 |
1 files changed, 176 insertions, 0 deletions
diff --git a/src/ui/widgets/KeyTable.h b/src/ui/widgets/KeyTable.h new file mode 100644 index 00000000..4ec8f687 --- /dev/null +++ b/src/ui/widgets/KeyTable.h @@ -0,0 +1,176 @@ +/** + * Copyright (C) 2021 Saturneric <[email protected]> + * + * 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 <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. + * + * All the source code of GpgFrontend was modified and released by + * Saturneric <[email protected]> starting on May 12, 2021. + * + * SPDX-License-Identifier: GPL-3.0-or-later + * + */ + +#pragma once + +#include "core/model/GpgKey.h" +#include "core/model/GpgKeyTableModel.h" +#include "core/model/GpgKeyTableProxyModel.h" + +namespace GpgFrontend::UI { + +/** + * @brief + * + */ +struct KeyTable : public QTableView { + Q_OBJECT + public: + using KeyTableFilter = std::function<bool(const GpgKey&, const KeyTable&)>; + + /** + * @brief Construct a new Key Table object + * + * @param _key_list + * @param _select_type + * @param _info_type + * @param _filter + */ + KeyTable( + QWidget* parent, QSharedPointer<GpgKeyTableModel> model, + GpgKeyTableDisplayMode _select_type, GpgKeyTableColumn _info_type, + GpgKeyTableProxyModel::KeyFilter _filter = [](const GpgKey&) -> bool { + return true; + }); + + /** + * @brief + * + * @param model + */ + void RefreshModel(QSharedPointer<GpgKeyTableModel> model); + + /** + * @brief Get the Checked object + * + * @return KeyIdArgsListPtr& + */ + [[nodiscard]] auto GetChecked() const -> KeyIdArgsListPtr; + + /** + * @brief + * + */ + void UncheckALL() const; + + /** + * @brief + * + */ + void CheckALL() const; + + /** + * @brief + * + */ + void SetFilterKeyword(const QString& keyword); + + /** + * @brief + * + * @param row + * @return true + * @return false + */ + [[nodiscard]] auto IsRowChecked(int row) const -> bool; + + /** + * @brief Set the Row Checked object + * + * @param row + */ + void SetRowChecked(int row) const; + + /** + * @brief Set the Row Checked object + * + * @param row + */ + [[nodiscard]] auto GetRowSelected() const -> int; + + /** + * @brief Get the Row Count object + * + * @return auto + */ + [[nodiscard]] auto GetRowCount() const -> int; + + /** + * @brief Get the Key Id By Row object + * + * @param row + * @return QString + */ + [[nodiscard]] auto GetKeyIdByRow(int row) const -> QString; + + /** + * @brief + * + * @param row + * @return true + * @return false + */ + [[nodiscard]] auto IsPublicKeyByRow(int row) const -> bool; + + /** + * @brief + * + * @param row + * @return true + * @return false + */ + [[nodiscard]] auto IsPrivateKeyByRow(int row) const -> bool; + + /** + * @brief + * + */ + void CheckAll(); + + /** + * @brief + * + */ + void UncheckAll(); + + signals: + + /** + * @brief + * + */ + void SignalColumnTypeChange(GpgKeyTableColumn); + + private: + QSharedPointer<GpgKeyTableModel> model_; + GpgKeyTableProxyModel proxy_model_; + + GpgKeyTableColumn column_filter_; +}; + +} // namespace GpgFrontend::UI
\ No newline at end of file |