2014-11-19 02:23:05 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* *
|
|
|
|
* This program 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 2 of the License, or *
|
|
|
|
* (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef KGPGMD5WIDGET_H
|
|
|
|
#define KGPGMD5WIDGET_H
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include <KDialog>
|
|
|
|
#include <KUrl>
|
|
|
|
|
2019-05-23 00:08:45 +00:00
|
|
|
#include <QLabel>
|
2014-11-19 02:23:05 +00:00
|
|
|
|
|
|
|
class KLed;
|
|
|
|
|
|
|
|
class Md5Widget : public KDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit Md5Widget(QWidget *parent = 0, const KUrl &url = KUrl());
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void slotApply();
|
|
|
|
|
|
|
|
private:
|
|
|
|
QString m_md5sum;
|
|
|
|
QLabel *m_label;
|
|
|
|
KLed *m_led;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // KGPGMD5WIDGET_H
|