2003-07-12 04:09:00 +00:00
|
|
|
// Gdk.Selection.custom - Gdk Selection class customizations
|
|
|
|
//
|
|
|
|
// Author: Mike Kestner <mkestner@speakeasy.net>
|
|
|
|
//
|
|
|
|
// (c) 2003 Mike Kestner
|
|
|
|
//
|
|
|
|
// This code is inserted after the automatically generated code.
|
|
|
|
|
2004-03-12 21:18:11 +00:00
|
|
|
[DllImport("gdksharpglue")]
|
2003-07-12 04:09:00 +00:00
|
|
|
static extern IntPtr gtksharp_get_gdk_selection_primary ();
|
|
|
|
|
|
|
|
public static Gdk.Atom Primary = new Gdk.Atom (gtksharp_get_gdk_selection_primary());
|
|
|
|
|
2004-03-12 21:18:11 +00:00
|
|
|
[DllImport("gdksharpglue")]
|
2003-07-12 04:09:00 +00:00
|
|
|
static extern IntPtr gtksharp_get_gdk_selection_secondary ();
|
|
|
|
|
|
|
|
public static Gdk.Atom Secondary = new Gdk.Atom (gtksharp_get_gdk_selection_secondary());
|
|
|
|
|
2004-03-12 21:18:11 +00:00
|
|
|
[DllImport("gdksharpglue")]
|
2003-07-12 04:09:00 +00:00
|
|
|
static extern IntPtr gtksharp_get_gdk_selection_clipboard ();
|
|
|
|
|
|
|
|
public static Gdk.Atom Clipboard = new Gdk.Atom (gtksharp_get_gdk_selection_clipboard());
|
|
|
|
|