mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-23 18:05:29 +00:00
a410d42975
There are no real code changes in this commit, just a lot of file renaming and boilerplate additions. A few .custom files are just removed, because the corresponding class in GTK is gone, so they were not really used anymore. Some files need to be re-indented, but that will be done in a separate commit, so that git can track the renamed files correctly and not be confused by all the changes.
84 lines
3 KiB
C#
84 lines
3 KiB
C#
// Gtk.ColorSelection.cs - customizations and corrections for ColorSelection
|
|
// Author: Lee Mallabone <gnome@fonicmonkey.net>
|
|
// Author: Justin Malcolm
|
|
//
|
|
// 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.Runtime.InteropServices;
|
|
|
|
public partial class ColorSelection {
|
|
|
|
[DllImport ("libgtk-win32-3.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
|
|
static extern IntPtr gtk_color_selection_palette_to_string(Gdk.Color[] colors, int n_colors);
|
|
|
|
/// <summary> PaletteToString Method </summary>
|
|
public static string PaletteToString(Gdk.Color[] colors) {
|
|
int n_colors = colors.Length;
|
|
IntPtr raw_ret = gtk_color_selection_palette_to_string(colors, n_colors);
|
|
string ret = GLib.Marshaller.PtrToStringGFree (raw_ret);
|
|
return ret;
|
|
}
|
|
|
|
[DllImport ("libgtk-win32-3.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
|
|
static extern bool gtk_color_selection_palette_from_string(IntPtr str, out IntPtr colors, out int n_colors);
|
|
|
|
public static Gdk.Color[] PaletteFromString(string str) {
|
|
IntPtr parsedColors;
|
|
int n_colors;
|
|
IntPtr native = GLib.Marshaller.StringToPtrGStrdup (str);
|
|
bool raw_ret = gtk_color_selection_palette_from_string(native, out parsedColors, out n_colors);
|
|
GLib.Marshaller.Free (native);
|
|
|
|
// If things failed, return silently
|
|
if (!raw_ret)
|
|
{
|
|
return null;
|
|
}
|
|
System.Console.WriteLine("Raw call finished, making " + n_colors + " actual colors");
|
|
Gdk.Color[] colors = new Gdk.Color[n_colors];
|
|
for (int i=0; i < n_colors; i++)
|
|
{
|
|
colors[i] = Gdk.Color.New(parsedColors);
|
|
parsedColors = (IntPtr) ((int)parsedColors + Marshal.SizeOf(colors[i]));
|
|
}
|
|
return colors;
|
|
}
|
|
|
|
[DllImport ("libgtk-win32-3.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
|
|
static extern void gtk_color_selection_set_previous_color(IntPtr raw, ref Gdk.Color color);
|
|
|
|
[DllImport ("libgtk-win32-3.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
|
|
static extern void gtk_color_selection_get_previous_color(IntPtr raw, out Gdk.Color color);
|
|
|
|
// Create Gtk# property to replace two Gtk+ functions
|
|
public Gdk.Color PreviousColor
|
|
{
|
|
get
|
|
{
|
|
Gdk.Color returnColor;
|
|
gtk_color_selection_get_previous_color(Handle, out returnColor);
|
|
return returnColor;
|
|
}
|
|
set
|
|
{
|
|
gtk_color_selection_set_previous_color(Handle, ref value);
|
|
}
|
|
}
|
|
}
|
|
}
|