From dc6b8e72fed2586239e3514819238c520636c9d9 Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 31 Jul 2010 19:54:04 +0000 Subject: Trinity Qt initial conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdewebdev@1157656 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- quanta/project/projectprivate.h | 78 ++++++++++++++++++++--------------------- 1 file changed, 39 insertions(+), 39 deletions(-) (limited to 'quanta/project/projectprivate.h') diff --git a/quanta/project/projectprivate.h b/quanta/project/projectprivate.h index 3ab1a20a..e09977a2 100644 --- a/quanta/project/projectprivate.h +++ b/quanta/project/projectprivate.h @@ -19,9 +19,9 @@ #define PROJECTPRIVATE_H //qt includes -#include -#include -#include +#include +#include +#include //app includes #include "project.h" @@ -45,7 +45,7 @@ class ProjectNewWeb; class ProjectNewFinal; class ProjectList; struct EventAction; -typedef QMap > EventActions; +typedef TQMap > EventActions; class ProjectPrivate : public QObject @@ -59,7 +59,7 @@ public: Project *parent; /** Point to the .webprj file */ KURL projectURL; - QString projectName; + TQString projectName; /** Points to the directory of the .webprj file */ KURL baseURL; /** Points to the document root inside the project. Item under this folder @@ -71,7 +71,7 @@ upload.*/ KURL previewPrefix; bool usePreviewPrefix; bool m_persistentBookmarks; - QString author; + TQString author; KRecentFilesAction *m_projectRecent; ProjectNewGeneral *png; @@ -79,39 +79,39 @@ upload.*/ ProjectNewWeb *pnw; ProjectNewFinal *pnf; - QWidgetStack *stack; - QString currentProjectView; + TQWidgetStack *stack; + TQString currentProjectView; KConfig *config; bool m_modified; bool m_excludeCvsignore; /** Default DTD for this project. */ - QString m_defaultDTD; - QString m_defaultEncoding; - QRegExp excludeRx; - QStringList excludeList; + TQString m_defaultDTD; + TQString m_defaultEncoding; + TQRegExp excludeRx; + TQStringList excludeList; KMainWindow *m_mainWindow; - QString m_debuggerClientEdit; - QMap m_passwdList; + TQString m_debuggerClientEdit; + TQMap m_passwdList; ProjectList m_projectFiles; ///< the list with the _absolute_ URL's of the project KDirWatch *m_dirWatch; ///< watches some project directories for modification KURL toolbarURL; KURL templateURL; - QString email; - QDomDocument dom; - QDomDocument m_sessionDom; - QString debuggerClient; + TQString email; + TQDomDocument dom; + TQDomDocument m_sessionDom; + TQString debuggerClient; bool m_debuggerPersistentBreakpoints; bool m_debuggerPersistentWatches; - QGuardedPtr m_uploadDialog; + TQGuardedPtr m_uploadDialog; TeamMember m_teamLeader; - QMap m_subprojectLeaders; - QMap m_taskLeaders; - QValueList m_simpleMembers; - QValueList m_subprojects; - QString m_yourself; - QString m_mailingList; + TQMap m_subprojectLeaders; + TQMap m_taskLeaders; + TQValueList m_simpleMembers; + TQValueList m_subprojects; + TQString m_yourself; + TQString m_mailingList; bool m_showUploadTreeviews; bool m_eventsEnabled; @@ -124,8 +124,8 @@ upload.*/ KSelectAction *openPrjViewAction, *deletePrjViewAction; /** the filename of the local webprj file after download */ - QString m_tmpProjectFile; - QString m_tmpSessionFile; + TQString m_tmpProjectFile; + TQString m_tmpSessionFile; /** used for creating a new project */ KTempFile *tempFile; KTempFile *sessionTempFile; @@ -138,7 +138,7 @@ upload.*/ void adjustViewActions(); - QStringList projectViewList(); + TQStringList projectViewList(); void init(); @@ -147,7 +147,7 @@ upload.*/ void insertFiles( KURL::List files ); /** insert files from dir recursive */ - void insertFiles(const KURL& pathURL, const QString& mask ); + void insertFiles(const KURL& pathURL, const TQString& mask ); void loadProjectXML(); @@ -165,7 +165,7 @@ upload.*/ @param tempFile the path of the already downloaded temp file @param sessionTempFile the path of the downloaded project session file. Empty if no such file was downloaded */ - void loadProjectFromTemp(const KURL &url, const QString &tempFile, const QString &sessionTempFile); + void loadProjectFromTemp(const KURL &url, const TQString &tempFile, const TQString &sessionTempFile); void getStatusFromTree(); @@ -185,14 +185,14 @@ upload.*/ @param the url string of the project to remove */ - void removeFromConfig(const QString & urlStr); + void removeFromConfig(const TQString & urlStr); /** test if a project is in the list of open projects in config @param the url string of the project to test */ - bool projectAlreadyOpen(const QString & urlStr); + bool projectAlreadyOpen(const TQString & urlStr); /** uploads the project file @return false if there was nothing to upload or an error occured during upload @@ -203,7 +203,7 @@ public slots: void slotDebuggerOptions(); - void slotDebuggerChanged(const QString &debugger); + void slotDebuggerChanged(const TQString &debugger); /** create new project */ void slotNewProject(); @@ -222,7 +222,7 @@ public slots: void slotAddFiles(); /** Deletes a project view */ - void slotDeleteProjectView(const QString &view); + void slotDeleteProjectView(const TQString &view); /** Saves a project view (group of files & toolbars) asking for a name. */ void slotSaveAsProjectView(bool askForName = true); @@ -231,10 +231,10 @@ public slots: void slotSaveProjectView(); /** Opens a project view (toolbars & files). */ - void slotOpenProjectView(const QString &view); + void slotOpenProjectView(const TQString &view); /** for the new project wizard */ - void slotSelectProjectType(const QString &title); + void slotSelectProjectType(const TQString &title); void slotDeleteCopytoDlg(CopyTo *dlg); @@ -243,11 +243,11 @@ private slots: signals: void setLocalFiles(bool); - void eventHappened(const QString&, const QString&, const QString& ); + void eventHappened(const TQString&, const TQString&, const TQString& ); private: - QStringList treeStatusFromXML(); - QString m_wizTitle ; + TQStringList treeStatusFromXML(); + TQString m_wizTitle ; bool m_createSessionDom; }; -- cgit v1.2.1