[gimp] app: use GimpFrames in _gimp_prop_gui_new_channel_mixer()
- From: Michael Natterer <mitch src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp] app: use GimpFrames in _gimp_prop_gui_new_channel_mixer()
- Date: Sun, 7 Dec 2014 19:12:57 +0000 (UTC)
commit 47595b5615beb540d232a5cb4ec16043bce8141f
Author: Michael Natterer <mitch gimp org>
Date: Sun Dec 7 20:12:29 2014 +0100
app: use GimpFrames in _gimp_prop_gui_new_channel_mixer()
app/widgets/gimppropgui-constructors.c | 71 ++++++++++++++++----------------
1 files changed, 35 insertions(+), 36 deletions(-)
---
diff --git a/app/widgets/gimppropgui-constructors.c b/app/widgets/gimppropgui-constructors.c
index ce2d070..cfc0de6 100644
--- a/app/widgets/gimppropgui-constructors.c
+++ b/app/widgets/gimppropgui-constructors.c
@@ -530,8 +530,8 @@ _gimp_prop_gui_new_channel_mixer (GObject *config,
gpointer picker_creator)
{
GtkWidget *main_vbox;
+ GtkWidget *frame;
GtkWidget *vbox;
- GtkWidget *set_label;
GtkWidget *checkbox;
GtkWidget *scale;
const gchar *label;
@@ -543,85 +543,84 @@ _gimp_prop_gui_new_channel_mixer (GObject *config,
main_vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 4);
- vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 1);
- gtk_box_pack_start (GTK_BOX (main_vbox), vbox, FALSE, FALSE, 0);
- gtk_widget_show (vbox);
-
- checkbox = gimp_prop_widget_new (config, "preserve-luminosity",
- context, NULL, NULL, &label);
- gtk_box_pack_start (GTK_BOX (vbox), checkbox, TRUE, TRUE, 0);
- gtk_widget_show (checkbox);
+ frame = gimp_frame_new (_("Red channel"));
+ gtk_box_pack_start (GTK_BOX (main_vbox), frame, FALSE, FALSE, 0);
+ gtk_widget_show (frame);
- vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 4);
- gtk_box_pack_start (GTK_BOX (main_vbox), vbox, FALSE, FALSE, 0);
+ vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 2);
+ gtk_container_add (GTK_CONTAINER (frame), vbox);
gtk_widget_show (vbox);
- set_label = gtk_label_new (_("Red channel"));
- gtk_box_pack_start (GTK_BOX (vbox), set_label, FALSE, FALSE, 0);
- gtk_widget_show (set_label);
-
scale = gimp_prop_widget_new (config, "rr-gain",
context, NULL, NULL, &label);
- gtk_box_pack_start (GTK_BOX (vbox), scale, TRUE, TRUE, 0);
+ gtk_box_pack_start (GTK_BOX (vbox), scale, FALSE, FALSE, 0);
gtk_widget_show (scale);
scale = gimp_prop_widget_new (config, "rg-gain",
context, NULL, NULL, &label);
- gtk_box_pack_start (GTK_BOX (vbox), scale, TRUE, TRUE, 0);
+ gtk_box_pack_start (GTK_BOX (vbox), scale, FALSE, FALSE, 0);
gtk_widget_show (scale);
scale = gimp_prop_widget_new (config, "rb-gain",
context, NULL, NULL, &label);
- gtk_box_pack_start (GTK_BOX (vbox), scale, TRUE, TRUE, 0);
+ gtk_box_pack_start (GTK_BOX (vbox), scale, FALSE, FALSE, 0);
gtk_widget_show (scale);
- vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 4);
- gtk_box_pack_start (GTK_BOX (main_vbox), vbox, FALSE, FALSE, 0);
- gtk_widget_show (vbox);
- set_label = gtk_label_new (_("Green channel"));
- gtk_box_pack_start (GTK_BOX (vbox), set_label, FALSE, FALSE, 0);
- gtk_widget_show (set_label);
+ frame = gimp_frame_new (_("Green channel"));
+ gtk_box_pack_start (GTK_BOX (main_vbox), frame, FALSE, FALSE, 0);
+ gtk_widget_show (frame);
+
+ vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 2);
+ gtk_container_add (GTK_CONTAINER (frame), vbox);
+ gtk_widget_show (vbox);
scale = gimp_prop_widget_new (config, "gr-gain",
context, NULL, NULL, &label);
- gtk_box_pack_start (GTK_BOX (vbox), scale, TRUE, TRUE, 0);
+ gtk_box_pack_start (GTK_BOX (vbox), scale, FALSE, FALSE, 0);
gtk_widget_show (scale);
scale = gimp_prop_widget_new (config, "gg-gain",
context, NULL, NULL, &label);
- gtk_box_pack_start (GTK_BOX (vbox), scale, TRUE, TRUE, 0);
+ gtk_box_pack_start (GTK_BOX (vbox), scale, FALSE, FALSE, 0);
gtk_widget_show (scale);
scale = gimp_prop_widget_new (config, "gb-gain",
context, NULL, NULL, &label);
- gtk_box_pack_start (GTK_BOX (vbox), scale, TRUE, TRUE, 0);
+ gtk_box_pack_start (GTK_BOX (vbox), scale, FALSE, FALSE, 0);
gtk_widget_show (scale);
- vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 4);
- gtk_box_pack_start (GTK_BOX (main_vbox), vbox, FALSE, FALSE, 0);
- gtk_widget_show (vbox);
- set_label = gtk_label_new (_("Blue channel"));
- gtk_box_pack_start (GTK_BOX (vbox), set_label, FALSE, FALSE, 0);
- gtk_widget_show (set_label);
+ frame = gimp_frame_new (_("Blue channel"));
+ gtk_box_pack_start (GTK_BOX (main_vbox), frame, FALSE, FALSE, 0);
+ gtk_widget_show (frame);
+
+ vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 2);
+ gtk_container_add (GTK_CONTAINER (frame), vbox);
+ gtk_widget_show (vbox);
scale = gimp_prop_widget_new (config, "br-gain",
context, NULL, NULL, &label);
- gtk_box_pack_start (GTK_BOX (vbox), scale, TRUE, TRUE, 0);
+ gtk_box_pack_start (GTK_BOX (vbox), scale, FALSE, FALSE, 0);
gtk_widget_show (scale);
scale = gimp_prop_widget_new (config, "bg-gain",
context, NULL, NULL, &label);
- gtk_box_pack_start (GTK_BOX (vbox), scale, TRUE, TRUE, 0);
+ gtk_box_pack_start (GTK_BOX (vbox), scale, FALSE, FALSE, 0);
gtk_widget_show (scale);
scale = gimp_prop_widget_new (config, "bb-gain",
context, NULL, NULL, &label);
- gtk_box_pack_start (GTK_BOX (vbox), scale, TRUE, TRUE, 0);
+ gtk_box_pack_start (GTK_BOX (vbox), scale, FALSE, FALSE, 0);
gtk_widget_show (scale);
+
+ checkbox = gimp_prop_widget_new (config, "preserve-luminosity",
+ context, NULL, NULL, &label);
+ gtk_box_pack_start (GTK_BOX (main_vbox), checkbox, FALSE, FALSE, 0);
+ gtk_widget_show (checkbox);
+
return main_vbox;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]