// -*- c++ -*- // Generated by gtkmmproc -- DO NOT MODIFY! #ifndef _GCONFMM_CLIENT_H #define _GCONFMM_CLIENT_H #include // -*- Mode: C++; c-basic-offset: 4 -*- /* $Id: client.hg,v 1.25 2005/03/03 13:17:47 murrayc Exp $ */ /* client.hg * * Copyright (C) 2000-2002 GConfmm 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. */ #include #include #include #include #include #include #include #include #include #ifndef DOXYGEN_SHOULD_SKIP_THIS typedef struct _GConfClient GConfClient; typedef struct _GConfClientClass GConfClientClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ namespace Gnome { namespace Conf { class Client_Class; } // namespace Conf } // namespace Gnome namespace Gnome { namespace Conf { /** @addtogroup gconfmmEnums Enums and Flags */ /** * @ingroup gconfmmEnums */ enum ClientErrorHandlingMode { CLIENT_HANDLE_NONE, CLIENT_HANDLE_UNRETURNED, CLIENT_HANDLE_ALL }; } // namespace Conf } // namespace Gnome #ifndef DOXYGEN_SHOULD_SKIP_THIS namespace Glib { template <> class Value : public Glib::Value_Enum { public: static GType value_type() G_GNUC_CONST; }; } // namespace Glib #endif /* DOXYGEN_SHOULD_SKIP_THIS */ namespace Gnome { namespace Conf { /** * @ingroup gconfmmEnums */ enum ClientPreloadType { CLIENT_PRELOAD_NONE, CLIENT_PRELOAD_ONELEVEL, CLIENT_PRELOAD_RECURSIVE }; } // namespace Conf } // namespace Gnome #ifndef DOXYGEN_SHOULD_SKIP_THIS namespace Glib { template <> class Value : public Glib::Value_Enum { public: static GType value_type() G_GNUC_CONST; }; } // namespace Glib #endif /* DOXYGEN_SHOULD_SKIP_THIS */ namespace Gnome { namespace Conf { /** Exception class for Gnome::Conf::Client errors. */ class Error : public Glib::Error { public: enum Code { SUCCESS = 0, NO_SERVER = 2, NO_PERMISSION = 3, BAD_ADDRESS = 4, PARSE_ERROR = 6, CORRUPT = 7, TYPE_MISMATCH = 8, IS_DIR = 9, IS_KEY = 10, OVERRIDDEN = 11, OAF_ERROR = 12, LOCAL_ENGINE = 13, LOCK_FAILED = 14, NO_WRITABLE_DATABASE = 15, IN_SHUTDOWN = 16 }; Error(Code error_code, const Glib::ustring& error_message); explicit Error(GError* gobject); Code code() const; #ifndef DOXYGEN_SHOULD_SKIP_THIS private: #ifdef GLIBMM_EXCEPTIONS_ENABLED static void throw_func(GError* gobject); #else //When not using exceptions, we just pass the Exception object around without throwing it: static std::auto_ptr throw_func(GError* gobject); #endif //GLIBMM_EXCEPTIONS_ENABLED friend void wrap_init(); // uses throw_func() #endif }; } // namespace Conf } // namespace Gnome #ifndef DOXYGEN_SHOULD_SKIP_THIS namespace Glib { template <> class Value : public Glib::Value_Enum { public: static GType value_type() G_GNUC_CONST; }; } // namespace Glib #endif /* DOXYGEN_SHOULD_SKIP_THIS */ namespace Gnome { namespace Conf { #ifndef DOXYGEN_SHOULD_SKIP_THIS template struct BasicTypeTraits { typedef T CppType; typedef CppType* CType; typedef CppType* CTypeNonConst; static CType to_c_type(CppType val) { CType pVal = new CppType; *pVal = val; return pVal; } static CType to_c_type(CType ptr) { return ptr; } static CppType to_cpp_type(CType ptr) { if(ptr) { return *ptr; } else return CppType(); } static void release_c_type(CType ptr) { if(ptr) delete ptr; } }; //Template specialization: template <> struct BasicTypeTraits { typedef int CppType; typedef CppType* CType; typedef CppType* CTypeNonConst; static CType to_c_type(CppType val) { return (int*)GINT_TO_POINTER(val); } static CType to_c_type(CType ptr) { return ptr; } static CppType to_cpp_type(CType ptr) { if(ptr) { return GPOINTER_TO_INT(ptr); } else return CppType(); } static void release_c_type(CType /* ptr */) { } }; template <> struct BasicTypeTraits { typedef bool CppType; typedef gboolean* CType; typedef gboolean* CTypeNonConst; static CType to_c_type(CppType val) { return (int*)GINT_TO_POINTER(val); } static CType to_c_type(CType ptr) { return ptr; } static CppType to_cpp_type(CType ptr) { if(ptr) { //We use this for gboolean too, because it is actually an int. return GPOINTER_TO_INT(ptr); } else return CppType(); } static void release_c_type(CType /* ptr */) { } }; #endif //DOXYGEN_SHOULD_SKIP_THIS /** The main Gnome::Conf object. * This class allows you to interface withe the Gnome configuration system. * Generally, it stores key-value pairs. The keys have an hierarchical * namespace, with elements separated by slashes. The values are either * typed primitives (int, bool, string, float or a @c Schema), or lists of * primitives or pairs of primitives (for limits on the compound values, * see Value). For conventions on the names of keys, see the GConf * documentation. */ class Client : public Glib::Object, public SetInterface { #ifndef DOXYGEN_SHOULD_SKIP_THIS public: typedef Client CppObjectType; typedef Client_Class CppClassType; typedef GConfClient BaseObjectType; typedef GConfClientClass BaseClassType; private: friend class Client_Class; static CppClassType client_class_; private: // noncopyable Client(const Client&); Client& operator=(const Client&); protected: explicit Client(const Glib::ConstructParams& construct_params); explicit Client(GConfClient* castitem); #endif /* DOXYGEN_SHOULD_SKIP_THIS */ public: virtual ~Client(); #ifndef DOXYGEN_SHOULD_SKIP_THIS static GType get_type() G_GNUC_CONST; static GType get_base_type() G_GNUC_CONST; #endif ///Provides access to the underlying C GObject. GConfClient* gobj() { return reinterpret_cast(gobject_); } ///Provides access to the underlying C GObject. const GConfClient* gobj() const { return reinterpret_cast(gobject_); } ///Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. GConfClient* gobj_copy(); private: public: /** Get the default client object for this application. * The object is a Singleton, so you will always get the same instance. * Most applications should use this. */ static Glib::RefPtr get_default_client(); static Glib::RefPtr get_client_for_engine(GConfEngine* engine); /** Add a directory to the list of directories the Client will watch. * Any changes to keys below this directory will cause the "value_changed" signal * to be emitted. When you add the directory, you can request that the Client * preloads its contents - see ClientPreloadType for details. * * Added directories may not overlap. That is, if you add "/foo", you may not * add "/foo/bar". However you can add "/foo" and "/bar". You can also add "/foo" * multiple times; if you add a directory multiple times, it will not be removed * until you call remove_dir() an equal number of times. * @param dir: the directory to watch. * @param preload: the preload type (if any) to be performed. */ #ifdef GLIBMM_EXCEPTIONS_ENABLED void add_dir(const Glib::ustring& dir, ClientPreloadType preload = CLIENT_PRELOAD_NONE); #else void add_dir(const Glib::ustring& dir, ClientPreloadType preload, std::auto_ptr& error); #endif //GLIBMM_EXCEPTIONS_ENABLED /** Remove a directory from the list of directories the Client will watch. * @see add_dir() */ #ifdef GLIBMM_EXCEPTIONS_ENABLED void remove_dir(const Glib::ustring& dir); #else void remove_dir(const Glib::ustring& dir, std::auto_ptr& error); #endif //GLIBMM_EXCEPTIONS_ENABLED // API-TODO: Should this return a Connection ? /** Request notification of changes to namespace_section. * This includes the key @p namespace_section itself, and any keys below it. * For the notification to happen, @p namespace_section must be equal to or * below one of the directories added with add_dir(). * You can still call notify_add() for other directories, * but no notification will be received until you add a directory above * or equal to @p namespace_section. One implication of this is that remove_dir() * temporarily disables notifications that were below the removed directory. * * The callback will be called with the key that changed and the Entry that * holds the new Value. If the Value has a type of VALUE_INVALID, then the key has been unset. * * The function returns a connection ID you can use when calling notify_remove(). * * @param namespace_section: the namespace section for which notification is required. * @param callback: the sigc::slot to call when the a key under namespace_section changes. * @return a connection id that can be passed to notify_remove() to cancel the notification request. */ guint notify_add(const Glib::ustring& namespace_section, Callback callback); /** Cancel a notification request. * @param cnxn: a connection id, previously returned by notify_add() * @see notify_add() */ #ifdef GLIBMM_EXCEPTIONS_ENABLED void notify_remove(guint cnxn); #else void notify_remove(guint cnxn, std::auto_ptr& error); #endif //GLIBMM_EXCEPTIONS_ENABLED void set_error_handling(ClientErrorHandlingMode mode); /** Clear the client-side cache */ void clear_cache(); /** Preloads a directory. * Normally this happens automatically with add_dir(), but if you've called clear_cache() * you may need to do it again. * @see add_dir() */ #ifdef GLIBMM_EXCEPTIONS_ENABLED void preload(const Glib::ustring& dirname, ClientPreloadType type); #else void preload(const Glib::ustring& dirname, ClientPreloadType type, std::auto_ptr& error); #endif //GLIBMM_EXCEPTIONS_ENABLED /** Get the value of a configuration key. * @parameter key: the configuration key to retrieve. * @return the Value of the key. * @throw Gnome::Conf::Error. */ #ifdef GLIBMM_EXCEPTIONS_ENABLED Value get(const Glib::ustring& key) const; #else Value get(const Glib::ustring& key, std::auto_ptr& error) const; #endif //GLIBMM_EXCEPTIONS_ENABLED /** Get the value of a configuration key, without falling back to the default if * the key has not been set. In that case, the type of the value will be * VALUE_INVALID. * @param key: the configuration key to retrieve. * @return the Value of the key. * @throw Gnome::Conf::Error. */ #ifdef GLIBMM_EXCEPTIONS_ENABLED Value get_without_default(const Glib::ustring& key) const; #else Value get_without_default(const Glib::ustring& key, std::auto_ptr& error) const; #endif //GLIBMM_EXCEPTIONS_ENABLED /** Get the default value of this key by looking it up in the appropriate schema. * @parameter key: the configuration key to retrieve. * @return the default Value of the key. * @throw Gnome::Conf::Error. */ #ifdef GLIBMM_EXCEPTIONS_ENABLED Value get_default_from_schema(const Glib::ustring& key) const; #else Value get_default_from_schema(const Glib::ustring& key, std::auto_ptr& error) const; #endif //GLIBMM_EXCEPTIONS_ENABLED /** Get the complete Entry of the specified key. * Uses the default locale * @param key the configuration key to retrieve. * @param use_schema_default whether to fall back to the Schema default value if the specified configuration key * has not been set. * @return an Entry for the corresponding configuration key. * @throw Gnome::Conf::Error. */ Entry get_entry(const Glib::ustring& key, bool use_schema_default = true) const; /** Get the complete Entry of the specified key. * @param key the configuration key to retrieve. * @param locale the locale for the user-visible strings in the Entry's Schema. Use 0 to use the default. * @param use_schema_default whether to fall back to the Schema default value if the specified configuration key * has not been set. * @return an Entry for the corresponding configuration key. * @throw Gnome::Conf::Error. */ #ifdef GLIBMM_EXCEPTIONS_ENABLED Entry get_entry(const Glib::ustring& key, const char* locale, bool use_schema_default = true) const; #else Entry get_entry(const Glib::ustring& key, const char* locale, bool use_schema_default, std::auto_ptr& error) const; #endif //GLIBMM_EXCEPTIONS_ENABLED /** Unset a configuration key. * @param key the configuration key to unset. * @throw Gnome::Conf::Error. */ #ifdef GLIBMM_EXCEPTIONS_ENABLED void unset(const Glib::ustring& key); #else void unset(const Glib::ustring& key, std::auto_ptr& error); #endif //GLIBMM_EXCEPTIONS_ENABLED /** Retrieve all keys in the given configuration directory. * Get all the configuration keys in the given directory, without recursion. * @param dir: the configuration directory to scan. * @return a container with the names of the configuration keys. * @throw Gnome::Conf::Error. */ #ifdef GLIBMM_EXCEPTIONS_ENABLED Glib::SListHandle all_entries(const Glib::ustring& dir) const; #else Glib::SListHandle all_entries(const Glib::ustring& dir, std::auto_ptr& error) const; #endif //GLIBMM_EXCEPTIONS_ENABLED /** Retrieve all subdirectories of a given configuration directory. * @param dir: the configuration directory to scan. * @return a container with the names of the subdirectories. * @throw Gnome::Conf::Error. */ #ifdef GLIBMM_EXCEPTIONS_ENABLED Glib::SListHandle all_dirs(const Glib::ustring& dir) const; #else Glib::SListHandle all_dirs(const Glib::ustring& dir, std::auto_ptr& error) const; #endif //GLIBMM_EXCEPTIONS_ENABLED /** Suggest to the GConf server that a sync of cached data to * stable storage would be appropriate now. * @throw Gnome::Conf::Error. */ #ifdef GLIBMM_EXCEPTIONS_ENABLED void suggest_sync(); #else void suggest_sync(std::auto_ptr& error); #endif //GLIBMM_EXCEPTIONS_ENABLED /** Determine whether a given configuration directory exists. * @return true if the directory exists. * @throw Gnome::Conf::Error. */ #ifdef GLIBMM_EXCEPTIONS_ENABLED bool dir_exists(const Glib::ustring&) const; #else bool dir_exists(const Glib::ustring& p1, std::auto_ptr& error) const; #endif //GLIBMM_EXCEPTIONS_ENABLED /** Determine whether a given configuration key is writeable by the application. * @return true if the key is writeable. * @throw Gnome::Conf::Error. */ #ifdef GLIBMM_EXCEPTIONS_ENABLED bool key_is_writable(const Glib::ustring&) const; #else bool key_is_writable(const Glib::ustring& p1, std::auto_ptr& error) const; #endif //GLIBMM_EXCEPTIONS_ENABLED /** Get the float value at the given configuration key. * Throws an error if the key does not contain the appropriate type. * @param key: the configuration key to fetch. * @return the value at the specified configuration key. * @throw Gnome::Conf::Error */ #ifdef GLIBMM_EXCEPTIONS_ENABLED double get_float(const Glib::ustring& key) const; #else double get_float(const Glib::ustring& key, std::auto_ptr& error) const; #endif //GLIBMM_EXCEPTIONS_ENABLED /** Get the integer at the given configuration key. * @copydoc Client::get_float(const Glib::ustring&) */ #ifdef GLIBMM_EXCEPTIONS_ENABLED gint get_int(const Glib::ustring& key) const; #else gint get_int(const Glib::ustring& key, std::auto_ptr& error) const; #endif //GLIBMM_EXCEPTIONS_ENABLED /** Get the boolean at the given configuration key. * @copydoc Client::get_float(const Glib::ustring&) */ #ifdef GLIBMM_EXCEPTIONS_ENABLED bool get_bool(const Glib::ustring& key) const; #else bool get_bool(const Glib::ustring& key, std::auto_ptr& error) const; #endif //GLIBMM_EXCEPTIONS_ENABLED /** Get the string at the given configuration key. * @copydoc Client::get_float(const Glib::ustring&) */ #ifdef GLIBMM_EXCEPTIONS_ENABLED Glib::ustring get_string(const Glib::ustring& key) const; #else Glib::ustring get_string(const Glib::ustring& key, std::auto_ptr& error) const; #endif //GLIBMM_EXCEPTIONS_ENABLED /** Get the Schema at the given configuration key. * @copydoc Client::get_float(const Glib::ustring&) */ #ifdef GLIBMM_EXCEPTIONS_ENABLED Schema get_schema(const Glib::ustring& key) const; #else Schema get_schema(const Glib::ustring& key, std::auto_ptr& error) const; #endif //GLIBMM_EXCEPTIONS_ENABLED /** Get the list of integers at the given configuration key. * If the given key is not a list, or the list elements are not of the appropriate type, * an error will be thrown. * @param key the configuration key that contains the list. * @return a Glib::SListHandle of the appropriate type. * @throw Gnome::Conf::Error */ SListHandle_ValueInt get_int_list(const Glib::ustring& key) const; /** Get the list of booleans at the given configuration key. * @copydoc Client::get_int_list(const Glib::ustring&) */ SListHandle_ValueBool get_bool_list(const Glib::ustring& key) const; /** Get the list of doubles at the given configuration key. * @copydoc Client::get_int_list(const Glib::ustring&) */ SListHandle_ValueFloat get_float_list(const Glib::ustring& key) const; /** Get the list of Schemas at the given configuration key. * @copydoc Client::get_int_list(const Glib::ustring&) */ SListHandle_ValueSchema get_schema_list(const Glib::ustring& key) const; /** Get the list of strings at the given configuration key. * @copydoc Client::get_int_list(const Glib::ustring&) */ SListHandle_ValueString get_string_list(const Glib::ustring& key) const; /** Get the pair at the given configuration key. * The pair's elements must have the types given in @p types respectively. * If the value is not a pair or the types do not match, an error will be thrown. * @param key the configuration key that contains the pair. * @param types a pair of the expected types of the values. * @return a ValuePair. * @throw Gnome::Conf::Error */ ValuePair get_pair(const Glib::ustring& key, ValueTypePair types) const; /** Set the given configuration key to the specified integer value. * @param key the configuration key to set. * @param what the value to set it to. * @throw Gnome::Conf::Error */ #ifdef GLIBMM_EXCEPTIONS_ENABLED void set(const Glib::ustring& key, int what); #else void set(const Glib::ustring& key, int what, std::auto_ptr& error); #endif //GLIBMM_EXCEPTIONS_ENABLED /** Set the given configuration key to the specified boolean value. * @copydoc Client::set(const Glib::ustring& key, int what) */ #ifdef GLIBMM_EXCEPTIONS_ENABLED void set(const Glib::ustring& key, bool what); #else void set(const Glib::ustring& key, bool what, std::auto_ptr& error); #endif //GLIBMM_EXCEPTIONS_ENABLED /** Set the given configuration key to the specified double value. * @copydoc Client::set(const Glib::ustring& key, int what) */ #ifdef GLIBMM_EXCEPTIONS_ENABLED void set(const Glib::ustring& key,double what); #else void set(const Glib::ustring& key, double what, std::auto_ptr& error); #endif //GLIBMM_EXCEPTIONS_ENABLED /** Set the given configuration key to the specified string. * @copydoc Client::set(const Glib::ustring& key, int what) */ #ifdef GLIBMM_EXCEPTIONS_ENABLED void set(const Glib::ustring& key, const Glib::ustring& what); #else void set(const Glib::ustring& key, const Glib::ustring& what, std::auto_ptr& error); #endif //GLIBMM_EXCEPTIONS_ENABLED /** Set the given configuration key to the specified Schema. * @copydoc Client::set(const Glib::ustring& key, int what) */ #ifdef GLIBMM_EXCEPTIONS_ENABLED void set(const Glib::ustring& key, const Schema& what); #else void set(const Glib::ustring& key, const Schema& what, std::auto_ptr& error); #endif //GLIBMM_EXCEPTIONS_ENABLED /** Set the given configuration key to the specified Value. * @copydoc Client::set(const Glib::ustring& key, int what) */ #ifdef GLIBMM_EXCEPTIONS_ENABLED void set(const Glib::ustring& key, const Value& what); #else void set(const Glib::ustring& key, const Value& what, std::auto_ptr& error); #endif //GLIBMM_EXCEPTIONS_ENABLED typedef Glib::SListHandle< int, BasicTypeTraits > SListHandleInts; void set_int_list(const Glib::ustring& key, const SListHandleInts& what); typedef Glib::SListHandle< bool, BasicTypeTraits > SListHandleBools; void set_bool_list(const Glib::ustring& key, const SListHandleBools& what); typedef Glib::SListHandle< double, BasicTypeTraits > SListHandleFloats; void set_float_list(const Glib::ustring& key, const SListHandleFloats& what); void set_schema_list(const Glib::ustring& key, const Glib::SListHandle& what); void set_string_list(const Glib::ustring& key, const Glib::SListHandle& what); /** Create a ChangeSet from the current values of the configuration database. * Creates a ChangeSet containing the current values of all the keys listed in * the @p set. For instance, this could be used in a preferences dialog as an undo operation. * @param set A container of the configuration keys to backup. * @return the ChangeSet with the current values. * @throw Gnome::Conf::Error * @see ChangeSet */ #ifdef GLIBMM_EXCEPTIONS_ENABLED ChangeSet change_set_from_current(const Glib::SArray& set); #else ChangeSet change_set_from_current(const Glib::SArray& set, std::auto_ptr& error); #endif //GLIBMM_EXCEPTIONS_ENABLED /** Commit the ChangeSet to the configuration database. * Commits the configuration changes in the ChangeSet to the database. * If @p remove_commited is @c true, all successfully commited keys will be removed from the * ChangeSet. If an error occurs, a Gnome::Conf::Error will be thrown. This operation is * not atomic - an error will be thrown on the first error. * @param set the ChangeSet to commit. * @param remove_commited whether to remove successfully-commited keys from the ChangeSet. * @throw Gnome::Conf::Error * @see ChangeSet */ #ifdef GLIBMM_EXCEPTIONS_ENABLED void change_set_commit(ChangeSet& set, bool remove_commited); #else void change_set_commit(ChangeSet& set, bool remove_commited, std::auto_ptr& error); #endif //GLIBMM_EXCEPTIONS_ENABLED /** Creates a ChangeSet to reverse the effects of the given ChangeSet. * Creates a ChangeSet that contains the current values of the keys in @p set, * effectively creating a back-up of the values in the database that will be modifed * when the @p set will be commited. For instance, this allows you to create a back-up changeset * to use in case of errors, or an undo facility for preferences. * @param set the ChangeSet to reverse. * @return the reverse ChangeSet. * @throw Gnome::Conf::Error * @see ChangeSet */ #ifdef GLIBMM_EXCEPTIONS_ENABLED ChangeSet change_set_reverse(const ChangeSet& set); #else ChangeSet change_set_reverse(const ChangeSet& set, std::auto_ptr& error); #endif //GLIBMM_EXCEPTIONS_ENABLED /** A signal emitted when a value changes. * This signal will only be called for directories added with add_dir(). * * @par Prototype: * void on_my_%value_changed(const Glib::ustring& key, const Value& value) */ Glib::SignalProxy2< void,const Glib::ustring&,const Value& > signal_value_changed(); void value_changed(const Glib::ustring& key, const Value& value); #ifndef DOXYGEN_SHOULD_SKIP_THIS // unreturned_error will never be called, as gconfmm // catches all GError's and throw()s them as Gnome::Conf::Error's. /** * @par Prototype: * void on_my_%unreturned_error(const Glib::Error& error) */ Glib::SignalProxy1< void,const Glib::Error& > signal_unreturned_error(); void unreturned_error(const Glib::Error& error); #endif /** A signal emitted when an error occurs. * This signal will be emitted when an error occurs, right before the throw() of the error. * * @par Prototype: * void on_my_%error(const Glib::Error& error) */ Glib::SignalProxy1< void,const Glib::Error& > signal_error(); void error(const Glib::Error& error); private: void handle_error(GError* pError) const; GSList* get_list(const Glib::ustring& key, GConfValueType list_type) const; public: public: //C++ methods used to invoke GTK+ virtual functions: #ifdef GLIBMM_VFUNCS_ENABLED #endif //GLIBMM_VFUNCS_ENABLED protected: //GTK+ Virtual Functions (override these to change behaviour): #ifdef GLIBMM_VFUNCS_ENABLED #endif //GLIBMM_VFUNCS_ENABLED //Default Signal Handlers:: #ifdef GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED virtual void on_value_changed(const Glib::ustring& key, const Value& value); virtual void on_unreturned_error(const Glib::Error& error); virtual void on_error(const Glib::Error& error); #endif //GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED }; } /* namespace Conf */ } /* namespace Gnome */ namespace Glib { /** A Glib::wrap() method for this object. * * @param object The C instance. * @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref. * @result A C++ instance that wraps this C instance. * * @relates Gnome::Conf::Client */ Glib::RefPtr wrap(GConfClient* object, bool take_copy = false); } #endif /* _GCONFMM_CLIENT_H */