Imported Upstream version 1.2.0
[psensor-pkg-debian.git] / src / ui_color.c
1 /*
2  * Copyright (C) 2010-2016 jeanfi@gmail.com
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301 USA
18  */
19 #include <gtk/gtk.h>
20
21 #include <ui_color.h>
22
23 /*
24  * UI to change a given color.
25  *
26  * Returns 1 if the color has been modified.
27  */
28 bool ui_change_color(const char *title, GdkRGBA *color, GtkWindow *win)
29 {
30         int res;
31         GtkColorChooserDialog *colordlg;
32
33         colordlg = GTK_COLOR_CHOOSER_DIALOG
34                 (gtk_color_chooser_dialog_new(title, win));
35
36         gtk_color_chooser_set_use_alpha(GTK_COLOR_CHOOSER(colordlg), 0);
37
38         gtk_color_chooser_set_rgba(GTK_COLOR_CHOOSER(colordlg), color);
39
40         res = gtk_dialog_run(GTK_DIALOG(colordlg));
41
42         if (res == GTK_RESPONSE_OK)
43                 gtk_color_chooser_get_rgba(GTK_COLOR_CHOOSER(colordlg), color);
44
45         gtk_widget_destroy(GTK_WIDGET(colordlg));
46
47         return res == GTK_RESPONSE_OK;
48 }