window.py 1.23 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

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

Roman Alifanov's avatar
Roman Alifanov committed
22
from .settings import init_settings_stack
Roman Alifanov's avatar
Roman Alifanov committed
23 24 25 26 27

@Gtk.Template(resource_path='/ru/ximperlinux/TuteIt/window.ui')
class TuneitWindow(Adw.ApplicationWindow):
    __gtype_name__ = 'TuneitWindow'

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

    def __init__(self, **kwargs):
        super().__init__(**kwargs)

35
        init_settings_stack(self.settings_pagestack, self.settings_listbox, self.settings_split_view)