/*************************************************************************** * * * 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 #include class QLabel; 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