|  |  |  | GTK+ 3 Reference Manual |  | 
|---|---|---|---|---|
| Top | Description | Object Hierarchy | Implemented Interfaces | Properties | ||||
#include <gtk/gtk.h> struct GtkColorSelectionDialog; GtkWidget * gtk_color_selection_dialog_new (const gchar *title); GtkWidget * gtk_color_selection_dialog_get_color_selection (GtkColorSelectionDialog *colorsel);
GObject +----GInitiallyUnowned +----GtkWidget +----GtkContainer +----GtkBin +----GtkWindow +----GtkDialog +----GtkColorSelectionDialog
"cancel-button" GtkWidget* : Read "color-selection" GtkWidget* : Read "help-button" GtkWidget* : Read "ok-button" GtkWidget* : Read
The GtkColorSelectionDialog provides a standard dialog which allows the user to select a color much like the GtkFileSelection provides a standard dialog for file selection.
Use gtk_color_selection_dialog_get_color_selection() to get the
GtkColorSelection widget contained within the dialog. Use this widget
and its gtk_color_selection_get_current_color()
function to gain access to the selected color.  Connect a handler
for this widget's "color-changed" signal to be notified
when the color changes.
GtkWidget *         gtk_color_selection_dialog_new      (const gchar *title);
Creates a new GtkColorSelectionDialog.
| 
 | a string containing the title text for the dialog. | 
| Returns : | a GtkColorSelectionDialog. | 
GtkWidget *         gtk_color_selection_dialog_get_color_selection
                                                        (GtkColorSelectionDialog *colorsel);
Retrieves the GtkColorSelection widget embedded in the dialog.
| 
 | a GtkColorSelectionDialog | 
| Returns : | the embedded GtkColorSelection. [transfer none] | 
Since 2.14
"color-selection" property"color-selection" GtkWidget* : Read
The color selection embedded in the dialog.