window.py 1.86 KB
Newer Older
Roman Alifanov's avatar
Roman Alifanov committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
# window.py
#
# Copyright 2024 Etersoft
#
# 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/>.
#
# SPDX-License-Identifier: GPL-3.0-or-later

20 21
import threading
from gi.repository import GObject, Adw, Gtk, GLib
Roman Alifanov's avatar
Roman Alifanov committed
22

Roman Alifanov's avatar
Roman Alifanov committed
23
from .settings.main import init_settings_stack
Roman Alifanov's avatar
Roman Alifanov committed
24

25
@Gtk.Template(resource_path='/ru.ximperlinux.TuneIt/window.ui')
Roman Alifanov's avatar
Roman Alifanov committed
26 27 28
class TuneitWindow(Adw.ApplicationWindow):
    __gtype_name__ = 'TuneitWindow'

Roman Alifanov's avatar
Roman Alifanov committed
29
    settings_pagestack = Gtk.Template.Child()
30 31
    settings_listbox = Gtk.Template.Child()
    settings_split_view = Gtk.Template.Child()
Roman Alifanov's avatar
Roman Alifanov committed
32

33 34 35 36
    @GObject.Signal
    def settings_page_update(self):
        pass

Roman Alifanov's avatar
Roman Alifanov committed
37 38
    def __init__(self, **kwargs):
        super().__init__(**kwargs)
39 40
        self.connect('settings_page_update', self.update_settings_page)
        self.update_settings_page()
Roman Alifanov's avatar
Roman Alifanov committed
41

42 43 44 45 46 47
    def update_settings_page(self):
        thread = threading.Thread(target=self._update_settings_page)
        thread.daemon = True
        thread.start()

    def _update_settings_page(self, *args):
48 49 50 51
        """
        Можно вызвать вот так, благодаря сигналу:
        self.settings_pagestack.get_root().emit("settings_page_update")
        """
52 53 54 55 56
        init_settings_stack(
            self.settings_pagestack,
            self.settings_listbox,
            self.settings_split_view,
        )