File indexing completed on 2024-06-23 05:14:04

0001 /*
0002     dialogs/groupdetailsdialog.h
0003 
0004     This file is part of Kleopatra, the KDE keymanager
0005     SPDX-FileCopyrightText: 2021 g10 Code GmbH
0006     SPDX-FileContributor: Ingo Klöcker <dev@ingo-kloecker.de>
0007 
0008     SPDX-License-Identifier: GPL-2.0-or-later
0009 */
0010 
0011 #pragma once
0012 
0013 #include <QDialog>
0014 
0015 #include <memory>
0016 
0017 namespace Kleo
0018 {
0019 class KeyGroup;
0020 
0021 namespace Dialogs
0022 {
0023 
0024 class GroupDetailsDialog : public QDialog
0025 {
0026     Q_OBJECT
0027 public:
0028     explicit GroupDetailsDialog(QWidget *parent = nullptr);
0029     ~GroupDetailsDialog() override;
0030 
0031     void setGroup(const Kleo::KeyGroup &group);
0032 
0033 private:
0034     class Private;
0035     const std::unique_ptr<Private> d;
0036 };
0037 
0038 }
0039 }