// Generated by gtkmmproc -- DO NOT MODIFY! #include #include /* Copyright 2006 The gtkmm Development Team * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the Free * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ namespace Glib { /**** Glib::KeyFile ********************************************************/ KeyFile::KeyFile() { gobject_ = g_key_file_new(); owns_gobject_ = true; } KeyFile::KeyFile(GKeyFile* castitem, bool takes_ownership) { gobject_ = castitem; owns_gobject_ = takes_ownership; } KeyFile::~KeyFile() { if (owns_gobject_) g_key_file_free(gobject_); } bool KeyFile::load_from_data(const Glib::ustring& data, KeyFileFlags flags) { GError *error = 0; bool retvalue = g_key_file_load_from_data(gobj(), data.c_str(), data.bytes(), ((GKeyFileFlags)(flags)), &(error)); if(error) :: Glib::Error::throw_exception(error); return retvalue; } bool KeyFile::load_from_data_dirs(const std::string& file, std::string& full_path, KeyFileFlags flags) { GError *error = 0; char *full_path_c; bool retvalue = g_key_file_load_from_data_dirs(gobj(), file.c_str(), &full_path_c, ((GKeyFileFlags)(flags)), &(error)); full_path = Glib::convert_return_gchar_ptr_to_ustring(full_path_c); if(error) :: Glib::Error::throw_exception(error); return retvalue; } Glib::ustring KeyFile::to_data() { GError *error = 0; gsize size; Glib::ustring retvalue = Glib::convert_return_gchar_ptr_to_ustring(g_key_file_to_data(gobj(), &size, &error)); if(error) :: Glib::Error::throw_exception(error); return retvalue; } Glib::ArrayHandle KeyFile::get_groups() const { gchar** group_names = 0; gsize number_of_groups = 0; group_names = g_key_file_get_groups(const_cast(gobj()), &number_of_groups); return Glib::ArrayHandle(group_names, number_of_groups, Glib::OWNERSHIP_DEEP); } Glib::ArrayHandle KeyFile::get_keys(const Glib::ustring& group_name) const { gchar** key_names = 0; gsize number_of_keys = 0; GError* error = 0; key_names = g_key_file_get_keys(const_cast(gobj()), group_name.c_str(), &number_of_keys, &error); if(error) Glib::Error::throw_exception(error); return Glib::ArrayHandle(key_names, number_of_keys, Glib::OWNERSHIP_DEEP); } Glib::ustring KeyFile::get_locale_string(const Glib::ustring& group_name, const Glib::ustring& key) const { GError *error = 0; Glib::ustring retvalue = Glib::convert_return_gchar_ptr_to_ustring(g_key_file_get_locale_string(const_cast(gobj()), group_name.c_str(), key.c_str(), 0, &(error))); if(error) ::Glib::Error::throw_exception(error); return retvalue; } #ifdef GLIBMM_EXCEPTIONS_ENABLED int KeyFile::get_integer(const Glib::ustring& key) const #else int KeyFile::get_integer(const Glib::ustring& key, std::auto_ptr& error) const #endif //GLIBMM_EXCEPTIONS_ENABLED { GError* gerror = 0; int retvalue = g_key_file_get_integer(const_cast(gobj()), NULL, key.c_str(), &(gerror)); #ifdef GLIBMM_EXCEPTIONS_ENABLED if(gerror) ::Glib::Error::throw_exception(gerror); #else if(gerror) error = ::Glib::Error::throw_exception(gerror); #endif //GLIBMM_EXCEPTIONS_ENABLED return retvalue; } #ifdef GLIBMM_EXCEPTIONS_ENABLED double KeyFile::get_double(const Glib::ustring& key) const #else double KeyFile::get_double(const Glib::ustring& key, std::auto_ptr& error) const #endif //GLIBMM_EXCEPTIONS_ENABLED { GError* gerror = 0; double retvalue = g_key_file_get_double(const_cast(gobj()), NULL, key.c_str(), &(gerror)); #ifdef GLIBMM_EXCEPTIONS_ENABLED if(gerror) ::Glib::Error::throw_exception(gerror); #else if(gerror) error = ::Glib::Error::throw_exception(gerror); #endif //GLIBMM_EXCEPTIONS_ENABLED return retvalue; } void KeyFile::set_double(const Glib::ustring& key, double value) { g_key_file_set_double(gobj(), 0, key.c_str(), value); } Glib::ArrayHandle KeyFile::get_string_list(const Glib::ustring& group_name, const Glib::ustring& key) const { gchar** string_list = 0; gsize length_of_list = 0; GError* error = 0; string_list = g_key_file_get_string_list(const_cast(gobj()), group_name.c_str(), key.c_str(), &length_of_list, &error); if(error) Glib::Error::throw_exception(error); return Glib::ArrayHandle(string_list, length_of_list, Glib::OWNERSHIP_DEEP); } Glib::ArrayHandle KeyFile::get_locale_string_list(const Glib::ustring& group_name, const Glib::ustring& key, const Glib::ustring& locale) const { gchar** string_list = 0; gsize length_of_list = 0; GError* error = 0; string_list = g_key_file_get_locale_string_list(const_cast(gobj()), group_name.c_str(), key.c_str(), locale.c_str(), &length_of_list, &error); if(error) Glib::Error::throw_exception(error); return Glib::ArrayHandle(string_list, length_of_list, Glib::OWNERSHIP_DEEP); } Glib::ArrayHandle KeyFile::get_boolean_list(const Glib::ustring& group_name, const Glib::ustring& key) const { gboolean* bool_list = 0; gsize length_of_list = 0; GError* error = 0; bool_list = g_key_file_get_boolean_list(const_cast(gobj()), group_name.c_str(), key.c_str(), &length_of_list, &error); if(error) Glib::Error::throw_exception(error); return Glib::ArrayHandle(&bool_list, length_of_list, Glib::OWNERSHIP_DEEP); } Glib::ArrayHandle KeyFile::get_integer_list(const Glib::ustring& group_name, const Glib::ustring& key) const { gint* integer_list = 0; gsize length_of_list = 0; GError* error = 0; integer_list = g_key_file_get_integer_list(const_cast(gobj()), group_name.c_str(), key.c_str(), &length_of_list, &error); if(error) Glib::Error::throw_exception(error); return Glib::ArrayHandle(integer_list, length_of_list, Glib::OWNERSHIP_DEEP); } Glib::ArrayHandle KeyFile::get_double_list(const Glib::ustring& group_name, const Glib::ustring& key) const { gdouble* integer_list = 0; gsize length_of_list = 0; GError* error = 0; integer_list = g_key_file_get_double_list(const_cast(gobj()), group_name.c_str(), key.c_str(), &length_of_list, &error); if(error) Glib::Error::throw_exception(error); return Glib::ArrayHandle(integer_list, length_of_list, Glib::OWNERSHIP_DEEP); } void KeyFile::set_string_list(const Glib::ustring& group_name, const Glib::ustring& key, const Glib::ArrayHandle& list) { gsize length_of_list = list.size(); g_key_file_set_string_list(gobj(), group_name.c_str(), key.c_str(), list.data(), length_of_list); } void KeyFile::set_locale_string_list(const Glib::ustring& group_name, const Glib::ustring& key, const Glib::ustring& locale, const Glib::ArrayHandle& list) { gsize length_of_list = list.size(); g_key_file_set_locale_string_list(gobj(), group_name.c_str(), key.c_str(), locale.c_str(), list.data(), length_of_list); } void KeyFile::set_integer_list(const Glib::ustring& group_name, const Glib::ustring& key, Glib::ArrayHandle& list) { gsize length_of_list = list.size(); g_key_file_set_integer_list(gobj(), group_name.c_str(), key.c_str(), const_cast(list.data()), length_of_list); } void KeyFile::set_double_list(const Glib::ustring& group_name, const Glib::ustring& key, Glib::ArrayHandle& list) { gsize length_of_list = list.size(); g_key_file_set_double_list(gobj(), group_name.c_str(), key.c_str(), const_cast(list.data()), length_of_list); } void KeyFile::set_boolean_list(const Glib::ustring& group_name, const Glib::ustring& key, Glib::ArrayHandle& list) { gsize length_of_list = list.size(); g_key_file_set_boolean_list(gobj(), group_name.c_str(), key.c_str(), *(list.data()), length_of_list); } Glib::ustring KeyFile::get_comment() const { GError *error = 0; Glib::ustring retvalue = Glib::convert_return_gchar_ptr_to_ustring(g_key_file_get_comment(const_cast(gobj()), 0, 0, &(error))); if(error) ::Glib::Error::throw_exception(error); return retvalue; } Glib::ustring KeyFile::get_comment(const Glib::ustring& group_name) const { GError *error = 0; Glib::ustring retvalue = Glib::convert_return_gchar_ptr_to_ustring(g_key_file_get_comment(const_cast(gobj()), group_name.c_str(), 0, &(error))); if(error) ::Glib::Error::throw_exception(error); return retvalue; } void KeyFile::set_comment(const Glib::ustring& comment) { GError *error = 0; g_key_file_set_comment(gobj(), 0, 0, comment.c_str(), &(error)); if(error) ::Glib::Error::throw_exception(error); } void KeyFile::set_comment(const Glib::ustring& group_name, const Glib::ustring& comment) { GError *error = 0; g_key_file_set_comment(gobj(), group_name.c_str(), 0, comment.c_str(), &(error)); if(error) ::Glib::Error::throw_exception(error); } } namespace { } // anonymous namespace Glib::KeyFileError::KeyFileError(Glib::KeyFileError::Code error_code, const Glib::ustring& error_message) : Glib::Error (G_KEY_FILE_ERROR, error_code, error_message) {} Glib::KeyFileError::KeyFileError(GError* gobject) : Glib::Error (gobject) {} Glib::KeyFileError::Code Glib::KeyFileError::code() const { return static_cast(Glib::Error::code()); } #ifdef GLIBMM_EXCEPTIONS_ENABLED void Glib::KeyFileError::throw_func(GError* gobject) { throw Glib::KeyFileError(gobject); } #else //When not using exceptions, we just pass the Exception object around without throwing it: std::auto_ptr Glib::KeyFileError::throw_func(GError* gobject) { return std::auto_ptr(new Glib::KeyFileError(gobject)); } #endif //GLIBMM_EXCEPTIONS_ENABLED namespace Glib { #ifdef GLIBMM_EXCEPTIONS_ENABLED bool KeyFile::load_from_file(const std::string& filename, KeyFileFlags flags) #else bool KeyFile::load_from_file(const std::string& filename, KeyFileFlags flags, std::auto_ptr& error) #endif //GLIBMM_EXCEPTIONS_ENABLED { GError* gerror = 0; bool retvalue = g_key_file_load_from_file(gobj(), filename.c_str(), ((GKeyFileFlags)(flags)), &(gerror)); #ifdef GLIBMM_EXCEPTIONS_ENABLED if(gerror) ::Glib::Error::throw_exception(gerror); #else if(gerror) error = ::Glib::Error::throw_exception(gerror); #endif //GLIBMM_EXCEPTIONS_ENABLED return retvalue; } Glib::ustring KeyFile::get_start_group() const { return Glib::convert_return_gchar_ptr_to_ustring(g_key_file_get_start_group(const_cast(gobj()))); } bool KeyFile::has_group(const Glib::ustring& group_name) const { return g_key_file_has_group(const_cast(gobj()), group_name.c_str()); } #ifdef GLIBMM_EXCEPTIONS_ENABLED bool KeyFile::has_key(const Glib::ustring& group_name, const Glib::ustring& key) const #else bool KeyFile::has_key(const Glib::ustring& group_name, const Glib::ustring& key, std::auto_ptr& error) const #endif //GLIBMM_EXCEPTIONS_ENABLED { GError* gerror = 0; bool retvalue = g_key_file_has_key(const_cast(gobj()), group_name.c_str(), key.c_str(), &(gerror)); #ifdef GLIBMM_EXCEPTIONS_ENABLED if(gerror) ::Glib::Error::throw_exception(gerror); #else if(gerror) error = ::Glib::Error::throw_exception(gerror); #endif //GLIBMM_EXCEPTIONS_ENABLED return retvalue; } #ifdef GLIBMM_EXCEPTIONS_ENABLED Glib::ustring KeyFile::get_value(const Glib::ustring& group_name, const Glib::ustring& key) const #else Glib::ustring KeyFile::get_value(const Glib::ustring& group_name, const Glib::ustring& key, std::auto_ptr& error) const #endif //GLIBMM_EXCEPTIONS_ENABLED { GError* gerror = 0; Glib::ustring retvalue = Glib::convert_return_gchar_ptr_to_ustring(g_key_file_get_value(const_cast(gobj()), group_name.c_str(), key.c_str(), &(gerror))); #ifdef GLIBMM_EXCEPTIONS_ENABLED if(gerror) ::Glib::Error::throw_exception(gerror); #else if(gerror) error = ::Glib::Error::throw_exception(gerror); #endif //GLIBMM_EXCEPTIONS_ENABLED return retvalue; } #ifdef GLIBMM_EXCEPTIONS_ENABLED Glib::ustring KeyFile::get_string(const Glib::ustring& group_name, const Glib::ustring& key) const #else Glib::ustring KeyFile::get_string(const Glib::ustring& group_name, const Glib::ustring& key, std::auto_ptr& error) const #endif //GLIBMM_EXCEPTIONS_ENABLED { GError* gerror = 0; Glib::ustring retvalue = Glib::convert_return_gchar_ptr_to_ustring(g_key_file_get_string(const_cast(gobj()), group_name.c_str(), key.c_str(), &(gerror))); #ifdef GLIBMM_EXCEPTIONS_ENABLED if(gerror) ::Glib::Error::throw_exception(gerror); #else if(gerror) error = ::Glib::Error::throw_exception(gerror); #endif //GLIBMM_EXCEPTIONS_ENABLED return retvalue; } #ifdef GLIBMM_EXCEPTIONS_ENABLED Glib::ustring KeyFile::get_locale_string(const Glib::ustring& group_name, const Glib::ustring& key, const Glib::ustring& locale) const #else Glib::ustring KeyFile::get_locale_string(const Glib::ustring& group_name, const Glib::ustring& key, const Glib::ustring& locale, std::auto_ptr& error) const #endif //GLIBMM_EXCEPTIONS_ENABLED { GError* gerror = 0; Glib::ustring retvalue = Glib::convert_return_gchar_ptr_to_ustring(g_key_file_get_locale_string(const_cast(gobj()), group_name.c_str(), key.c_str(), locale.c_str(), &(gerror))); #ifdef GLIBMM_EXCEPTIONS_ENABLED if(gerror) ::Glib::Error::throw_exception(gerror); #else if(gerror) error = ::Glib::Error::throw_exception(gerror); #endif //GLIBMM_EXCEPTIONS_ENABLED return retvalue; } #ifdef GLIBMM_EXCEPTIONS_ENABLED bool KeyFile::get_boolean(const Glib::ustring& group_name, const Glib::ustring& key) const #else bool KeyFile::get_boolean(const Glib::ustring& group_name, const Glib::ustring& key, std::auto_ptr& error) const #endif //GLIBMM_EXCEPTIONS_ENABLED { GError* gerror = 0; bool retvalue = g_key_file_get_boolean(const_cast(gobj()), group_name.c_str(), key.c_str(), &(gerror)); #ifdef GLIBMM_EXCEPTIONS_ENABLED if(gerror) ::Glib::Error::throw_exception(gerror); #else if(gerror) error = ::Glib::Error::throw_exception(gerror); #endif //GLIBMM_EXCEPTIONS_ENABLED return retvalue; } #ifdef GLIBMM_EXCEPTIONS_ENABLED int KeyFile::get_integer(const Glib::ustring& group_name, const Glib::ustring& key) const #else int KeyFile::get_integer(const Glib::ustring& group_name, const Glib::ustring& key, std::auto_ptr& error) const #endif //GLIBMM_EXCEPTIONS_ENABLED { GError* gerror = 0; int retvalue = g_key_file_get_integer(const_cast(gobj()), group_name.c_str(), key.c_str(), &(gerror)); #ifdef GLIBMM_EXCEPTIONS_ENABLED if(gerror) ::Glib::Error::throw_exception(gerror); #else if(gerror) error = ::Glib::Error::throw_exception(gerror); #endif //GLIBMM_EXCEPTIONS_ENABLED return retvalue; } #ifdef GLIBMM_EXCEPTIONS_ENABLED double KeyFile::get_double(const Glib::ustring& group_name, const Glib::ustring& key) const #else double KeyFile::get_double(const Glib::ustring& group_name, const Glib::ustring& key, std::auto_ptr& error) const #endif //GLIBMM_EXCEPTIONS_ENABLED { GError* gerror = 0; double retvalue = g_key_file_get_double(const_cast(gobj()), group_name.c_str(), key.c_str(), &(gerror)); #ifdef GLIBMM_EXCEPTIONS_ENABLED if(gerror) ::Glib::Error::throw_exception(gerror); #else if(gerror) error = ::Glib::Error::throw_exception(gerror); #endif //GLIBMM_EXCEPTIONS_ENABLED return retvalue; } void KeyFile::set_double(const Glib::ustring& group_name, const Glib::ustring& key, double value) { g_key_file_set_double(gobj(), group_name.c_str(), key.c_str(), value); } #ifdef GLIBMM_EXCEPTIONS_ENABLED Glib::ustring KeyFile::get_comment(const Glib::ustring& group_name, const Glib::ustring& key) const #else Glib::ustring KeyFile::get_comment(const Glib::ustring& group_name, const Glib::ustring& key, std::auto_ptr& error) const #endif //GLIBMM_EXCEPTIONS_ENABLED { GError* gerror = 0; Glib::ustring retvalue = Glib::convert_return_gchar_ptr_to_ustring(g_key_file_get_comment(const_cast(gobj()), group_name.c_str(), key.c_str(), &(gerror))); #ifdef GLIBMM_EXCEPTIONS_ENABLED if(gerror) ::Glib::Error::throw_exception(gerror); #else if(gerror) error = ::Glib::Error::throw_exception(gerror); #endif //GLIBMM_EXCEPTIONS_ENABLED return retvalue; } void KeyFile::set_list_separator(gchar separator) { g_key_file_set_list_separator(gobj(), separator); } void KeyFile::set_value(const Glib::ustring& group_name, const Glib::ustring& key, const Glib::ustring& value) { g_key_file_set_value(gobj(), group_name.c_str(), key.c_str(), value.c_str()); } void KeyFile::set_string(const Glib::ustring& group_name, const Glib::ustring& key, const Glib::ustring& string) { g_key_file_set_string(gobj(), group_name.c_str(), key.c_str(), string.c_str()); } void KeyFile::set_locale_string(const Glib::ustring& group_name, const Glib::ustring& key, const Glib::ustring& locale, const Glib::ustring& string) { g_key_file_set_locale_string(gobj(), group_name.c_str(), key.c_str(), locale.c_str(), string.c_str()); } void KeyFile::set_boolean(const Glib::ustring& group_name, const Glib::ustring& key, bool value) { g_key_file_set_boolean(gobj(), group_name.c_str(), key.c_str(), static_cast(value)); } void KeyFile::set_integer(const Glib::ustring& group_name, const Glib::ustring& key, int value) { g_key_file_set_integer(gobj(), group_name.c_str(), key.c_str(), value); } #ifdef GLIBMM_EXCEPTIONS_ENABLED void KeyFile::set_comment(const Glib::ustring& group_name, const Glib::ustring& key, const Glib::ustring& comment) #else void KeyFile::set_comment(const Glib::ustring& group_name, const Glib::ustring& key, const Glib::ustring& comment, std::auto_ptr& error) #endif //GLIBMM_EXCEPTIONS_ENABLED { GError* gerror = 0; g_key_file_set_comment(gobj(), group_name.c_str(), key.c_str(), comment.c_str(), &(gerror)); #ifdef GLIBMM_EXCEPTIONS_ENABLED if(gerror) ::Glib::Error::throw_exception(gerror); #else if(gerror) error = ::Glib::Error::throw_exception(gerror); #endif //GLIBMM_EXCEPTIONS_ENABLED } #ifdef GLIBMM_EXCEPTIONS_ENABLED void KeyFile::remove_comment(const Glib::ustring& group_name, const Glib::ustring& key) #else void KeyFile::remove_comment(const Glib::ustring& group_name, const Glib::ustring& key, std::auto_ptr& error) #endif //GLIBMM_EXCEPTIONS_ENABLED { GError* gerror = 0; g_key_file_remove_comment(gobj(), group_name.c_str(), key.c_str(), &(gerror)); #ifdef GLIBMM_EXCEPTIONS_ENABLED if(gerror) ::Glib::Error::throw_exception(gerror); #else if(gerror) error = ::Glib::Error::throw_exception(gerror); #endif //GLIBMM_EXCEPTIONS_ENABLED } #ifdef GLIBMM_EXCEPTIONS_ENABLED void KeyFile::remove_key(const Glib::ustring& group_name, const Glib::ustring& key) #else void KeyFile::remove_key(const Glib::ustring& group_name, const Glib::ustring& key, std::auto_ptr& error) #endif //GLIBMM_EXCEPTIONS_ENABLED { GError* gerror = 0; g_key_file_remove_key(gobj(), group_name.c_str(), key.c_str(), &(gerror)); #ifdef GLIBMM_EXCEPTIONS_ENABLED if(gerror) ::Glib::Error::throw_exception(gerror); #else if(gerror) error = ::Glib::Error::throw_exception(gerror); #endif //GLIBMM_EXCEPTIONS_ENABLED } #ifdef GLIBMM_EXCEPTIONS_ENABLED void KeyFile::remove_group(const Glib::ustring& group_name) #else void KeyFile::remove_group(const Glib::ustring& group_name, std::auto_ptr& error) #endif //GLIBMM_EXCEPTIONS_ENABLED { GError* gerror = 0; g_key_file_remove_group(gobj(), group_name.c_str(), &(gerror)); #ifdef GLIBMM_EXCEPTIONS_ENABLED if(gerror) ::Glib::Error::throw_exception(gerror); #else if(gerror) error = ::Glib::Error::throw_exception(gerror); #endif //GLIBMM_EXCEPTIONS_ENABLED } } // namespace Glib