2009-05-03 Stephane Delcroix <sdelcroix@novell.com>
* glib/Idle.cs: * glib/Timeout.cs: add Add() overloads taking a priority * glib/Makefile.am: * glib/Property.cs: Property enum, used as argument for the new Add overloads svn path=/trunk/gtk-sharp/; revision=133444
This commit is contained in:
parent
db6124ebd4
commit
983fb81a96
5 changed files with 76 additions and 3 deletions
|
@ -1,3 +1,11 @@
|
||||||
|
2009-05-03 Stephane Delcroix <sdelcroix@novell.com>
|
||||||
|
|
||||||
|
* glib/Idle.cs:
|
||||||
|
* glib/Timeout.cs: add Add() overloads taking a priority
|
||||||
|
* glib/Makefile.am:
|
||||||
|
* glib/Property.cs: Property enum, used as argument for the new Add
|
||||||
|
overloads
|
||||||
|
|
||||||
2009-05-02 Mike Kestner <mkestner@novell.com>
|
2009-05-02 Mike Kestner <mkestner@novell.com>
|
||||||
|
|
||||||
* gtk/Gtk.metadata: updates for new RecentItems prop.
|
* gtk/Gtk.metadata: updates for new RecentItems prop.
|
||||||
|
|
20
glib/Idle.cs
20
glib/Idle.cs
|
@ -1,10 +1,13 @@
|
||||||
// GLib.Idle.cs - Idle class implementation
|
// GLib.Idle.cs - Idle class implementation
|
||||||
//
|
//
|
||||||
// Author: Mike Kestner <mkestner@speakeasy.net>
|
// Author(s):
|
||||||
// Rachel Hestilow <hestilow@ximian.com>
|
// Mike Kestner <mkestner@speakeasy.net>
|
||||||
|
// Rachel Hestilow <hestilow@ximian.com>
|
||||||
|
// Stephane Delcroix <stephane@delcroix.org>
|
||||||
//
|
//
|
||||||
// Copyright (c) 2002 Mike Kestner
|
// Copyright (c) 2002 Mike Kestner
|
||||||
// Copyright (c) Rachel Hestilow
|
// Copyright (c) Rachel Hestilow
|
||||||
|
// Copyright (c) 2009 Novell, Inc.
|
||||||
//
|
//
|
||||||
// This program is free software; you can redistribute it and/or
|
// This program is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of version 2 of the Lesser GNU General
|
// modify it under the terms of version 2 of the Lesser GNU General
|
||||||
|
@ -75,6 +78,19 @@ namespace GLib {
|
||||||
return p.ID;
|
return p.ID;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[DllImport("libglib-2.0-0.dll")]
|
||||||
|
static extern uint g_idle_add_full (int priority, IdleHandlerInternal d, IntPtr data, DestroyNotify notify);
|
||||||
|
|
||||||
|
public static uint Add (IdleHandler hndlr, Priority priority)
|
||||||
|
{
|
||||||
|
IdleProxy p = new IdleProxy (hndlr);
|
||||||
|
p.ID = g_idle_add_full ((int)priority, (IdleHandlerInternal)p.proxy_handler, IntPtr.Zero, null);
|
||||||
|
lock (Source.source_handlers)
|
||||||
|
Source.source_handlers [p.ID] = p;
|
||||||
|
|
||||||
|
return p.ID;
|
||||||
|
}
|
||||||
|
|
||||||
[DllImport("libglib-2.0-0.dll")]
|
[DllImport("libglib-2.0-0.dll")]
|
||||||
static extern bool g_source_remove_by_funcs_user_data (Delegate d, IntPtr data);
|
static extern bool g_source_remove_by_funcs_user_data (Delegate d, IntPtr data);
|
||||||
|
|
||||||
|
|
|
@ -56,6 +56,7 @@ sources = \
|
||||||
ObjectManager.cs \
|
ObjectManager.cs \
|
||||||
Opaque.cs \
|
Opaque.cs \
|
||||||
ParamSpec.cs \
|
ParamSpec.cs \
|
||||||
|
Priority.cs \
|
||||||
PropertyAttribute.cs \
|
PropertyAttribute.cs \
|
||||||
PtrArray.cs \
|
PtrArray.cs \
|
||||||
Signal.cs \
|
Signal.cs \
|
||||||
|
|
31
glib/Priority.cs
Normal file
31
glib/Priority.cs
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
// GLib.Priority.cs
|
||||||
|
//
|
||||||
|
// Author(s):
|
||||||
|
// Stephane Delcroix <stephane@delcroix.org>
|
||||||
|
//
|
||||||
|
// Copyright (c) 2009 Novell, Inc.
|
||||||
|
//
|
||||||
|
// This program is free software; you can redistribute it and/or
|
||||||
|
// modify it under the terms of version 2 of the Lesser GNU General
|
||||||
|
// Public License as published by the Free Software Foundation.
|
||||||
|
//
|
||||||
|
// This program 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
|
||||||
|
// Lesser General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU Lesser General Public
|
||||||
|
// License along with this program; if not, write to the
|
||||||
|
// Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||||
|
// Boston, MA 02111-1307, USA.
|
||||||
|
|
||||||
|
namespace GLib {
|
||||||
|
public enum Priority
|
||||||
|
{
|
||||||
|
High = -100,
|
||||||
|
Default = 0,
|
||||||
|
HighIdle = 100,
|
||||||
|
DefaultIdle = 200,
|
||||||
|
Low = 300,
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,8 +1,11 @@
|
||||||
// GLib.Timeout.cs - Timeout class implementation
|
// GLib.Timeout.cs - Timeout class implementation
|
||||||
//
|
//
|
||||||
// Author: Mike Kestner <mkestner@speakeasy.net>
|
// Author(s):
|
||||||
|
// Mike Kestner <mkestner@speakeasy.net>
|
||||||
|
// Stephane Delcroix <stephane@delcroix.org>
|
||||||
//
|
//
|
||||||
// Copyright (c) 2002 Mike Kestner
|
// Copyright (c) 2002 Mike Kestner
|
||||||
|
// Copyright (c) 2009 Novell, Inc.
|
||||||
//
|
//
|
||||||
// This program is free software; you can redistribute it and/or
|
// This program is free software; you can redistribute it and/or
|
||||||
// modify it under the terms of version 2 of the Lesser GNU General
|
// modify it under the terms of version 2 of the Lesser GNU General
|
||||||
|
@ -69,6 +72,20 @@ namespace GLib {
|
||||||
return p.ID;
|
return p.ID;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[DllImport("libglib-2.0-0.dll")]
|
||||||
|
static extern uint g_timeout_add_full (int priority, uint interval, TimeoutHandlerInternal d, IntPtr data, DestroyNotify notify);
|
||||||
|
|
||||||
|
public static uint Add (uint interval, TimeoutHandler hndlr, Priority priority)
|
||||||
|
{
|
||||||
|
TimeoutProxy p = new TimeoutProxy (hndlr);
|
||||||
|
|
||||||
|
p.ID = g_timeout_add_full ((int)priority, interval, (TimeoutHandlerInternal) p.proxy_handler, IntPtr.Zero, null);
|
||||||
|
lock (Source.source_handlers)
|
||||||
|
Source.source_handlers [p.ID] = p;
|
||||||
|
|
||||||
|
return p.ID;
|
||||||
|
}
|
||||||
|
|
||||||
[DllImport("libglib-2.0-0.dll")]
|
[DllImport("libglib-2.0-0.dll")]
|
||||||
static extern uint g_timeout_add_seconds (uint interval, TimeoutHandlerInternal d, IntPtr data);
|
static extern uint g_timeout_add_seconds (uint interval, TimeoutHandlerInternal d, IntPtr data);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue