-/* File selection */
-
-GtkWidget*
-gtk_file_selection_get_action_area (GtkFileSelection *filesel)
-{
- return filesel->action_area;
-}
-
-GtkWidget*
-gtk_file_selection_get_ok_button (GtkFileSelection *filesel)
-{
- return filesel->ok_button;
-}
-
-GtkWidget*
-gtk_file_selection_get_cancel_button (GtkFileSelection *filesel)
-{
- return filesel->cancel_button;
-}
-
-
-/* Color selection */
-
-gtk_color_selection_set_color_by_values (GtkColorSelection *colorsel,
- gdouble red,
- gdouble green,
- gdouble blue,
- gdouble opacity)
-{
- gdouble color[4];
-
- color[0] = red;
- color[1] = green;
- color[2] = blue;
- color[3] = opacity;
-
- gtk_color_selection_set_color (colorsel, color);
-}
-
-void
-gtk_color_selection_get_color_as_values (GtkColorSelection *colorsel,
- gdouble *red,
- gdouble *green,
- gdouble *blue,
- gdouble *opacity)
-{
- gdouble color[4];
-
- gtk_color_selection_get_color (colorsel, color);
-
- *red = color[0];
- *green = color[1];
- *blue = color[2];
- *opacity = color[3];
-}
-
-
-/* Combo */
-
-GtkWidget*
-gtk_combo_get_entry (GtkCombo *combo)
-{
- return combo->entry;
-}
-
-gboolean
-gtk_combo_get_use_arrows (GtkCombo *combo)
-{
- return combo->use_arrows;
-}
-
-gboolean
-gtk_combo_get_use_arrows_always (GtkCombo *combo)
-{
- return combo->use_arrows_always;
-}
-
-gboolean
-gtk_combo_get_case_sensitive (GtkCombo *combo)
-{
- return combo->case_sensitive;
-}
-
-