Ryujinx-GtkSharp/gconf/GConf/Client.cs
Rachel Hestilow 0b60ffe89f 2003-05-27 Rachel Hestilow <rachel@nullenvoid.com>
* gconf/GConf/ChangeSet.cs, Client.cs: Change SetValue
	from protected to internal, as it references an internal type.
	* gconf/GConf/ClientBase.cs: The same; additionally
	remove some commented-out code. Change Initialize from
	protected to internal.

svn path=/trunk/gtk-sharp/; revision=14922
2003-05-27 06:27:26 +00:00

115 lines
2.7 KiB
C#

namespace GConf
{
using System;
using System.Collections;
using System.Runtime.InteropServices;
public class Client : ClientBase
{
IntPtr Raw = IntPtr.Zero;
Hashtable dirs = new Hashtable ();
Hashtable callbacks = new Hashtable ();
[DllImport("gconf-2")]
static extern IntPtr gconf_client_get_default ();
public Client ()
{
Initialize ();
Raw = gconf_client_get_default ();
}
internal Client (IntPtr raw)
{
Initialize ();
Raw = raw;
}
[DllImport("gconf-2")]
static extern void gconf_client_set (IntPtr client, string key, IntPtr val, out IntPtr err);
internal override void SetValue (string key, Value val)
{
IntPtr err;
gconf_client_set (Raw, key, val.Handle, out err);
if (err != IntPtr.Zero)
throw new GLib.GException (err);
}
[DllImport("gconf-2")]
static extern IntPtr gconf_client_get (IntPtr client, string key, out IntPtr err);
public override object Get (string key)
{
if (key == null)
throw new ArgumentNullException ("key");
IntPtr err;
IntPtr raw = gconf_client_get (Raw, key, out err);
if (err != IntPtr.Zero)
throw new GLib.GException (err);
if (raw == IntPtr.Zero)
throw new NoSuchKeyException (key);
Value val = new Value (raw);
return val.Get ();
}
[DllImport("gconf-2")]
static extern uint gconf_client_add_dir (IntPtr client, string dir, int preload, out IntPtr err);
void AddDir (string dir)
{
IntPtr err;
if (dirs.Contains (dir))
return;
dirs.Add (dir, 1);
gconf_client_add_dir (Raw, dir, 0, out err);
if (err != IntPtr.Zero)
throw new GLib.GException (err);
}
[DllImport("gconf-2")]
static extern uint gconf_client_notify_add (IntPtr client, string dir, NotifyFuncNative func, IntPtr user_data, IntPtr destroy_notify, out IntPtr err);
public void AddNotify (string dir, NotifyEventHandler notify)
{
IntPtr err;
AddDir (dir);
uint cnxn = gconf_client_notify_add (Raw, dir, NotifyWrapper.Wrap (notify), IntPtr.Zero, IntPtr.Zero, out err);
if (err != IntPtr.Zero)
throw new GLib.GException (err);
callbacks.Add (notify, cnxn);
}
[DllImport("gconf-2")]
static extern void gconf_client_notify_remove (IntPtr client, uint cnxn);
public void RemoveNotify (string dir, NotifyEventHandler notify)
{
if (!callbacks.Contains (notify))
return;
uint cnxn = (uint) callbacks[notify];
gconf_client_notify_remove (Raw, cnxn);
callbacks.Remove (notify);
}
[DllImport("gconf-2")]
static extern void gconf_client_suggest_sync (IntPtr client, out IntPtr err);
public void SuggestSync ()
{
IntPtr err;
gconf_client_suggest_sync (Raw, out err);
if (err != IntPtr.Zero)
throw new GLib.GException (err);
}
}
}