| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205 |
- /*
- * Copyright (c) 2012-2025 Daniele Bartolini et al.
- * SPDX-License-Identifier: GPL-3.0-or-later
- */
- namespace Crown
- {
- public class EntryDouble : Gtk.Entry, Property
- {
- public bool _inconsistent;
- public double _min;
- public double _max;
- public double _value;
- public bool _stop_emit;
- public string _preview_fmt;
- public string _edit_fmt;
- // Signals
- public signal void value_changed();
- public void set_inconsistent(bool inconsistent)
- {
- if (_inconsistent != inconsistent) {
- _inconsistent = inconsistent;
- _stop_emit = true;
- if (_inconsistent) {
- this.text = INCONSISTENT_LABEL;
- } else {
- set_value_safe(string_to_double(this.text, _value));
- }
- _stop_emit = false;
- }
- }
- public bool is_inconsistent()
- {
- return _inconsistent;
- }
- public Value? generic_value()
- {
- return this.value;
- }
- public void set_generic_value(Value? val)
- {
- this.value = (double)val;
- }
- public double value
- {
- get
- {
- return _value;
- }
- set
- {
- _stop_emit = true;
- set_value_safe(value);
- _stop_emit = false;
- }
- }
- public EntryDouble(double val, double min, double max, string preview_fmt = "%.6g", string edit_fmt = "%.17g")
- {
- this.input_purpose = Gtk.InputPurpose.NUMBER;
- this.set_width_chars(1);
- this.scroll_event.connect(on_scroll);
- this.button_press_event.connect(on_button_press);
- this.button_release_event.connect(on_button_release);
- this.activate.connect(on_activate);
- this.focus_in_event.connect(on_focus_in);
- this.focus_out_event.connect(on_focus_out);
- _inconsistent = false;
- _min = min;
- _max = max;
- _preview_fmt = preview_fmt;
- _edit_fmt = edit_fmt;
- _stop_emit = true;
- set_value_safe(val);
- _stop_emit = false;
- }
- private bool on_scroll(Gdk.EventScroll ev)
- {
- GLib.Signal.stop_emission_by_name(this, "scroll-event");
- return Gdk.EVENT_PROPAGATE;
- }
- private bool on_button_press(Gdk.EventButton ev)
- {
- this.grab_focus();
- return Gdk.EVENT_PROPAGATE;
- }
- private bool on_button_release(Gdk.EventButton ev)
- {
- if (ev.button == Gdk.BUTTON_PRIMARY && this.has_focus) {
- if (_inconsistent)
- this.text = "";
- else
- this.text = _edit_fmt.printf(_value);
- this.set_position(-1);
- this.select_region(0, -1);
- return Gdk.EVENT_STOP;
- }
- return Gdk.EVENT_PROPAGATE;
- }
- private void on_activate()
- {
- this.select_region(0, 0);
- this.set_position(-1);
- set_value_safe(string_to_double(this.text, _value));
- }
- private bool on_focus_in(Gdk.EventFocus ev)
- {
- var app = (LevelEditorApplication)GLib.Application.get_default();
- app.entry_any_focus_in(this);
- if (_inconsistent)
- this.text = "";
- else
- this.text = _edit_fmt.printf(_value);
- this.set_position(-1);
- this.select_region(0, -1);
- return Gdk.EVENT_PROPAGATE;
- }
- private bool on_focus_out(Gdk.EventFocus ef)
- {
- var app = (LevelEditorApplication)GLib.Application.get_default();
- app.entry_any_focus_out(this);
- if (_inconsistent) {
- if (this.text != "") {
- set_value_safe(string_to_double(this.text, _value));
- } else {
- this.text = INCONSISTENT_LABEL;
- }
- } else {
- set_value_safe(string_to_double(this.text, _value));
- }
- this.select_region(0, 0);
- return Gdk.EVENT_PROPAGATE;
- }
- private void set_value_safe(double val)
- {
- double clamped = val.clamp(_min, _max);
- // Convert to text for displaying.
- this.text = _preview_fmt.printf(clamped);
- _inconsistent = false;
- // Notify value changed.
- if (_value != clamped) {
- _value = clamped;
- if (!_stop_emit)
- value_changed();
- }
- }
- /// Returns @a str as double or @a deffault if conversion fails.
- private double string_to_double(string str, double deffault)
- {
- TinyExpr.Variable vars[] =
- {
- { "x", &_value }
- };
- int err;
- TinyExpr.Expr expr = TinyExpr.compile(str, vars, out err);
- return err == 0 ? TinyExpr.eval(expr) : deffault;
- }
- public void set_min(double min)
- {
- _min = min;
- set_value_safe(_value);
- }
- public void set_max(double max)
- {
- _max = max;
- set_value_safe(_value);
- }
- }
- } /* namespace Crown */
|