diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:56:07 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:56:07 +0000 |
commit | d6f8bbb45b267065a6907e71ff9c98bb6d161241 (patch) | |
tree | d109539636691d7b03036ca1c0ed29dbae6577cf /languages/php/phpsupportpart.h | |
parent | 3331a47a9cad24795c7440ee8107143ce444ef34 (diff) | |
download | tdevelop-d6f8bbb45b267065a6907e71ff9c98bb6d161241.tar.gz tdevelop-d6f8bbb45b267065a6907e71ff9c98bb6d161241.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1157658 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'languages/php/phpsupportpart.h')
-rw-r--r-- | languages/php/phpsupportpart.h | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/languages/php/phpsupportpart.h b/languages/php/phpsupportpart.h index 83478283..5f7ba13b 100644 --- a/languages/php/phpsupportpart.h +++ b/languages/php/phpsupportpart.h @@ -20,9 +20,9 @@ #ifndef _PHPSUPPORTPART_H_ #define _PHPSUPPORTPART_H_ -#include <qdir.h> -#include <qfile.h> -#include <qprogressbar.h> +#include <tqdir.h> +#include <tqfile.h> +#include <tqprogressbar.h> #include <kdialogbase.h> #include "kdevlanguagesupport.h" @@ -46,17 +46,17 @@ class PHPSupportPart : public KDevLanguageSupport Q_OBJECT public: - PHPSupportPart( QObject *parent, const char *name, const QStringList & ); + PHPSupportPart( TQObject *parent, const char *name, const TQStringList & ); ~PHPSupportPart(); PHPErrorView *ErrorView(); PHPParser *Parser( ) ; - QString getIncludePath(); - QString getExePath(); + TQString getIncludePath(); + TQString getExePath(); void emitFileParsed( PHPFile *file ); - virtual void customEvent( QCustomEvent* ev ); + virtual void customEvent( TQCustomEvent* ev ); protected: virtual Features features(); @@ -66,15 +66,15 @@ private slots: void projectOpened(); void projectClosed(); void savedFile(const KURL &fileName); - void addedFilesToProject(const QStringList &fileList); - void removedFilesFromProject(const QStringList &fileList); + void addedFilesToProject(const TQStringList &fileList); + void removedFilesFromProject(const TQStringList &fileList); void slotRun(); void slotNewClass(); void projectConfigWidget(KDialogBase *dlg); void slotReceivedPHPExeStderr (KProcess* proc, char* buffer, int buflen); void slotReceivedPHPExeStdout (KProcess* proc, char* buffer, int buflen); void slotPHPExeExited (KProcess* proc); - void slotWebData(KIO::Job* job,const QByteArray& data); + void slotWebData(KIO::Job* job,const TQByteArray& data); void slotWebResult(KIO::Job* job); void slotWebJobStarted(KIO::Job* job); @@ -91,7 +91,7 @@ private slots: void slotConfigStored(); private: - QString getExecuteFile(); + TQString getExecuteFile(); void executeOnWebserver(); void executeInTerminal(); bool validateConfig(); @@ -99,7 +99,7 @@ private: PHPHTMLView* m_htmlView; PHPErrorView* m_phpErrorView; KShellProcess* phpExeProc; - QString m_phpExeOutput; + TQString m_phpExeOutput; PHPConfigData* configData; PHPCodeCompletion* m_codeCompletion; PHPParser* m_parser; @@ -107,13 +107,13 @@ private: struct JobData { - QDir dir; - QGuardedPtr<QProgressBar> progressBar; - QStringList::Iterator it; - QStringList files; - QMap< QString, QPair<uint, uint> > pcs; - QDataStream stream; - QFile file; + TQDir dir; + TQGuardedPtr<TQProgressBar> progressBar; + TQStringList::Iterator it; + TQStringList files; + TQMap< TQString, QPair<uint, uint> > pcs; + TQDataStream stream; + TQFile file; ~JobData() { |