blob: 1cfb07d688e1688cfb01e2aeb34d27d9d95fe8c4 (
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
107
108
109
110
111
 | #ifndef __PROJECTMANAGER_H__
#define __PROJECTMANAGER_H__
#include <qstring.h>
#include <qobject.h>
#include <qdict.h>
#include <kxmlguiclient.h>
#include <kservice.h>
#include <kurl.h>
class KAction;
class KSelectAction;
class KService;
class ProjectInfo;
class ProjectSession;
class KRecentFilesAction;
class KDevPlugin;
class ProjectInfo
{
public:
  KURL         m_projectURL;
  QDomDocument m_document;
  QString      m_profileName;
  QString      m_projectName;
  QString      m_projectPlugin, m_language, m_activeLanguage, m_vcsPlugin;
  QStringList  m_ignoreParts, m_keywords;
  QString sessionFile() const;
};
/**
Project manager.
Loads and unloads projects.
*/
class ProjectManager : public QObject, public KXMLGUIClient
{
  Q_OBJECT
public:
  ~ProjectManager();
  static QString projectDirectory( const QString& path, bool absolute );
  static ProjectManager *getInstance();
  void loadSettings();
  void saveSettings();
  void loadDefaultProject();
  bool projectLoaded() const;
  KURL projectFile() const;
  QString projectName() const;
  void createActions( KActionCollection* ac );
  ProjectSession* projectSession() const;
public slots:
  bool loadProject( const KURL& url);
  bool loadKDevelop2Project( const KURL& url);
  bool closeProject( bool exiting = false );
private slots:
  void slotOpenProject();
  void slotProjectOptions();
  void slotLoadProject();
  void loadLocalParts();
private:
  ProjectManager();
  void setupActions();
  void getGeneralInfo();
  bool loadProjectFile();
  bool saveProjectFile();
  bool loadProjectPart();
  void unloadProjectPart();
  bool loadLanguageSupport(const QString& lang);
  void unloadLanguageSupport();
//   QString profileByAttributes(const QString &language, const QStringList &keywords);
  ProjectInfo *m_info;
  KAction *m_closeProjectAction, *m_projectOptionsAction;
  KRecentFilesAction *m_openRecentProjectAction;
  static ProjectManager *s_instance;
  ProjectSession* m_pProjectSession;
  KDevPlugin *m_vcsPlugin;
  QString m_vcsName;
  QString m_oldProfileName;
};
#endif
 |