diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 114a878c64ce6f8223cfd22d76a20eb16d177e5e (patch) | |
tree | acaf47eb0fa12142d3896416a69e74cbf5a72242 /lib/widgets/ksavealldialog.cpp | |
download | tdevelop-114a878c64ce6f8223cfd22d76a20eb16d177e5e.tar.gz tdevelop-114a878c64ce6f8223cfd22d76a20eb16d177e5e.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'lib/widgets/ksavealldialog.cpp')
-rw-r--r-- | lib/widgets/ksavealldialog.cpp | 189 |
1 files changed, 189 insertions, 0 deletions
diff --git a/lib/widgets/ksavealldialog.cpp b/lib/widgets/ksavealldialog.cpp new file mode 100644 index 00000000..dec2a80c --- /dev/null +++ b/lib/widgets/ksavealldialog.cpp @@ -0,0 +1,189 @@ +/* This file is part of the KDE project + Copyright (C) 2002 Harald Fernengel <harry@kdevelop.org> + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Library General Public + License as published by the Free Software Foundation; either + version 2 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public License + along with this library; see the file COPYING.LIB. If not, write to + the Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. +*/ + +#include <qvbox.h> +#include <qlabel.h> +#include <qheader.h> + +#include <klocale.h> +#include <kpushbutton.h> +#include <klistbox.h> +#include <klistview.h> +#include <kstdguiitem.h> + +#include "ksavealldialog.h" + +namespace +{ + +class CheckURL : public QCheckListItem +{ +public: + CheckURL( QListView * lv, KURL const & url ) + : QCheckListItem( lv, url.path(), QCheckListItem::CheckBox), + _url( url ) + {} + + KURL const & url() const { return _url; } + +private: + KURL _url; +}; + +} + + +KSaveSelectDialog::KSaveSelectDialog( KURL::List const & filelist, KURL::List const & ignorelist, QWidget * parent ) : + KDialogBase( parent, "SaveAllDialog", true, i18n("Save Modified Files?"), + Ok | User1 | Close ) +{ + QVBox *top = makeVBoxMainWidget(); + + (void)new QLabel( i18n("The following files have been modified. Save them?"), top ); + + _listview = new KListView( top ); + _listview->addColumn( "" ); + _listview->header()->hide(); + _listview->setResizeMode( QListView::LastColumn ); + + setButtonOK( KGuiItem(i18n("Save &Selected"), QString::null, i18n("Saves all selected files")) ); + setButtonText( User1, i18n("Save &None") ); + setButtonText( Close, KStdGuiItem::cancel().text() ); + setButtonTip( User1, i18n("Lose all modifications") ); + setButtonTip( Close, i18n("Cancels the action") ); + + KURL::List::ConstIterator it = filelist.begin(); + while ( it != filelist.end() ) + { + if ( !ignorelist.contains( *it ) ) + { + QCheckListItem * x = new CheckURL( _listview, *it ); + x->setOn( true ); + } + ++it; + } + + connect( this, SIGNAL(closeClicked()), this, SLOT(cancel()) ); + connect( this, SIGNAL(okClicked()), this, SLOT(save()) ); + connect( this, SIGNAL(user1Clicked()), this, SLOT(saveNone()) ); +} + +KSaveSelectDialog::~KSaveSelectDialog() {} + +void KSaveSelectDialog::saveNone( ) +{ + // deselect all + CheckURL * item = static_cast<CheckURL*>( _listview->firstChild() ); + while ( item ) + { + item->setOn( false ); + item = static_cast<CheckURL*>( item->nextSibling() ); + } + + QDialog::accept(); +} + +void KSaveSelectDialog::save( ) +{ + QDialog::accept(); +} + +void KSaveSelectDialog::cancel( ) +{ + QDialog::reject(); +} + +KURL::List KSaveSelectDialog::filesToSave( ) +{ + KURL::List filelist; + CheckURL const * item = static_cast<CheckURL*>( _listview->firstChild() ); + while ( item ) + { + if ( item->isOn() ) + { + filelist << item->url(); + } + item = static_cast<CheckURL*>( item->nextSibling() ); + } + return filelist; +} + +KURL::List KSaveSelectDialog::filesNotToSave( ) +{ + KURL::List filelist; + CheckURL const * item = static_cast<CheckURL*>( _listview->firstChild() ); + while ( item ) + { + if ( ! item->isOn() ) + { + filelist << item->url(); + } + item = static_cast<CheckURL*>( item->nextSibling() ); + } + return filelist; +} + + +KSaveAllDialog::KSaveAllDialog( const QStringList& filenames, QWidget* parent ) : + KDialogBase( parent, "SaveAllDialog", true, i18n("Save Modified Files?"), + Ok | User1 | Close ) +{ + m_result = Cancel; + + QVBox *top = makeVBoxMainWidget(); + + (void)new QLabel( i18n("The following files have been modified. Save them?"), top ); + KListBox* lb = new KListBox( top ); + lb->setMinimumHeight( lb->fontMetrics().height() * 5 ); + lb->insertStringList( filenames ); + + setButtonOK( KGuiItem(i18n("Save &All"), QString::null, i18n("Saves all modified files")) ); + setButtonText( User1, i18n("Save &None") ); + setButtonText( Close, KStdGuiItem::cancel().text() ); + setButtonTip( User1, i18n("Lose all modifications") ); + setButtonTip( Close, i18n("Cancels the action") ); + + connect( this, SIGNAL(closeClicked()), this, SLOT(cancel()) ); + connect( this, SIGNAL(okClicked()), this, SLOT(saveAll()) ); + connect( this, SIGNAL(user1Clicked()), this, SLOT(revert()) ); +} + +KSaveAllDialog::~KSaveAllDialog() +{ +} + +void KSaveAllDialog::revert() +{ + m_result = Revert; + QDialog::accept(); +} + +void KSaveAllDialog::saveAll() +{ + m_result = SaveAll; + QDialog::accept(); +} + +void KSaveAllDialog::cancel() +{ + m_result = Cancel; + QDialog::reject(); +} + +#include "ksavealldialog.moc" |