// Copyright 2005-2020 The Mumble Developers. All rights reserved. // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file at the root of the // Mumble source tree or at . #ifndef MUMBLE_MUMBLE_VIEWCERT_H_ #define MUMBLE_MUMBLE_VIEWCERT_H_ #include #include #include #include #include class QListWidget; class ViewCert : public QDialog { private: Q_OBJECT Q_DISABLE_COPY(ViewCert) protected: QList qlCerts; QListWidget *qlwChain, *qlwCert; protected slots: void on_Chain_currentRowChanged(int); public: ViewCert(QList c, QWidget *p); static QString prettifyDigest(QString); }; #endif