2012-08-05 14:32:41 +00:00
|
|
|
// Gtk.Action.cs - Gtk Action 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 {
|
|
|
|
|
2012-08-05 15:24:05 +00:00
|
|
|
using System;
|
|
|
|
using System.Runtime.InteropServices;
|
2012-08-05 14:32:41 +00:00
|
|
|
|
2012-08-05 15:24:05 +00:00
|
|
|
public partial class Action {
|
2012-08-05 14:32:41 +00:00
|
|
|
|
2012-08-05 15:24:05 +00:00
|
|
|
public Action (string name, string label) : this (name, label, null, null)
|
|
|
|
{}
|
2004-12-07 01:31:50 +00:00
|
|
|
|
2014-02-23 14:12:20 +00:00
|
|
|
[DllImport (Global.GtkNativeDll, CallingConvention = CallingConvention.Cdecl)]
|
2012-08-05 15:24:05 +00:00
|
|
|
static extern IntPtr gtk_action_get_proxies (IntPtr raw);
|
2004-12-07 01:31:50 +00:00
|
|
|
|
2012-08-05 15:24:05 +00:00
|
|
|
public Gtk.Widget[] Proxies {
|
|
|
|
get {
|
|
|
|
IntPtr raw_ret = gtk_action_get_proxies (Handle);
|
|
|
|
GLib.SList list = new GLib.SList (raw_ret);
|
|
|
|
Widget[] result = new Widget [list.Count];
|
|
|
|
for (int i = 0; i < list.Count; i++)
|
|
|
|
result [i] = list [i] as Widget;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-08-05 14:32:41 +00:00
|
|
|
}
|