# plugin_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 . from gi.repository import Gtk, Gdk, Adw from .modules.utils import buglog from .constants import rootdir @Gtk.Template(resource_path=f"{rootdir}/ui/plugin_row.ui") class GradiencePluginRow(Adw.ActionRow): __gtype_name__ = "GradiencePluginRow" def __init__(self, title, id, **kwargs): super().__init__(**kwargs) self.set_name(id) self.set_title(title) self.set_subtitle("@" + id) switch = Gtk.Template.Child("switch") settings_button = Gtk.Template.Child("settings-button") remove_button = Gtk.Template.Child("remove-button") @Gtk.Template.Callback() def on_settings_plugin_clicked(self, *_args): buglog("settings") @Gtk.Template.Callback() def on_remove_plugin_clicked(self, *_args): buglog("removed") @Gtk.Template.Callback() def on_switch_toggled(self, *_args): buglog("toggled") Gtk.Application.get_default().reload_plugins()