~ubuntu-branches/ubuntu/utopic/anjuta/utopic-proposed

« back to all changes in this revision

Viewing changes to libanjuta/interfaces/ianjuta-project-manager.h

  • Committer: Package Import Robot
  • Author(s): Andreas Henriksson, Jackson Doak
  • Date: 2014-07-12 15:17:39 UTC
  • mfrom: (1.4.14)
  • Revision ID: package-import@ubuntu.com-20140712151739-p9xy0ntlgbpm2nxq
Tags: 2:3.12.0-1
* Team upload.

[ Jackson Doak ]
* New upstream release
* Drop 03_valac_0.22.patch, fixed upstream\
* debian/control:
  - Bump b-dep version on libgtk-3-dev (>= 3.6.0), libglib2.0-dev (>= 2.34.0)
  - Bump stardards-version to 3.9.5. No changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
#define IANJUTA_PROJECT_MANAGER_ERROR ianjuta_project_manager_error_quark()
35
35
 
36
36
/**
37
 
* IANJUTA_PROJECT_MANAGER_PROJECT_ROOT_URI
 
37
* IANJUTA_PROJECT_MANAGER_PROJECT_ROOT_URI:
38
38
*
39
39
* Anjuta shell value set by project manager to the project root uri.
40
40
*/
41
41
#define IANJUTA_PROJECT_MANAGER_PROJECT_ROOT_URI        "project_root_uri"
42
42
 
43
43
/**
44
 
* IANJUTA_PROJECT_MANAGER_CURRENT_PROJECT
 
44
* IANJUTA_PROJECT_MANAGER_CURRENT_PROJECT:
45
45
*
46
46
* Anjuta shell value set by project manager to the current project object
47
47
* which implement #IAnjutaProject interface.
49
49
#define IANJUTA_PROJECT_MANAGER_CURRENT_PROJECT "project_manager_current_project"
50
50
 
51
51
/**
52
 
* IANJUTA_PROJECT_MANAGER_CURRENT_URI
 
52
* IANJUTA_PROJECT_MANAGER_CURRENT_URI:
53
53
*
54
54
* Anjuta shell value set by project manager to the current uri.
55
55
*/
87
87
        AnjutaProjectNodeType (*get_target_type) (IAnjutaProjectManager *obj, GFile *target, GError **err);
88
88
        GList* (*get_targets) (IAnjutaProjectManager *obj, AnjutaProjectNodeType target_type, GError **err);
89
89
        gboolean (*is_open) (IAnjutaProjectManager *obj, GError **err);
 
90
        gboolean (*remove_file) (IAnjutaProjectManager *obj, GFile *file, GError **err);
90
91
 
91
92
};
92
93
 
124
125
 
125
126
gboolean ianjuta_project_manager_is_open (IAnjutaProjectManager *obj, GError **err);
126
127
 
 
128
gboolean ianjuta_project_manager_remove_file (IAnjutaProjectManager *obj, GFile *file, GError **err);
 
129
 
127
130
 
128
131
G_END_DECLS
129
132