KIO
kbetterthankdialog.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef KBETTERTHANKDIALOG_H
00020 #define KBETTERTHANKDIALOG_H
00021
00022 #include <QtGui/QDialog>
00023
00024 #include "ui_kbetterthankdialogbase.h"
00025
00026 class KBetterThanKDialog : public QDialog, private Ui_KBetterThanKDialogBase
00027 {
00028 Q_OBJECT
00029
00030 public:
00031 KBetterThanKDialog( QWidget *parent = 0 );
00032
00033 void init();
00034 void setLabel( const QString &label );
00035
00036 protected Q_SLOTS:
00037 virtual void accept();
00038 virtual void reject();
00039
00040 private Q_SLOTS:
00041 void allowOnceClicked();
00042 void allowAlwaysClicked();
00043 void denyClicked();
00044 void denyForeverClicked();
00045 };
00046
00047 #endif