From e9ae80694875f869892f13f4fcaf1170a00dea41 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: 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/kdewebdev@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- quanta/project/projectnewlocal.cpp | 361 +++++++++++++++++++++++++++++++++++++ 1 file changed, 361 insertions(+) create mode 100644 quanta/project/projectnewlocal.cpp (limited to 'quanta/project/projectnewlocal.cpp') diff --git a/quanta/project/projectnewlocal.cpp b/quanta/project/projectnewlocal.cpp new file mode 100644 index 00000000..e037b662 --- /dev/null +++ b/quanta/project/projectnewlocal.cpp @@ -0,0 +1,361 @@ +/*************************************************************************** + projectnewlocal.cpp - description + ------------------- + begin : Fri Oct 27 2000 + copyright : (C) 2000 by Dmitry Poplavsky & Alexander Yakovlev & Eric Laffoon + (C) 2001, 2002 Andras Mantia + ***************************************************************************/ + +/*************************************************************************** + * * + * 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. * + * * + ***************************************************************************/ + +// qt includes +#include +#include +#include +#include +#include +#include +#include +#include + +// kde includes +#include +#include +#include +#include +#include +#include +#include +#include + +//app includes +#include "projectnewlocal.h" +#include "projectnewgeneral.h" +#include "copyto.h" +#include "qextfileinfo.h" +#include "uploadtreefolder.h" +#include "uploadtreeview.h" +#include "resource.h" +#include "quantacommon.h" + +ProjectNewLocal::ProjectNewLocal(QWidget *parent, const char *name ) + : ProjectNewLocalS(parent,name) +{ + imagelabel->setPixmap( UserIcon("wiznewprjloc") ); + +// listView->setColumnAlignment(1,Qt::AlignRight); + listView->setColumnText(1, i18n("Add")); + listView->removeColumn(2); + listView->removeColumn(2); + + mask->setText("*"); + + checkInsertWeb->setChecked( true ); + + connect( checkInsert, SIGNAL(toggled(bool)), this, SLOT(slotSetFiles(bool))); + connect( checkInsertWeb, SIGNAL(toggled(bool)), this, SLOT(slotSetFiles(bool))); + connect( checkInsertWithMask, SIGNAL(toggled(bool)), this, SLOT(slotSetFiles(bool))); + + connect(addFiles, SIGNAL(clicked()),this,SLOT(slotAddFiles())); + connect(addFolder, SIGNAL(clicked()),this,SLOT(slotAddFolder())); + connect(clearList, SIGNAL(clicked()),this,SLOT(slotClearList())); +} + +ProjectNewLocal::~ProjectNewLocal(){ +} + +void ProjectNewLocal::setBaseURL(const KURL& a_baseURL) +{ + baseURL = a_baseURL; + baseURL.adjustPath(1); + checkInsert->setText(i18n("Insert files from %1.").arg(baseURL.prettyURL(0, KURL::StripFileProtocol))); + listView->clear(); + fileList.clear(); + checkInsert->setChecked(false); +} + +KURL::List ProjectNewLocal::files() +{ + //return fileList; + KURL::List r; + + QListViewItem *item; + QListViewItemIterator it(listView); + for ( ; it.current(); ++it ) + { + item = it.current(); + if ( listView->isSelected( item )) + { + KURL u; + if (dynamic_cast(item)) + { + u = dynamic_cast(item)->url(); + } else + { + u = dynamic_cast(item)->url(); + } + + if (!u.isEmpty()) r.append(u); + } + } + return r; +} + +KURL::List ProjectNewLocal::projectFiles() +{ + KURL::List list; + + if (!QExtFileInfo::exists(baseURL, false, this) || + !baseURL.path().endsWith("/") || + !checkInsert->isChecked() ) return list; + + QString fmask = "*"; + if ( checkInsertWeb->isChecked() ) + { + KMimeType::List list = KMimeType::allMimeTypes(); + KMimeType::List::iterator it; + QString name; + fmask = ""; + for ( it = list.begin(); it != list.end(); ++it ) + { + name = (*it)->name(); + if (qConfig.markupMimeTypes.contains(name) || + qConfig.scriptMimeTypes.contains(name) || + qConfig.imageMimeTypes.contains(name)) + { + QStringList patterns = (*it)->patterns(); + for (uint i = 0 ; i < patterns.count(); i++) + { + fmask = fmask+patterns[i]+" "; + } + } + } + } else + { + fmask = mask->text(); + } + + list = QExtFileInfo::allFilesRelative(baseURL, fmask, this, false); + + return list; +} + +void ProjectNewLocal::slotSetFiles(bool) +{ + if ( checkInsert->isChecked() ) + { + KURL::List files = projectFiles(); + progressBar->setTotalSteps(files.count() - 1); + progressBar->setTextEnabled(true); + for (uint i = 0; i < files.count(); i++) + { + if ( !fileList.contains(files[i])) + { + fileList.append(files[i]); + QListViewItem *it = listView->addItem(files[i], KFileItem(KFileItem::Unknown, KFileItem::Unknown, KURL())); + if (it) it->setSelected(true); + progressBar->setValue(i); + } + } + progressBar->setTotalSteps(1); + progressBar->setValue(0); + progressBar->setTextEnabled(false); + listView->checkboxTree(); + } +} + +void ProjectNewLocal::resizeEvent ( QResizeEvent *t ) +{ + ProjectNewLocalS::resizeEvent(t); + listView->setColumnWidth(0,listView->width()-listView->columnWidth(1)-20); +} + +/** No descriptions */ +void ProjectNewLocal::slotAddFiles() +{ + QExtFileInfo::createDir(baseURL, this); + KURL::List list = KFileDialog::getOpenURLs( + baseURL.url(), i18n("*"), this, i18n("Insert Files in Project")); + + if ( !list.isEmpty() ) + { + KURL u = list.first(); + + u = QExtFileInfo::toRelative( u, baseURL, false ); + + if ( u.path().startsWith("..") || u.path().startsWith("/")) + { + KURLRequesterDlg *urlRequesterDlg = new KURLRequesterDlg( baseURL.prettyURL(), this, ""); + urlRequesterDlg->setCaption(i18n("Files: Copy to Project")); + urlRequesterDlg->urlRequester()->setMode( KFile::Directory | KFile::ExistingOnly); + urlRequesterDlg->exec(); + KURL destination = urlRequesterDlg->selectedURL(); + delete urlRequesterDlg; + + if ( !destination.isEmpty()) + { + CopyTo *dlg = new CopyTo( baseURL); + connect(dlg, SIGNAL(addFilesToProject(const KURL::List&)), + SLOT (slotInsertFilesAfterCopying(const KURL::List&))); + connect(dlg, SIGNAL(deleteDialog(CopyTo *)), + SLOT (slotDeleteCopyToDialog(CopyTo *))); + list = dlg->copy( list, destination ); + return; + } else + { + return; + } + } + + progressBar->setTotalSteps(list.count() - 1); + progressBar->setTextEnabled(true); + for (uint i = 0; i < list.count(); i++) + { + list[i] = QExtFileInfo::toRelative(list[i], baseURL, false); + if (!fileList.contains(list[i])) + { + fileList.append(list[i]); + QListViewItem *it = listView->addItem(list[i], KFileItem(KFileItem::Unknown, KFileItem::Unknown, KURL())); + if (it) it->setSelected(true); + progressBar->setValue(i); + } + } + progressBar->setTotalSteps(1); + progressBar->setValue(0); + progressBar->setTextEnabled(false); + } +} + +/** No descriptions */ +void ProjectNewLocal::slotAddFolder() +{ +//TODO/FIXME: This returns null if the selected directory is not on the local disk. +//I think this is a KDE bug + QExtFileInfo::createDir(baseURL, this); + KURL dirURL ; + dirURL = KFileDialog::getExistingURL( + baseURL.url(), this, i18n("Insert Folder in Project")); + + if ( !dirURL.isEmpty() ) + { + dirURL.adjustPath(1); + + KURL sdir = dirURL; + sdir = QExtFileInfo::toRelative( sdir, baseURL, false); + + if ( sdir.path().startsWith("..") || sdir.path().startsWith("/") ) + { + + KURLRequesterDlg *urlRequesterDlg = new KURLRequesterDlg( baseURL.prettyURL(), this, ""); + urlRequesterDlg->setCaption(i18n("%1: Copy to Project").arg(dirURL.prettyURL(0, KURL::StripFileProtocol))); + urlRequesterDlg->urlRequester()->setMode( KFile::Directory | KFile::ExistingOnly); + urlRequesterDlg->exec(); + KURL destination = urlRequesterDlg->selectedURL(); + delete urlRequesterDlg; + + if ( !destination.isEmpty()) + { + CopyTo *dlg = new CopyTo( baseURL); + connect(dlg, SIGNAL(addFilesToProject(const KURL::List&)), + SLOT (slotInsertFolderAfterCopying(const KURL::List&))); + connect(dlg, SIGNAL(deleteDialog(CopyTo *)), + SLOT (slotDeleteCopyToDialog(CopyTo *))); + dirURL = dlg->copy(dirURL, destination); + return; + } else + { + return; + } + } + + slotInsertFolderAfterCopying(dirURL); + } +} + +void ProjectNewLocal::slotDeleteCopyToDialog(CopyTo* dlg) +{ +//The CopyTo dlg is deleted only here!! + delete dlg; +} + +void ProjectNewLocal::slotInsertFolderAfterCopying(const KURL::List& a_urlList) +{ + KURL::List::ConstIterator it; + KURL dirURL; + for (it = a_urlList.begin(); it != a_urlList.end(); ++it) + { + dirURL = *it; + // dirURL.adjustPath(1); + KURL::List files = QExtFileInfo::allFilesRelative(dirURL, "*", this, false); + progressBar->setTotalSteps(files.count() - 1); + progressBar->setTextEnabled(true); + KURL u; + for (uint i = 0; i < files.count(); i++) + { + u = files[i]; + if ( !fileList.contains(u) && u.path() != "." && u.path() != ".." ) + { + fileList.append(u); + listView->addItem(u, KFileItem(KFileItem::Unknown, KFileItem::Unknown, KURL())); + QListViewItem *it = listView->itemByUrl(u); + if (it) + { + it->setSelected(true); + listView->slotSelectFile(it); + } + progressBar->setValue(i); + } + } + //listView->selectAll(false); + progressBar->setTotalSteps(1); + progressBar->setValue(0); + progressBar->setTextEnabled(false); + } +} + +void ProjectNewLocal::slotInsertFilesAfterCopying(const KURL::List& a_urlList) +{ + KURL::List::ConstIterator it; + KURL u; + progressBar->setTotalSteps(a_urlList.count() - 1); + progressBar->setTextEnabled(true); + for (it = a_urlList.begin(); it != a_urlList.end(); ++it) + { + u = QExtFileInfo::toRelative(*it, baseURL, false); + if ( !fileList.contains(u)) + { + fileList.append(u); + QListViewItem *it = listView->addItem(u, KFileItem(KFileItem::Unknown, KFileItem::Unknown, KURL())); + if (it) + { + it->setSelected(true); + listView->slotSelectFile(it); + } + progressBar->advance(1); + } + } + progressBar->setTotalSteps(1); + progressBar->setValue(0); + progressBar->setTextEnabled(false); +} + +/** No descriptions */ +void ProjectNewLocal::slotClearList() +{ + //Really wondering why would we delete the files from baseURL??? + //I've added this code, but I don't remember the reason. :-( + //Anyway, it is quite evil thing to do. + //KIO::del( baseURL ); + listView->clear(); + fileList.clear(); + checkInsert->setChecked(false); +} + +#include "projectnewlocal.moc" -- cgit v1.2.1