KIO
skipdialog.cpp
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 #include "kio/skipdialog.h"
00020
00021 #include <stdio.h>
00022 #include <assert.h>
00023
00024 #include <QtGui/QMessageBox>
00025 #include <QtGui/QWidget>
00026 #include <QtGui/QLayout>
00027 #include <QtGui/QLabel>
00028
00029 #include <kguiitem.h>
00030 #include <klocale.h>
00031 #include <kurl.h>
00032 #include <kpushbutton.h>
00033 #include <kstandardguiitem.h>
00034
00035 using namespace KIO;
00036
00037 SkipDialog::SkipDialog(QWidget *parent, bool _multi, const QString& _error_text )
00038 : KDialog ( parent ), d( 0 )
00039 {
00040 setCaption( i18n( "Information" ) );
00041
00042 if ( !_multi ) {
00043 setButtons( Cancel );
00044 } else {
00045 setButtons( Cancel | User1 | User2 );
00046
00047 setButtonText( User1, i18n( "Skip" ) );
00048 connect( this, SIGNAL( user1Clicked() ), SLOT(skipPressed()) );
00049
00050 setButtonText( User2, i18n( "AutoSkip" ) );
00051 connect( this, SIGNAL( user2Clicked() ), SLOT(autoSkipPressed()) );
00052 }
00053
00054 connect( this, SIGNAL( cancelClicked() ), SLOT(cancelPressed()) );
00055
00056 setMainWidget( new QLabel( _error_text, this ) );
00057
00058 resize( sizeHint() );
00059 }
00060
00061 SkipDialog::~SkipDialog()
00062 {
00063 }
00064
00065 void SkipDialog::cancelPressed()
00066 {
00067 done(S_CANCEL);
00068 }
00069
00070 void SkipDialog::skipPressed()
00071 {
00072 done(S_SKIP);
00073 }
00074
00075 void SkipDialog::autoSkipPressed()
00076 {
00077 done(S_AUTO_SKIP);
00078 }
00079
00080 #include "skipdialog.moc"