c5f678926c
* glue/Makefile.am: Added dialog.c and colorseldialog.c * glue/dialog.c: * gtk/Dialog.custom: C# glue for getting more fields from a GtkDialog. * glue/colorseldialog.c: * gtk/ColorSelectionDialog.custom: C# glue for getting more fields from a ColorSelectionDialog. svn path=/trunk/gtk-sharp/; revision=5699
22 lines
601 B
Text
22 lines
601 B
Text
//
|
|
// Gtk.Dialog.custom - Gtk Dialog class customizations
|
|
//
|
|
// Author: Duncan Mak (duncan@ximian.com)
|
|
//
|
|
// Copyright (C) 2002 Ximian, Inc.
|
|
//
|
|
// This code is inserted after the automatically generated code.
|
|
//
|
|
|
|
[DllImport("gtksharpglue")]
|
|
static extern IntPtr gtksharp_dialog_get_vbox (IntPtr i);
|
|
public Gtk.VBox VBox {
|
|
get { return new Gtk.VBox (gtksharp_dialog_get_vbox (this.Handle)); }
|
|
}
|
|
|
|
[DllImport("gtksharpglue")]
|
|
static extern IntPtr gtksharp_dialog_get_action_area (IntPtr i);
|
|
public Gtk.VBox ActionArea {
|
|
get { return new Gtk.VBox (gtksharp_dialog_get_action_area (this.Handle)); }
|
|
}
|
|
|