28 char *auto_switch_filter;
52GList*
profile_add_profile(
const char *name,
const char *parent,
bool is_global,
const char* auto_switch_filter);
81bool profile_save_settings(
const char* name,
const char* app_env_var_prefix,
const char* app_name,
char** err_info);
GList * profile_get_list(void)
Get the edited profile list.
Definition profile.c:30
void profile_sync(const char *app_env_var_prefix)
Initialize the profile list. Can be called more than once.
Definition profile.c:177
void profile_init(const char *app_env_var_prefix)
Initialize the profile list. Can be called more than once.
Definition profile.c:140
void profile_empty_list(void)
Clear out the profile list.
Definition profile.c:280
bool profile_save_settings(const char *name, const char *app_env_var_prefix, const char *app_name, char **err_info)
Save the profile settings to disk.
Definition profile.c:334
GList * profile_add_profile(const char *name, const char *parent, bool is_global, const char *auto_switch_filter)
Add a profile to the profile list.
Definition profile.c:51
bool profile_delete_current(const char *app_env_var_prefix, char **err_info)
Remove the current profile.
Definition profile.c:251
bool profile_name_is_valid(const char *name)
Determine if a string is a valid profile name.
Definition profile.c:80