-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
160 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
namespace SwayNotificationCenter.Widgets { | ||
public class Slider : BaseWidget { | ||
public override string widget_name { | ||
get { | ||
return "slider"; | ||
} | ||
} | ||
|
||
Gtk.Label label_widget = new Gtk.Label (null); | ||
Gtk.Scale slider = new Gtk.Scale.with_range (Gtk.Orientation.HORIZONTAL, 0, 100, 1); | ||
|
||
private double min_limit; | ||
private double max_limit; | ||
private double ? last_set; | ||
|
||
private string command; | ||
private string update_command; | ||
|
||
public Slider (string suffix, SwayncDaemon swaync_daemon, NotiDaemon noti_daemon) { | ||
base (suffix, swaync_daemon, noti_daemon); | ||
|
||
Json.Object ? config = get_config (this); | ||
if (config != null) { | ||
string ? label = get_prop<string> (config, "label"); | ||
label_widget.set_label (label ?? "Slider"); | ||
|
||
command = get_prop<string> (config, "command") ?? ""; | ||
update_command = get_prop<string> (config, "update_command") ?? ""; | ||
|
||
int ? round_digits = get_prop<int> (config, "value_scale"); | ||
double scale = round_digits == null ? 1 : Math.pow (10, round_digits); | ||
|
||
int ? min = get_prop<int> (config, "min"); | ||
int ? max = get_prop<int> (config, "max"); | ||
int ? maxl = get_prop<int> (config, "min_limit"); | ||
int ? minl = get_prop<int> (config, "max_limit"); | ||
|
||
if (min == null) | ||
min = 0; | ||
if (max == null) | ||
min = 100; | ||
|
||
max_limit = maxl != null ? double.min (max, maxl) : max; | ||
|
||
min_limit = minl != null ? double.max (min, minl) : min; | ||
|
||
min_limit /= scale; | ||
max_limit /= scale; | ||
|
||
slider.set_range (min / scale, max / scale); | ||
slider.set_round_digits (round_digits); | ||
} | ||
|
||
slider.set_draw_value (false); | ||
slider.set_round_digits (0); | ||
slider.value_changed.connect (() => { | ||
double value = slider.get_value (); | ||
if (value > max_limit) | ||
value = max_limit; | ||
if (value < min_limit) | ||
value = min_limit; | ||
slider.set_value (value); | ||
|
||
string value_str = value.to_string (); | ||
slider.tooltip_text = value_str; | ||
|
||
if (command != "" && last_set != value) { | ||
last_set = value; | ||
Functions.execute_command.begin (command + " " + value_str); | ||
} | ||
}); | ||
|
||
add (label_widget); | ||
pack_start (slider, true, true, 0); | ||
|
||
show_all (); | ||
} | ||
|
||
public async void on_update () { | ||
if (update_command == "") | ||
return; | ||
|
||
string value_str = ""; | ||
yield Functions.execute_command (update_command, {}, out value_str); | ||
|
||
double value = double.parse (value_str); | ||
if (value <= max_limit && value >= min_limit) { | ||
last_set = value; | ||
slider.set_value (value); | ||
} | ||
} | ||
|
||
public override void on_cc_visibility_change (bool value) { | ||
if (value) | ||
on_update.begin (); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters