File indexing completed on 2024-05-12 05:22:53

0001 /*
0002     test_keylister.h
0003 
0004     This file is part of libkleopatra's test suite.
0005     SPDX-FileCopyrightText: 2004 Klarälvdalens Datakonsult AB
0006 
0007     SPDX-License-Identifier: GPL-2.0-only
0008 */
0009 
0010 #pragma once
0011 
0012 #include <Libkleo/KeyListView>
0013 
0014 namespace GpgME
0015 {
0016 class Key;
0017 class KeyListResult;
0018 }
0019 
0020 class CertListView : public Kleo::KeyListView
0021 {
0022     Q_OBJECT
0023 public:
0024     explicit CertListView(QWidget *parent = nullptr, Qt::WindowFlags f = {});
0025     ~CertListView() override;
0026 
0027 public Q_SLOTS:
0028     void slotResult(const GpgME::KeyListResult &result);
0029     void slotStart();
0030 };