blob: b16c4ffb4a5d69cc9b441376f82db59b30ebebcb (
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
|
/***************************************************************************
* Copyright (C) 2001-2002 by Bernd Gehrmann *
* bernd@kdevelop.org *
* *
* 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 _SCRIPTPROJECTPART_H_
#define _SCRIPTPROJECTPART_H_
#include <qdict.h>
#include <qguardedptr.h>
#include "kdevbuildtool.h"
class QListViewItem;
class QStringList;
class KDialogBase;
class ScriptProjectWidget;
class ScriptProjectPart : public KDevBuildTool
{
Q_OBJECT
public:
ScriptProjectPart( QObject *parent, const char *name, const QStringList &args );
~ScriptProjectPart();
QStringList distFiles() const;
protected:
virtual void openProject(const QString &dirName, const QString &projectName);
virtual void closeProject();
virtual QString projectDirectory() const;
virtual QString projectName() const;
virtual QString mainProgram() const;
virtual QString activeDirectory() const;
virtual QStringList allFiles() const;
virtual void addFile(const QString &fileName);
virtual void addFiles ( const QStringList& fileList );
virtual void removeFile(const QString &fileName);
virtual void removeFiles ( const QStringList& fileList );
virtual QString buildDirectory() const;
virtual QString runDirectory() const;
virtual QString debugArguments() const;
virtual QString runArguments() const;
virtual DomUtil::PairList runEnvironmentVars() const;
bool canAddToProject(const QString &path);
bool canAddDirectoryToProject(const QString &path);
private slots:
void projectConfigWidget(KDialogBase *dlg);
void slotNewFile();
void rescan();
private:
QString m_projectDirectory;
QString m_projectName;
QStringList m_sourceFiles;
friend class ScriptNewFileDialog;
};
#endif
|