~zeller-benjamin/qtcreator-plugin-ubuntu/qtc41-beta

« back to all changes in this revision

Viewing changes to src/cordovaubuntuprojectmanager/cprojectfile.h

  • Committer: Juhapekka Piiroinen
  • Date: 2013-09-04 15:30:00 UTC
  • mto: (23.1.14 binary-plugin)
  • mto: This revision was merged to the branch mainline in revision 24.
  • Revision ID: juhapekka.piiroinen@canonical.com-20130904153000-r4lhfhrjlwmop277
Added cordova plugin from ubuntu-qtcreator-plugins.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2013 Canonical Ltd.
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU Lesser General Public License as published by
 
6
 * the Free Software Foundation; version 2.1.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU Lesser General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU Lesser General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 */
 
17
 
 
18
#ifndef CPROJECTFILE_H
 
19
#define CPROJECTFILE_H
 
20
 
 
21
#include "common.h"
 
22
#include "cproject.h"
 
23
 
 
24
namespace CordovaUbuntuProjectManager {
 
25
 
 
26
class CProject;
 
27
class CProjectFile: public Core::IDocument {
 
28
    Q_OBJECT
 
29
public:
 
30
    CProjectFile(CProject *parent, QString fileName);
 
31
    ~CProjectFile() {}
 
32
 
 
33
    bool save(QString *errorString, const QString &fileName, bool autoSave);
 
34
    QString fileName() const;
 
35
    void rename(const QString &newName);
 
36
 
 
37
    QString defaultPath() const;
 
38
    QString suggestedFileName() const;
 
39
    QString mimeType() const;
 
40
 
 
41
    bool isModified() const;
 
42
    bool isSaveAsAllowed() const;
 
43
 
 
44
    ReloadBehavior reloadBehavior(ChangeTrigger state, ChangeType type) const;
 
45
    bool reload(QString *errorString, ReloadFlag flag, ChangeType);
 
46
 
 
47
private:
 
48
    CProject *m_project;
 
49
    QString m_fileName;
 
50
};
 
51
 
 
52
}
 
53
 
 
54
#endif // CPROJECTFILE_H