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/projectupload.h | 118 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 118 insertions(+) create mode 100644 quanta/project/projectupload.h (limited to 'quanta/project/projectupload.h') diff --git a/quanta/project/projectupload.h b/quanta/project/projectupload.h new file mode 100644 index 00000000..375898ec --- /dev/null +++ b/quanta/project/projectupload.h @@ -0,0 +1,118 @@ +/*************************************************************************** + projectupload.h - description + ------------------- + begin : Wed Nov 15 2000 + copyright : (C) 2000 by Dmitry Poplavsky & Alexander Yakovlev & Eric Laffoon + (C) 2002, 2004 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. * + * * + ***************************************************************************/ + +#ifndef PROJECTUPLOAD_H +#define PROJECTUPLOAD_H + +#include "projectuploads.h" +#include "project.h" + +#include +#include +#include + +#include + +/** + *@author Dmitry Poplavsky & Alexander Yakovlev & Andras Mantia + */ + +class KURL; +class Project; +class UploadProfileDlgS; + +class ProjectUpload : public ProjectUploadS +{ + Q_OBJECT +public: + /** Initializes the dialog. If showOnlyProfiles is true, the dialog + displays only the list of profiles, no real upload can be performed. + If quickUpload is true, the upload starts immediately without checking + for modifications or confirmation from the user. The url will be + uploaded to the default profile */ + ProjectUpload(const KURL& url, const QString& profileName = QString::null, bool showOnlyProfiles = false, bool quickUpload = false, bool markOnly = false, const char * name = 0); + ~ProjectUpload(); + QString defaultProfile(); + +public slots: // Public slots + /** No descriptions */ + void slotBuildTree(); + +protected slots: + void startUpload(); + void upload(); + void uploadFinished( KIO::Job *job ); + void uploadProgress ( KIO::Job *job, unsigned long percent ); + void uploadMessage ( KIO::Job *, const QString & msg ); + void slotUploadNext(); + + void clearSelection(); + void selectAll(); + void selectModified(); + void invertSelection(); + void expandAll(); + void collapseAll(); + void clearProjectModified(); + + void slotNewProfile(); + void slotEditProfile(); + void slotRemoveProfile(); + void slotNewProfileSelected(const QString &profileName); + + virtual void resizeEvent( QResizeEvent * ); + virtual void reject(); + + +signals: // Signals + /** No descriptions */ + void uploadNext(); + void eventHappened(const QString&, const QString&, const QString&); + +private: + void buildSelectedItemList(); + void fillProfileDlg(UploadProfileDlgS *profileDlg); + void readProfileDlg(UploadProfileDlgS *profileDlg); + void setProfileTooltip(); + void loadRemoteUploadInfo(); + void saveRemoteUploadInfo(); + void initProjectInfo(const QString& defaultProfile); + void initBaseUrl(); /// Reads the current profile setting and initialize the baseUrl from it + + KURL::List modified; // modified files + QValueList needsConfirmation; + QPtrList toUpload; // list of files , still didn't uploaded + QListViewItem *currentItem; + KURL currentURL; + KURL::List madeDirs; + KURL *baseUrl; + KURL startUrl; + bool stopUpload; + bool uploadInProgress; + bool suspendUpload; + QString m_lastPassword; + Project *m_project; + QString m_defaultProfile; + QDomElement m_currentProfileElement; + QDomElement m_lastEditedProfileElement; + QDomNode m_profilesNode; + QDomDocument m_uploadStatusDom; + QMap m_uploadTimeList; + bool m_profilesOnly; + bool m_quickUpload; +}; + +#endif -- cgit v1.2.3