]> Pileus Git - ~andy/gtk/blob - gtk/gtkcolorseldialog.c
Fixes #136082 and #135265, patch by Morten Welinder.
[~andy/gtk] / gtk / gtkcolorseldialog.c
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
22  * file for a list of people on the GTK+ Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
25  */
26 #include <config.h>
27 #include <glib.h>
28 #include "gtkcolorseldialog.h"
29 #include "gtkframe.h"
30 #include "gtkhbbox.h"
31 #include "gtkbutton.h"
32 #include "gtkstock.h"
33 #include "gtkintl.h"
34
35
36 static void gtk_color_selection_dialog_class_init (GtkColorSelectionDialogClass *klass);
37 static void gtk_color_selection_dialog_init (GtkColorSelectionDialog *colorseldiag);
38
39 static GtkWindowClass *color_selection_dialog_parent_class = NULL;
40
41
42 /***************************/
43 /* GtkColorSelectionDialog */
44 /***************************/
45
46 GType
47 gtk_color_selection_dialog_get_type (void)
48 {
49   static GType color_selection_dialog_type = 0;
50   
51   if (!color_selection_dialog_type)
52     {
53       static const GTypeInfo colorsel_diag_info =
54       {
55         sizeof (GtkColorSelectionDialogClass),
56         NULL,           /* base_init */
57         NULL,           /* base_finalize */
58         (GClassInitFunc) gtk_color_selection_dialog_class_init,
59         NULL,           /* class_finalize */
60         NULL,           /* class_data */
61         sizeof (GtkColorSelectionDialog),
62         0,              /* n_preallocs */
63         (GInstanceInitFunc) gtk_color_selection_dialog_init,
64       };
65       
66       color_selection_dialog_type =
67         g_type_register_static (GTK_TYPE_DIALOG, "GtkColorSelectionDialog",
68                                 &colorsel_diag_info, 0);
69     }
70   
71   return color_selection_dialog_type;
72 }
73
74 static void
75 gtk_color_selection_dialog_class_init (GtkColorSelectionDialogClass *klass)
76 {
77   color_selection_dialog_parent_class = g_type_class_peek_parent (klass);
78 }
79
80 static void
81 gtk_color_selection_dialog_init (GtkColorSelectionDialog *colorseldiag)
82 {
83   GtkWidget *action_area_button_box, *frame;  
84   
85   frame = gtk_frame_new (NULL);
86   gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_NONE);
87   gtk_container_add (GTK_CONTAINER (GTK_DIALOG (colorseldiag)->vbox), frame);
88   gtk_container_set_border_width (GTK_CONTAINER (frame), 10); 
89   gtk_widget_show (frame); 
90   
91   colorseldiag->colorsel = gtk_color_selection_new ();
92   gtk_color_selection_set_has_palette (GTK_COLOR_SELECTION(colorseldiag->colorsel), FALSE); 
93   gtk_color_selection_set_has_opacity_control (GTK_COLOR_SELECTION(colorseldiag->colorsel), FALSE);
94   gtk_container_add (GTK_CONTAINER (frame), colorseldiag->colorsel);
95   gtk_widget_show (colorseldiag->colorsel);
96   
97   action_area_button_box = GTK_DIALOG (colorseldiag)->action_area;
98
99   colorseldiag->cancel_button = gtk_dialog_add_button (GTK_DIALOG (colorseldiag),
100                                                        GTK_STOCK_CANCEL,
101                                                        GTK_RESPONSE_CANCEL);
102
103   colorseldiag->ok_button = gtk_dialog_add_button (GTK_DIALOG (colorseldiag),
104                                                    GTK_STOCK_OK,
105                                                    GTK_RESPONSE_OK);
106                                                    
107   gtk_widget_grab_default (colorseldiag->ok_button);
108   
109   colorseldiag->help_button = gtk_dialog_add_button (GTK_DIALOG (colorseldiag),
110                                                      GTK_STOCK_HELP,
111                                                      GTK_RESPONSE_HELP);
112
113   gtk_widget_hide (colorseldiag->help_button);
114
115   gtk_window_set_title (GTK_WINDOW (colorseldiag),
116                         _("Color Selection"));
117 }
118
119 GtkWidget*
120 gtk_color_selection_dialog_new (const gchar *title)
121 {
122   GtkColorSelectionDialog *colorseldiag;
123   
124   colorseldiag = g_object_new (GTK_TYPE_COLOR_SELECTION_DIALOG, NULL);
125
126   if (title)
127     gtk_window_set_title (GTK_WINDOW (colorseldiag), title);
128
129   gtk_window_set_resizable (GTK_WINDOW (colorseldiag), FALSE);
130   
131   return GTK_WIDGET (colorseldiag);
132 }
133