summaryrefslogtreecommitdiffstats
path: root/buildtools/qmake/trollprojectpart.h
blob: 480eb926fbb9aab80fc6ba83ce2c5a238a283222 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/***************************************************************************
 *   Copyright (C) 2003 by Thomas Hasart                                   *
 *   thasart@gmx.de                                                        *
 *   Copyright (C) 2001-2002 by Bernd Gehrmann                             *
 *   bernd@tdevelop.org                                                    *
 *   Copyright (C) 2002 by Jakob Simon-Gaarde                              *
 *   jakob@jsg.dk                                                          *
 *                                                                         *
 *   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 _TROLLPROJECTPART_H_
#define _TROLLPROJECTPART_H_

#include <tqdict.h>
#include <tqguardedptr.h>
#include <tqmap.h>
#include <tqdatetime.h>

#include "kdevbuildtool.h"

class KDialogBase;
class TrollProjectWidget;
class KDirWatch;
class TQMakeDefaultOpts;

class TrollProjectPart : public KDevBuildTool
{
    Q_OBJECT
  TQ_OBJECT

public:
    TrollProjectPart( TQObject *parent, const char *name, const TQStringList &args );
    ~TrollProjectPart();

    bool isTMakeProject() const { return m_tmakeProject; }
    bool isTQt4Project() const;
    bool isDirty();
    KDirWatch* dirWatch();
    virtual Options options() const;
    TQStringList distFiles() const;
    inline TQString qmakePath() const { return DomUtil::readEntry(*projectDom(), "/kdevcppsupport/qt/qmake", "");; }

protected:
    virtual void openProject(const TQString &dirName, const TQString &projectName);
    virtual void closeProject();

    virtual TQString projectDirectory() const;
    virtual TQString projectName() const;
    virtual TQString mainProgram() const;
    virtual TQString activeDirectory() const;
    virtual TQStringList allFiles() const;
    virtual void addFile(const TQString &fileName);
    virtual void addFiles ( const TQStringList &fileList );
    virtual void removeFile(const TQString &fileName);
    virtual void removeFiles ( const TQStringList &fileList );
    virtual TQString buildDirectory() const;
    virtual TQString runDirectory() const;
    virtual TQString debugArguments() const;
    virtual TQString runArguments() const;
    virtual DomUtil::PairList runEnvironmentVars() const;

private slots:
    void projectConfigWidget(KDialogBase *dlg);
    void slotBuild();
//    void slotClean();
//    void slotExecute();
    void slotCommandFinished( const TQString& command );
    void slotBuildAndExecuteProject();
    void slotBuildAndExecuteTarget();

private:
//    void startMakeCommand(const TQString &dir, const TQString &target);
    void startTQMakeCommand(const TQString &dir, bool recursive = false );
//     void execute(const TQString &directory, const TQString &command);
    void queueCmd(const TQString &dir, const TQString &cmd);
    TQString makeEnvironment();

    TQString findTQtDir();
    TQString findExecutable( const TQString& path ) const;
    void buildBinDirs( TQStringList& ) const;
    bool isValidTQtDir( const TQString& path ) const;
    bool isExecutable( const TQString& path ) const;

    TQGuardedPtr<TrollProjectWidget> m_widget;
    TQString m_projectName;
    bool m_tmakeProject;

    TQMap<TQString, TQDateTime> m_timestamp;
    bool m_executeProjectAfterBuild;
    bool m_executeTargetAfterBuild;
    TQString m_buildCommand;

    KDirWatch* m_dirWatch;

    friend class TrollProjectWidget;
    friend class ProjectRunOptionsDlg;
    friend class TQMakeDefaultOpts;
};

#endif