1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
|
// IconTheme.cs - customizations to Gtk.IconTheme
//
// Authors: Mike Kestner <mkestner@ximian.com>
// Jeroen Zwartepoorte <jeroen@xs4all.nl>
//
// Copyright (c) 2004-2005 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 Gtk {
using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
public partial class IconTheme {
[DllImport (Global.GtkNativeDll, CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gtk_icon_theme_list_icons (IntPtr raw, IntPtr context);
public string[] ListIcons (string context)
{
IntPtr native = GLib.Marshaller.StringToPtrGStrdup (context);
IntPtr list_ptr = gtk_icon_theme_list_icons (Handle, native);
GLib.Marshaller.Free (native);
if (list_ptr == IntPtr.Zero)
return new string [0];
GLib.List list = new GLib.List (list_ptr, typeof (string), true, true);
string[] result = new string [list.Count];
int i = 0;
foreach (string val in list)
result [i++] = val;
return result;
}
[DllImport (Global.GtkNativeDll, CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_icon_theme_get_search_path(IntPtr raw, out IntPtr path, out int n_elements);
[DllImport (Global.GtkNativeDll, CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_icon_theme_set_search_path(IntPtr raw, IntPtr[] path, int n_elements);
[DllImport (Global.GtkNativeDll, CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_icon_theme_get_search_path_utf8(IntPtr raw, out IntPtr path, out int n_elements);
[DllImport (Global.GtkNativeDll, CallingConvention = CallingConvention.Cdecl)]
static extern void gtk_icon_theme_set_search_path_utf8(IntPtr raw, IntPtr[] path, int n_elements);
bool IsWindowsPlatform {
get {
switch (Environment.OSVersion.Platform) {
case PlatformID.Win32NT:
case PlatformID.Win32S:
case PlatformID.Win32Windows:
case PlatformID.WinCE:
return true;
default:
return false;
}
}
}
public string[] SearchPath {
get {
int length;
IntPtr raw_ret;
if (IsWindowsPlatform)
gtk_icon_theme_get_search_path_utf8 (Handle, out raw_ret, out length);
else
gtk_icon_theme_get_search_path (Handle, out raw_ret, out length);
return GLib.Marshaller.NullTermPtrToStringArray (raw_ret, true);
}
set {
IntPtr[] native_path;
if (value == null)
native_path = new IntPtr [0];
else
native_path = GLib.Marshaller.StringArrayToNullTermPointer (value);
if (IsWindowsPlatform)
gtk_icon_theme_set_search_path_utf8 (Handle, native_path, value.Length);
else
gtk_icon_theme_set_search_path (Handle, native_path, value.Length);
GLib.Marshaller.Free (native_path);
}
}
[Obsolete ("Replaced by SearchPath property.")]
public void SetSearchPath (string[] path)
{
SearchPath = path;
}
[DllImport (Global.GtkNativeDll, CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gtk_icon_theme_get_icon_sizes (IntPtr raw, IntPtr icon_name);
public int[] GetIconSizes (string icon_name)
{
IntPtr icon_name_as_native = GLib.Marshaller.StringToPtrGStrdup (icon_name);
IntPtr raw_ret = gtk_icon_theme_get_icon_sizes(Handle, icon_name_as_native);
var result = new List<int> ();
int offset = 0;
int size = Marshal.ReadInt32 (raw_ret, offset);
while (size != 0) {
result.Add (size);
offset += 4;
size = Marshal.ReadInt32 (raw_ret, offset);
}
GLib.Marshaller.Free (icon_name_as_native);
GLib.Marshaller.Free (raw_ret);
return result.ToArray ();
}
}
}
|