KIO
skipdialog.cpp
Go to the documentation of this file.
00001 /* This file is part of the KDE libraries 00002 Copyright (C) 2000 David Faure <faure@kde.org> 00003 00004 This library is free software; you can redistribute it and/or 00005 modify it under the terms of the GNU Library General Public 00006 License version 2 as published by the Free Software Foundation. 00007 00008 This library is distributed in the hope that it will be useful, 00009 but WITHOUT ANY WARRANTY; without even the implied warranty of 00010 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00011 Library General Public License for more details. 00012 00013 You should have received a copy of the GNU Library General Public License 00014 along with this library; see the file COPYING.LIB. If not, write to 00015 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00016 Boston, MA 02110-1301, USA. 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"
KDE 4.6 API Reference