File indexing completed on 2024-11-03 05:18:23
0001 /* 0002 0003 SPDX-License-Identifier: GPL-2.0-or-later 0004 0005 */ 0006 0007 #ifndef KGPGMD5WIDGET_H 0008 #define KGPGMD5WIDGET_H 0009 0010 #include <QDialog> 0011 #include <QUrl> 0012 0013 class QLabel; 0014 0015 class KLed; 0016 0017 class Md5Widget : public QDialog 0018 { 0019 Q_OBJECT 0020 0021 public: 0022 explicit Md5Widget(QWidget *parent = nullptr, const QUrl &url = QUrl()); 0023 0024 public Q_SLOTS: 0025 void slotApply(); 0026 0027 private: 0028 QString m_md5sum; 0029 QLabel *m_label; 0030 KLed *m_led; 0031 }; 0032 0033 #endif // KGPGMD5WIDGET_H