1 /* ide-config-manager.h
2  *
3  * Copyright 2016-2019 Christian Hergert <chergert@redhat.com>
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  *
18  * SPDX-License-Identifier: GPL-3.0-or-later
19  */
20 
21 #pragma once
22 
23 #if !defined (IDE_FOUNDRY_INSIDE) && !defined (IDE_FOUNDRY_COMPILATION)
24 # error "Only <libide-foundry.h> can be included directly."
25 #endif
26 
G_DEFINE_INTERFACE(IdeBuildTarget,ide_build_target,IDE_TYPE_OBJECT)27 #include <libide-core.h>
28 
29 #include "ide-foundry-types.h"
30 
31 G_BEGIN_DECLS
32 
33 #define IDE_TYPE_CONFIG_MANAGER (ide_config_manager_get_type())
34 
35 IDE_AVAILABLE_IN_3_32
36 G_DECLARE_FINAL_TYPE (IdeConfigManager, ide_config_manager, IDE, CONFIG_MANAGER, IdeObject)
37 
38 IDE_AVAILABLE_IN_3_32
39 IdeConfigManager *ide_config_manager_from_context     (IdeContext           *context);
40 IDE_AVAILABLE_IN_3_32
41 IdeConfigManager *ide_config_manager_ref_from_context (IdeContext           *context);
42 IDE_AVAILABLE_IN_3_32
ide_build_target_default_init(IdeBuildTargetInterface * iface)43 IdeConfig        *ide_config_manager_get_current      (IdeConfigManager     *self);
44 IDE_AVAILABLE_IN_3_32
45 IdeConfig        *ide_config_manager_ref_current      (IdeConfigManager     *self);
46 IDE_AVAILABLE_IN_3_32
47 void              ide_config_manager_set_current      (IdeConfigManager     *self,
48                                                        IdeConfig            *configuration);
49 IDE_AVAILABLE_IN_3_32
50 IdeConfig        *ide_config_manager_get_config       (IdeConfigManager     *self,
51                                                        const gchar          *id);
52 IDE_AVAILABLE_IN_3_32
53 void              ide_config_manager_duplicate        (IdeConfigManager     *self,
54                                                        IdeConfig            *config);
55 IDE_AVAILABLE_IN_3_32
56 void              ide_config_manager_delete           (IdeConfigManager     *self,
ide_build_target_get_install_directory(IdeBuildTarget * self)57                                                        IdeConfig            *config);
58 IDE_AVAILABLE_IN_3_32
59 void              ide_config_manager_save_async       (IdeConfigManager     *self,
60                                                        GCancellable         *cancellable,
61                                                        GAsyncReadyCallback   callback,
62                                                        gpointer              user_data);
63 IDE_AVAILABLE_IN_3_32
64 gboolean          ide_config_manager_save_finish      (IdeConfigManager     *self,
65                                                        GAsyncResult         *result,
66                                                        GError              **error);
67 IDE_AVAILABLE_IN_3_32
68 gboolean          ide_config_manager_get_ready        (IdeConfigManager     *self);
69 
70 G_END_DECLS
71