Implement sokoke_key_file_get_string_list_default
This commit is contained in:
parent
c31d9936d9
commit
b7f684b345
2 changed files with 95 additions and 65 deletions
|
@ -1,5 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Copyright (C) 2007-2009 Christian Dywan <christian@twotoasts.de>
|
Copyright (C) 2007-2009 Christian Dywan <christian@twotoasts.de>
|
||||||
|
Copyright (C) 2009 Dale Whittaker <dayul@users.sf.net>
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
modify it under the terms of the GNU Lesser General Public
|
modify it under the terms of the GNU Lesser General Public
|
||||||
|
@ -675,6 +676,25 @@ sokoke_key_file_get_boolean_default (GKeyFile* key_file,
|
||||||
return g_key_file_get_boolean (key_file, group, key, error);
|
return g_key_file_get_boolean (key_file, group, key, error);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
gchar**
|
||||||
|
sokoke_key_file_get_string_list_default (GKeyFile* key_file,
|
||||||
|
const gchar* group,
|
||||||
|
const gchar* key,
|
||||||
|
gsize* length,
|
||||||
|
gchar** default_value,
|
||||||
|
gsize* default_length,
|
||||||
|
GError* error)
|
||||||
|
{
|
||||||
|
gchar** value = g_key_file_get_string_list (key_file, group, key, length, NULL);
|
||||||
|
if (!value)
|
||||||
|
{
|
||||||
|
value = g_strdupv (default_value);
|
||||||
|
if (length)
|
||||||
|
*length = *default_length;
|
||||||
|
}
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
gboolean
|
gboolean
|
||||||
sokoke_key_file_save_to_file (GKeyFile* key_file,
|
sokoke_key_file_save_to_file (GKeyFile* key_file,
|
||||||
const gchar* filename,
|
const gchar* filename,
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
/*
|
/*
|
||||||
Copyright (C) 2007-2008 Christian Dywan <christian@twotoasts.de>
|
Copyright (C) 2007-2008 Christian Dywan <christian@twotoasts.de>
|
||||||
|
Copyright (C) 2009 Dale Whittaker <dayul@users.sf.net>
|
||||||
|
|
||||||
This library is free software; you can redistribute it and/or
|
This library is free software; you can redistribute it and/or
|
||||||
modify it under the terms of the GNU Lesser General Public
|
modify it under the terms of the GNU Lesser General Public
|
||||||
|
@ -113,6 +114,15 @@ sokoke_key_file_get_boolean_default (GKeyFile* key_file,
|
||||||
gboolean default_value,
|
gboolean default_value,
|
||||||
GError** error);
|
GError** error);
|
||||||
|
|
||||||
|
gchar**
|
||||||
|
sokoke_key_file_get_string_list_default (GKeyFile* key_file,
|
||||||
|
const gchar* group,
|
||||||
|
const gchar* key,
|
||||||
|
gsize* length,
|
||||||
|
gchar** default_value,
|
||||||
|
gsize* default_length,
|
||||||
|
GError* error);
|
||||||
|
|
||||||
gboolean
|
gboolean
|
||||||
sokoke_key_file_save_to_file (GKeyFile* key_file,
|
sokoke_key_file_save_to_file (GKeyFile* key_file,
|
||||||
const gchar* filename,
|
const gchar* filename,
|
||||||
|
|
Loading…
Reference in a new issue