kgpg
kgpgmd5widget.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef KGPGMD5WIDGET_H
00011 #define KGPGMD5WIDGET_H
00012
00013
00014
00015 #include <KDialog>
00016 #include <KUrl>
00017
00018 class QLabel;
00019
00020 class KLed;
00021
00022 class Md5Widget : public KDialog
00023 {
00024 Q_OBJECT
00025
00026 public:
00027 explicit Md5Widget(QWidget *parent = 0, const KUrl &url = KUrl());
00028
00029 public slots:
00030 void slotApply();
00031
00032 private:
00033 QString m_md5sum;
00034 QLabel *m_label;
00035 KLed *m_led;
00036 };
00037
00038 #endif // KGPGMD5WIDGET_H