Gradience/gradience/frontend/widgets/builtin_preset_row.py
tfuxu a8c83d1935
feat: introduce new backend/logger module
This commit introduces a new logger module and converts any log message that used buglog() to use one of five new functions from Logger class.
2022-12-04 00:00:18 +01:00

55 lines
1.7 KiB
Python

# builtin_preset_row.py
#
# Change the look of Adwaita, with ease
# Copyright (C) 2022 Gradience Team
#
# 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.
#
# 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.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
from gi.repository import Gtk, Adw
from gradience.backend.utils.common import to_slug_case
from gradience.backend.constants import rootdir
from gradience.backend.logger import Logger
logging = Logger()
@Gtk.Template(resource_path=f"{rootdir}/ui/builtin_preset_row.ui")
class GradienceBuiltinPresetRow(Adw.ActionRow):
__gtype_name__ = "GradienceBuiltinPresetRow"
apply_button = Gtk.Template.Child("apply_button")
def __init__(self, name, toast_overlay, author="", **kwargs):
super().__init__(**kwargs)
self.name = name
self.set_name(name)
self.set_title(name)
self.app = Gtk.Application.get_default()
self.toast_overlay = toast_overlay
apply_button = Gtk.Template.Child("apply_button")
@Gtk.Template.Callback()
def on_apply_button_clicked(self, *_args):
logging.debug("apply")
self.app.load_preset_from_resource(
f"{rootdir}/presets/" + to_slug_case(self.name) + ".json"
)