2012-08-05 14:32:41 +00:00
|
|
|
// Gtk.UiManager.cs - Gtk UiManager class customizations
|
2002-07-19 07:54:33 +00:00
|
|
|
//
|
2004-10-29 20:33:07 +00:00
|
|
|
// Author: John Luke <john.luke@gmail.com>
|
2002-07-19 07:54:33 +00:00
|
|
|
//
|
2004-10-29 20:33:07 +00:00
|
|
|
// Copyright (C) 2004 Novell, Inc.
|
2002-07-19 07:54:33 +00:00
|
|
|
//
|
2004-06-25 18:42:19 +00:00
|
|
|
// This program is free software; you can redistribute it and/or
|
2004-10-29 20:33:07 +00:00
|
|
|
// modify it under the terms of version 2 of the Lesser GNU General
|
2004-06-25 18:42:19 +00:00
|
|
|
// 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.
|
|
|
|
|
2012-08-05 14:32:41 +00:00
|
|
|
namespace Gtk {
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
|
|
|
public partial class UIManager {
|
|
|
|
|
2004-11-26 14:59:38 +00:00
|
|
|
public uint AddUiFromResource (string resource)
|
|
|
|
{
|
|
|
|
if (resource == null)
|
|
|
|
throw new ArgumentNullException ("resource");
|
|
|
|
|
|
|
|
System.IO.Stream s = System.Reflection.Assembly.GetCallingAssembly ().GetManifestResourceStream (resource);
|
|
|
|
if (s == null)
|
|
|
|
throw new ArgumentException ("resource must be a valid resource name of 'assembly'.");
|
2002-07-19 07:54:33 +00:00
|
|
|
|
2004-11-26 14:59:38 +00:00
|
|
|
return AddUiFromString (new System.IO.StreamReader (s).ReadToEnd ());
|
|
|
|
}
|
2002-07-19 07:54:33 +00:00
|
|
|
|
2014-02-23 14:12:20 +00:00
|
|
|
[DllImport (Global.GtkNativeDll, CallingConvention = CallingConvention.Cdecl)]
|
2004-11-26 14:59:38 +00:00
|
|
|
static extern uint gtk_ui_manager_new_merge_id (IntPtr raw);
|
|
|
|
|
|
|
|
public uint NewMergeId ()
|
|
|
|
{
|
|
|
|
return gtk_ui_manager_new_merge_id (Handle);
|
|
|
|
}
|
2004-12-07 01:31:50 +00:00
|
|
|
|
2014-02-23 14:12:20 +00:00
|
|
|
[DllImport (Global.GtkNativeDll, CallingConvention = CallingConvention.Cdecl)]
|
2004-12-07 01:31:50 +00:00
|
|
|
static extern IntPtr gtk_ui_manager_get_toplevels (IntPtr raw, int types);
|
|
|
|
|
|
|
|
public Widget[] GetToplevels (Gtk.UIManagerItemType types) {
|
|
|
|
IntPtr raw_ret = gtk_ui_manager_get_toplevels (Handle, (int) types);
|
|
|
|
GLib.SList list = new GLib.SList (raw_ret);
|
|
|
|
Widget[] result = new Widget [list.Count];
|
2012-08-05 15:24:05 +00:00
|
|
|
for (int i = 0; i < list.Count; i++)
|
|
|
|
result [i] = list [i] as Widget;
|
|
|
|
|
2004-12-07 01:31:50 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2014-02-23 14:12:20 +00:00
|
|
|
[DllImport (Global.GtkNativeDll, CallingConvention = CallingConvention.Cdecl)]
|
2004-12-07 01:31:50 +00:00
|
|
|
static extern IntPtr gtk_ui_manager_get_action_groups (IntPtr raw);
|
|
|
|
|
|
|
|
public ActionGroup[] ActionGroups {
|
|
|
|
get {
|
|
|
|
IntPtr raw_ret = gtk_ui_manager_get_action_groups (Handle);
|
|
|
|
GLib.List list = new GLib.List(raw_ret);
|
|
|
|
ActionGroup[] result = new ActionGroup [list.Count];
|
2012-08-05 15:24:05 +00:00
|
|
|
for (int i = 0; i < list.Count; i++)
|
|
|
|
result [i] = list [i] as ActionGroup;
|
|
|
|
|
2004-12-07 01:31:50 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
2012-08-05 14:32:41 +00:00
|
|
|
}
|
|
|
|
}
|