[cheese/three-point-oh] Bound controls in preferences dialog to their respective GConf settings
- From: Yuvaraj Pandian <yuvipanda src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [cheese/three-point-oh] Bound controls in preferences dialog to their respective GConf settings
- Date: Tue, 13 Jul 2010 18:38:22 +0000 (UTC)
commit a0139b880b0bd3cc3b50f63f561ffe5c37dbebe4
Author: Yuvaraj Pandian T <yuvipanda gmail com>
Date: Wed Jul 14 00:07:43 2010 +0530
Bound controls in preferences dialog to their respective GConf settings
data/cheese-prefs.ui | 2 ++
src/cheese-preferences.vala | 37 +++++++++++++++++++++++++++++++------
2 files changed, 33 insertions(+), 6 deletions(-)
---
diff --git a/data/cheese-prefs.ui b/data/cheese-prefs.ui
index e8902ae..eca1a6f 100644
--- a/data/cheese-prefs.ui
+++ b/data/cheese-prefs.ui
@@ -392,6 +392,7 @@
<property name="can_focus">True</property>
<property name="invisible_char">●</property>
<property name="adjustment">burst_count_adjustment</property>
+ <signal name="value-changed" handler="cheese_preferences_dialog_on_burst_repeat_change" />
</object>
<packing>
<property name="position">0</property>
@@ -403,6 +404,7 @@
<property name="can_focus">True</property>
<property name="invisible_char">●</property>
<property name="adjustment">burst_delay_adjustment</property>
+ <signal name="value-changed" handler="cheese_preferences_dialog_on_burst_delay_change" />
</object>
<packing>
<property name="position">1</property>
diff --git a/src/cheese-preferences.vala b/src/cheese-preferences.vala
index f4e5297..9c0fa0b 100644
--- a/src/cheese-preferences.vala
+++ b/src/cheese-preferences.vala
@@ -15,11 +15,9 @@ internal class Cheese.PreferencesDialog : GLib.Object
private Gtk.Adjustment hue_adjustment;
private Gtk.Adjustment saturation_adjustment;
- private Gtk.SpinButton burst_count_spin;
+ private Gtk.SpinButton burst_repeat_spin;
private Gtk.SpinButton burst_delay_spin;
- private Gtk.Button close_button;
-
public PreferencesDialog (Cheese.Camera camera, Cheese.GConf conf)
{
this.camera = camera;
@@ -39,10 +37,21 @@ internal class Cheese.PreferencesDialog : GLib.Object
this.resolution_combo = (Gtk.ComboBox)builder.get_object ("resolution_combo_box");
this.source_combo = (Gtk.ComboBox)builder.get_object ("camera_combo_box");
- this.burst_count_spin = (Gtk.SpinButton)builder.get_object ("burst_count");
- this.burst_delay_spin = (Gtk.SpinButton)builder.get_object ("burst_delay");
+ this.burst_repeat_spin = (Gtk.SpinButton)builder.get_object ("burst_repeat");
+ this.burst_delay_spin = (Gtk.SpinButton)builder.get_object ("burst_delay");
- this.close_button = (Gtk.Button)builder.get_object ("close");
+ initialize_values_from_conf ();
+ }
+
+ private void initialize_values_from_conf ()
+ {
+ brightness_adjustment.value = conf.gconf_prop_brightness;
+ contrast_adjustment.value = conf.gconf_prop_contrast;
+ hue_adjustment.value = conf.gconf_prop_hue;
+ saturation_adjustment.value = conf.gconf_prop_saturation;
+
+ burst_repeat_spin.value = conf.gconf_prop_burst_repeat;
+ burst_delay_spin.value = conf.gconf_prop_burst_delay / 1000;
}
[CCode (instance_pos = -1)]
@@ -52,27 +61,43 @@ internal class Cheese.PreferencesDialog : GLib.Object
}
[CCode (instance_pos = -1)]
+ internal void on_burst_repeat_change (Gtk.SpinButton spinbutton)
+ {
+ conf.gconf_prop_burst_repeat = (int) spinbutton.value;
+ }
+
+ [CCode (instance_pos = -1)]
+ internal void on_burst_delay_change (Gtk.SpinButton spinbutton)
+ {
+ conf.gconf_prop_burst_delay = (int) spinbutton.value * 1000;
+ }
+
+ [CCode (instance_pos = -1)]
internal void on_brightness_change (Gtk.Adjustment adjustment)
{
this.camera.set_balance_property ("brightness", adjustment.value);
+ conf.gconf_prop_brightness = adjustment.value;
}
[CCode (instance_pos = -1)]
internal void on_contrast_change (Gtk.Adjustment adjustment)
{
this.camera.set_balance_property ("contrast", adjustment.value);
+ conf.gconf_prop_contrast = adjustment.value;
}
[CCode (instance_pos = -1)]
internal void on_hue_change (Gtk.Adjustment adjustment)
{
this.camera.set_balance_property ("hue", adjustment.value);
+ conf.gconf_prop_hue = adjustment.value;
}
[CCode (instance_pos = -1)]
internal void on_saturation_change (Gtk.Adjustment adjustment)
{
this.camera.set_balance_property ("saturation", adjustment.value);
+ conf.gconf_prop_saturation = adjustment.value;
}
public void show ()
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]