2022-07-18 08:10:00 +00:00
|
|
|
# option.py
|
2022-07-17 11:46:05 +00:00
|
|
|
#
|
2022-08-11 08:16:44 +00:00
|
|
|
# Change the look of Adwaita, with ease
|
2022-08-15 23:20:57 +00:00
|
|
|
# Copyright (C) 2022 Gradience Team
|
2022-07-17 11:46:05 +00:00
|
|
|
#
|
2022-08-11 08:16:44 +00:00
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
2022-08-11 16:39:52 +00:00
|
|
|
#
|
2022-08-11 08:16:44 +00:00
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
2022-08-11 16:39:52 +00:00
|
|
|
#
|
2022-08-11 08:16:44 +00:00
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2022-07-17 11:46:05 +00:00
|
|
|
|
2022-07-24 18:43:32 +00:00
|
|
|
from gi.repository import Gtk, Gdk, Adw
|
2022-07-17 11:46:05 +00:00
|
|
|
|
2022-08-13 10:27:59 +00:00
|
|
|
from .constants import rootdir
|
2022-08-11 16:39:52 +00:00
|
|
|
|
2022-08-13 10:24:16 +00:00
|
|
|
|
|
|
|
@Gtk.Template(resource_path=f"{rootdir}/ui/option.ui")
|
2022-08-19 19:14:05 +00:00
|
|
|
class GradienceOption(Adw.ActionRow):
|
|
|
|
__gtype_name__ = "GradienceOption"
|
2022-07-17 11:46:05 +00:00
|
|
|
|
|
|
|
color_value = Gtk.Template.Child("color-value")
|
|
|
|
text_value = Gtk.Template.Child("text-value")
|
|
|
|
value_stack = Gtk.Template.Child("value-stack")
|
|
|
|
text_value_toggle = Gtk.Template.Child("text-value-toggle")
|
2022-08-10 19:16:44 +00:00
|
|
|
warning_button = Gtk.Template.Child("warning-button")
|
|
|
|
warning_label = Gtk.Template.Child("warning-label")
|
2022-07-17 11:46:05 +00:00
|
|
|
explanation_button = Gtk.Template.Child("explanation-button")
|
|
|
|
explanation_label = Gtk.Template.Child("explanation-label")
|
|
|
|
|
2022-09-23 11:14:21 +00:00
|
|
|
def __init__(self, name, title, explanation, adw_gtk3_support="yes", **kwargs):
|
2022-07-17 11:46:05 +00:00
|
|
|
super().__init__(**kwargs)
|
|
|
|
|
2022-07-17 15:02:29 +00:00
|
|
|
self.set_name(name)
|
2022-07-17 11:46:05 +00:00
|
|
|
self.set_title(title)
|
2022-07-25 11:08:41 +00:00
|
|
|
self.set_subtitle("@" + name)
|
2022-08-10 19:16:44 +00:00
|
|
|
|
|
|
|
if adw_gtk3_support == "yes":
|
|
|
|
self.warning_button.set_visible(False)
|
|
|
|
elif adw_gtk3_support == "partial":
|
|
|
|
self.warning_button.add_css_class("warning")
|
2022-08-11 16:39:52 +00:00
|
|
|
self.warning_label.set_label(
|
2022-09-23 11:14:21 +00:00
|
|
|
_(
|
|
|
|
"This option is only partially supported by the adw-gtk3 \
|
2022-09-23 16:45:54 +00:00
|
|
|
theme."
|
2022-09-23 11:14:21 +00:00
|
|
|
)
|
2022-09-07 15:51:36 +00:00
|
|
|
)
|
2022-08-10 19:16:44 +00:00
|
|
|
elif adw_gtk3_support == "no":
|
|
|
|
self.warning_button.add_css_class("error")
|
2022-08-11 16:39:52 +00:00
|
|
|
self.warning_label.set_label(
|
|
|
|
_("This option is not supported by the adw-gtk3 theme.")
|
|
|
|
)
|
2022-08-10 19:16:44 +00:00
|
|
|
|
2022-07-17 11:46:05 +00:00
|
|
|
self.explanation_label.set_label(explanation or "")
|
2022-07-18 14:23:01 +00:00
|
|
|
if explanation is None:
|
2022-07-17 11:46:05 +00:00
|
|
|
self.explanation_button.set_visible(False)
|
|
|
|
|
2022-07-17 12:25:36 +00:00
|
|
|
@Gtk.Template.Callback()
|
2022-07-25 14:35:40 +00:00
|
|
|
def on_color_value_changed(self, *_args):
|
2022-08-11 16:39:52 +00:00
|
|
|
self.update_value(
|
|
|
|
self.color_value.get_rgba().to_string(), update_from="color_value"
|
|
|
|
)
|
2022-07-17 12:25:36 +00:00
|
|
|
|
|
|
|
@Gtk.Template.Callback()
|
2022-07-25 14:35:40 +00:00
|
|
|
def on_text_value_changed(self, *_args):
|
2022-07-17 12:25:36 +00:00
|
|
|
self.update_value(self.text_value.get_text(), update_from="text_value")
|
|
|
|
|
2022-07-17 11:46:05 +00:00
|
|
|
@Gtk.Template.Callback()
|
2022-07-25 14:35:40 +00:00
|
|
|
def on_text_value_toggled(self, *_args):
|
2022-07-24 18:43:32 +00:00
|
|
|
if self.text_value_toggle.get_active():
|
2022-07-17 11:46:05 +00:00
|
|
|
self.value_stack.set_visible_child(self.text_value)
|
|
|
|
else:
|
|
|
|
self.value_stack.set_visible_child(self.color_value)
|
|
|
|
|
2022-07-17 12:25:36 +00:00
|
|
|
def update_value(self, new_value, **kwargs):
|
2022-07-30 05:10:31 +00:00
|
|
|
rgba = Gdk.RGBA()
|
2022-07-17 12:25:36 +00:00
|
|
|
if kwargs.get("update_from") != "text_value":
|
2022-07-30 05:10:31 +00:00
|
|
|
if rgba.parse(new_value):
|
|
|
|
self.text_value.set_text(rgba.to_string())
|
|
|
|
else:
|
|
|
|
self.text_value.set_text(new_value)
|
2022-07-17 12:25:36 +00:00
|
|
|
if kwargs.get("update_from") != "color_value":
|
|
|
|
if rgba.parse(new_value):
|
|
|
|
self.color_value.set_rgba(rgba)
|
2022-07-24 17:46:37 +00:00
|
|
|
self.color_value.set_tooltip_text(new_value)
|
2022-07-17 12:25:36 +00:00
|
|
|
if kwargs.get("update_from") != "text_value":
|
|
|
|
self.text_value_toggle.set_active(False)
|
|
|
|
elif kwargs.get("update_from") != "text_value":
|
|
|
|
self.text_value_toggle.set_active(True)
|
|
|
|
else:
|
2022-07-30 05:10:31 +00:00
|
|
|
rgba.parse("rgba(0,0,0,0)")
|
2022-07-17 12:25:36 +00:00
|
|
|
self.color_value.set_rgba(rgba)
|
2022-08-17 21:35:59 +00:00
|
|
|
self.color_value.set_tooltip_text(
|
|
|
|
_("Not a color, see text value"))
|
2022-07-17 11:46:05 +00:00
|
|
|
|
2022-08-11 16:39:52 +00:00
|
|
|
if (
|
|
|
|
Gtk.Application.get_default().is_ready
|
|
|
|
and kwargs.get("update_from") == "text_value"
|
|
|
|
and new_value != ""
|
|
|
|
):
|
2022-08-17 21:35:59 +00:00
|
|
|
Gtk.Application.get_default(
|
|
|
|
).variables[self.get_name()] = new_value
|
2022-08-01 19:42:42 +00:00
|
|
|
Gtk.Application.get_default().mark_as_dirty()
|
2022-07-17 15:02:29 +00:00
|
|
|
Gtk.Application.get_default().reload_variables()
|