mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 03:25:36 +00:00
d7a08db9f6
* glue/adjustment.c: * glue/canvaspoints.c: * glue/clipboard.c: * glue/colorseldialog.c: * glue/combo.c: * glue/dialog.c: * glue/error.c: * glue/event.c: * glue/fileselection.c: * glue/list.c: * glue/object.c: * glue/paned.c: * glue/program.c: * glue/slist.c: * glue/style.c: * glue/type.c: * glue/value.c: * glue/widget.c: removed almost all the warnings. svn path=/trunk/gtk-sharp/; revision=12751
43 lines
1.1 KiB
C
43 lines
1.1 KiB
C
/* colorseldialog.c : Glue for accessing fields in the GtkColorSelectionDialog widget.
|
|
*
|
|
* Author: Duncan Mak (duncan@ximian.com)
|
|
*
|
|
* (C) Ximian, INc.
|
|
*/
|
|
|
|
#include <gtk/gtkcolorseldialog.h>
|
|
|
|
/* Forward declarations */
|
|
GtkWidget *gtksharp_color_selection_dialog_get_colorsel (GtkColorSelectionDialog *dialog);
|
|
|
|
GtkWidget *gtksharp_color_selection_dialog_get_ok_button (GtkColorSelectionDialog *dialog);
|
|
|
|
GtkWidget *gtksharp_color_selection_dialog_get_cancel_button (GtkColorSelectionDialog *dialog);
|
|
|
|
GtkWidget *gtksharp_color_selection_dialog_get_help_button (GtkColorSelectionDialog *dialog);
|
|
/* */
|
|
|
|
GtkWidget*
|
|
gtksharp_color_selection_dialog_get_colorsel (GtkColorSelectionDialog *dialog)
|
|
{
|
|
return dialog->colorsel;
|
|
}
|
|
|
|
GtkWidget*
|
|
gtksharp_color_selection_dialog_get_ok_button (GtkColorSelectionDialog *dialog)
|
|
{
|
|
return dialog->ok_button;
|
|
}
|
|
|
|
GtkWidget*
|
|
gtksharp_color_selection_dialog_get_cancel_button (GtkColorSelectionDialog *dialog)
|
|
{
|
|
return dialog->cancel_button;
|
|
}
|
|
|
|
GtkWidget*
|
|
gtksharp_color_selection_dialog_get_help_button (GtkColorSelectionDialog *dialog)
|
|
{
|
|
return dialog->help_button;
|
|
}
|