]> Pileus Git - ~andy/gtk/blob - gtk/gtkcolorseldialog.c
Use the correct screen for getting the height. (Fix from Stephen Browne,
[~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 <glib.h>
27 #include "gtkcolorseldialog.h"
28 #include "gtkframe.h"
29 #include "gtkhbbox.h"
30 #include "gtkbutton.h"
31 #include "gtkstock.h"
32 #include "gtkintl.h"
33
34
35 static void gtk_color_selection_dialog_class_init (GtkColorSelectionDialogClass *klass);
36 static void gtk_color_selection_dialog_init (GtkColorSelectionDialog *colorseldiag);
37
38 static GtkWindowClass *color_selection_dialog_parent_class = NULL;
39
40
41 /***************************/
42 /* GtkColorSelectionDialog */
43 /***************************/
44
45 GType
46 gtk_color_selection_dialog_get_type (void)
47 {
48   static GType color_selection_dialog_type = 0;
49   
50   if (!color_selection_dialog_type)
51     {
52       static const GTypeInfo colorsel_diag_info =
53       {
54         sizeof (GtkColorSelectionDialogClass),
55         NULL,           /* base_init */
56         NULL,           /* base_finalize */
57         (GClassInitFunc) gtk_color_selection_dialog_class_init,
58         NULL,           /* class_finalize */
59         NULL,           /* class_data */
60         sizeof (GtkColorSelectionDialog),
61         0,              /* n_preallocs */
62         (GInstanceInitFunc) gtk_color_selection_dialog_init,
63       };
64       
65       color_selection_dialog_type =
66         g_type_register_static (GTK_TYPE_DIALOG, "GtkColorSelectionDialog",
67                                 &colorsel_diag_info, 0);
68     }
69   
70   return color_selection_dialog_type;
71 }
72
73 static void
74 gtk_color_selection_dialog_class_init (GtkColorSelectionDialogClass *klass)
75 {
76   color_selection_dialog_parent_class = g_type_class_peek_parent (klass);
77 }
78
79 static void
80 gtk_color_selection_dialog_init (GtkColorSelectionDialog *colorseldiag)
81 {
82   GtkWidget *action_area_button_box, *frame;  
83   
84   frame = gtk_frame_new (NULL);
85   gtk_frame_set_shadow_type (GTK_FRAME (frame), GTK_SHADOW_NONE);
86   gtk_container_add (GTK_CONTAINER (GTK_DIALOG (colorseldiag)->vbox), frame);
87   gtk_container_set_border_width (GTK_CONTAINER (frame), 10); 
88   gtk_widget_show (frame); 
89   
90   colorseldiag->colorsel = gtk_color_selection_new ();
91   gtk_color_selection_set_has_palette (GTK_COLOR_SELECTION(colorseldiag->colorsel), FALSE); 
92   gtk_color_selection_set_has_opacity_control (GTK_COLOR_SELECTION(colorseldiag->colorsel), FALSE);
93   gtk_container_add (GTK_CONTAINER (frame), colorseldiag->colorsel);
94   gtk_widget_show (colorseldiag->colorsel);
95   
96   action_area_button_box = GTK_DIALOG (colorseldiag)->action_area;
97
98   colorseldiag->cancel_button = gtk_dialog_add_button (GTK_DIALOG (colorseldiag),
99                                                        GTK_STOCK_CANCEL,
100                                                        GTK_RESPONSE_CANCEL);
101
102   colorseldiag->ok_button = gtk_dialog_add_button (GTK_DIALOG (colorseldiag),
103                                                    GTK_STOCK_OK,
104                                                    GTK_RESPONSE_OK);
105                                                    
106   gtk_widget_grab_default (colorseldiag->ok_button);
107   
108   colorseldiag->help_button = gtk_dialog_add_button (GTK_DIALOG (colorseldiag),
109                                                      GTK_STOCK_HELP,
110                                                      GTK_RESPONSE_HELP);
111
112   gtk_widget_hide (colorseldiag->help_button);
113 }
114
115 GtkWidget*
116 gtk_color_selection_dialog_new (const gchar *title)
117 {
118   GtkColorSelectionDialog *colorseldiag;
119   
120   colorseldiag = g_object_new (GTK_TYPE_COLOR_SELECTION_DIALOG, NULL);
121   gtk_window_set_title (GTK_WINDOW (colorseldiag), title);
122   gtk_window_set_resizable (GTK_WINDOW (colorseldiag), FALSE);
123   
124   return GTK_WIDGET (colorseldiag);
125 }