1 /*
2 * This file is a part of the Cairo-Dock project
3 *
4 * Copyright : (C) see the 'copyright' file.
5 * E-mail    : see the 'copyright' file.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 3
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19 
20 
21 #ifndef __CAIRO_DOCK_THEMES_MANAGER__
22 #define  __CAIRO_DOCK_THEMES_MANAGER__
23 
24 #include <glib.h>
25 #include <gtk/gtk.h>
26 G_BEGIN_DECLS
27 
28 /**@file cairo-dock-themes-manager.h This class defines the structure of the global theme (launchers, icons, plug-ins, configuration files, etc).
29 * It also provides methods to manage the themes, like exporting the current theme, importing new themes, deleting themes, etc.
30 */
31 
32 gboolean cairo_dock_current_theme_need_save (void);
33 
34 void cairo_dock_delete_conf_file (const gchar *cConfFilePath);
35 
36 gboolean cairo_dock_add_conf_file (const gchar *cOriginalConfFilePath, const gchar *cConfFilePath);
37 
38 /** Update a conf file with a list of values of the form : {type, name of the groupe, name of the key, value}. Must end with G_TYPE_INVALID.
39 *@param cConfFilePath path to the conf file.
40 *@param iFirstDataType type of the first value.
41 */
42 void cairo_dock_update_conf_file (const gchar *cConfFilePath, GType iFirstDataType, ...);
43 
44 /** Write a key file on the disk.
45 *@param pKeyFile the key-file
46 *@param cConfFilePath its path on the disk
47 */
48 void cairo_dock_write_keys_to_conf_file (GKeyFile *pKeyFile, const gchar *cConfFilePath);
49 
50 
51 /** Export the current theme to a given name. Exported themes can be imported directly from the Theme Manager.
52  * @param cNewThemeName name to export the theme to.
53  * @param bSaveBehavior whether to save the behavior parameters too.
54  * @param bSaveLaunchers whether to save the launchers too.
55  * @return TRUE if the theme could be exported succefuly.
56  */
57 gboolean cairo_dock_export_current_theme (const gchar *cNewThemeName, gboolean bSaveBehavior, gboolean bSaveLaunchers);
58 
59 /** Create a package of the current theme. Packages can be distributed easily, and imported into the dock by a mere drag and drop into the Theme Manager. The package is placed in the cDirPath directory (or $HOME if cDirPath is wrong).
60  * @param cThemeName name of the package.
61  * @param cDirPath path to the directory
62  * @return TRUE if the theme could be packaged succefuly.
63  */
64 gboolean cairo_dock_package_current_theme (const gchar *cThemeName, const gchar *cDirPath);
65 
66 
67 /** Extract a package into the themes folder. Does not load it.
68  * @param cPackagePath path of a package. If the package is distant, it is first downoladed.
69  * @return the path of the theme folder, or NULL if anerror occured.
70  */
71 gchar * cairo_dock_depackage_theme (const gchar *cPackagePath);
72 
73 /** Remove some exported themes from the hard-disk.
74  * @param cThemesList a list of theme names, NULL-terminated.
75  * @return TRUE if the themes has been succefuly deleted.
76  */
77 gboolean cairo_dock_delete_themes (gchar **cThemesList);
78 
79 /** Import a theme, which can be : a local theme, a user theme, a distant theme, or even the path to a packaged theme.
80  * @param cThemeName name of the theme to import.
81  * @param bLoadBehavior whether to import the behavior parameters too.
82  * @param bLoadLaunchers whether to import the launchers too.
83  * @return TRUE if the theme could be imported succefuly.
84  */
85 gboolean cairo_dock_import_theme (const gchar *cThemeName, gboolean bLoadBehavior, gboolean bLoadLaunchers);
86 
87 /** Asynchronously import a theme, which can be : a local theme, a user theme, a distant theme, or even the path to a packaged theme. This function is non-blocking, you'll get a CairoTask that you can discard at any time, and you'll get the result of the import as the first argument of the callback (the second being the data you passed to this function).
88  * Note that only downloading or unpacking the theme is done asynchronously, actually copying the files in the current theme folder is not (because it couldn't be cancelled without first making a backup).
89  * @param cThemeName name of the theme to import.
90  * @param bLoadBehavior whether to import the behavior parameters too.
91  * @param bLoadLaunchers whether to import the launchers too.
92  * @param pCallback function called when the download is finished. It takes the result of the import (TRUE for a successful import) and the data you've set here.
93  * @param data data to be passed to the callback.
94  * @return the Task that is doing the job. Keep it and use \ref cairo_dock_discard_task if you want to discard the download before it's completed (for instance if the user cancels it), or \ref cairo_dock_free_task inside your callback.
95  */
96 GldiTask *cairo_dock_import_theme_async (const gchar *cThemeName, gboolean bLoadBehavior, gboolean bLoadLaunchers, GFunc pCallback, gpointer data);
97 
98 /** Define the paths of themes. Do it just after 'gldi_init'.
99 *@param cRootDataDirPath path to the root folder of libgldi
100 *@param cExtraDirPath path to the extras themes (plug-in themes)
101 *@param cThemesDirPath path to the user themes
102 *@param cCurrentThemeDirPath path to the current theme
103 *@param cLocalThemeDirPath path to the installed themes (default themes)
104 *@param cDistantThemeDirName folder of the themes on the server
105 *@param cThemeServerAdress adress of the themes server
106 */
107 void cairo_dock_set_paths (gchar *cRootDataDirPath, gchar *cExtraDirPath, gchar *cThemesDirPath, gchar *cCurrentThemeDirPath, gchar *cLocalThemeDirPath, gchar *cDistantThemeDirName, gchar *cThemeServerAdress);
108 
109 
110 G_END_DECLS
111 #endif
112