]> git.phdru.name Git - m_librarian.git/blob - m_librarian/wx/AWindow.py
Feat(wx): Close window with `Ctrl+W`
[m_librarian.git] / m_librarian / wx / AWindow.py
1 # coding: utf-8
2
3 import wx, wx.adv  # noqa: E401 multiple imports on one line
4 from ..__version__ import __version__
5 from .session_config import get_session_config
6
7
8 class AWindow(wx.Frame):
9
10     '''
11     A universal parent class for all top-level application windows
12
13     Standard menu and ability to save/restore window size.
14     '''
15
16     # Subclasses should override these
17     session_config_section_name = None
18     window_title = None
19
20     def __init__(self, parent=None):
21         if self.session_config_section_name:
22             session_config = get_session_config()
23             width = session_config.getint(
24                 self.session_config_section_name, 'width', 600)
25             height = session_config.getint(
26                 self.session_config_section_name, 'height', 400)
27         else:
28             width = 600
29             height = 400
30         wx.Frame.__init__(
31             self,
32             parent=parent, id=-1, title=self.window_title,
33             size=wx.Size(width=width, height=height),
34         )
35         self.OnInit()
36         self.Show(True)
37
38     def OnInit(self):
39         self.InitMenu()
40         if self.session_config_section_name:
41             self.Bind(wx.EVT_SIZE, self.OnSize)
42
43     def InitMenu(self):
44         MenuBar = wx.MenuBar()
45         self.SetMenuBar(MenuBar)
46
47         file_menu = wx.Menu()
48
49         if self.Parent:
50             close_win = \
51                 file_menu.Append(wx.ID_CLOSE, u"&Закрыть", u"Закрыть окно")
52             self.Bind(wx.EVT_MENU, self.OnCloseCommand, close_win)
53
54         quit = file_menu.Append(wx.ID_EXIT, u"&Выход", u"Выйти из программы")
55         self.Bind(wx.EVT_MENU, self.OnQuit, quit)
56         MenuBar.Append(file_menu, u"&Файл")
57
58         about_menu = wx.Menu()
59         about = about_menu.Append(wx.ID_ABOUT,
60                                   u"&О m_Librarian", u"О m_Librarian")
61         self.Bind(wx.EVT_MENU, self.OnAbout, about)
62         MenuBar.Append(about_menu, u"&О программе")
63
64     def OnCloseCommand(self, event):
65         self.Close(True)
66
67     def OnQuit(self, event):
68         wx.GetApp().ExitMainLoop()
69
70     def OnAbout(self, event):
71         aboutInfo = wx.adv.AboutDialogInfo()
72         aboutInfo.SetName(u'm_Librarian')
73         aboutInfo.SetVersion(__version__)
74         aboutInfo.SetDescription(
75             u'Библиотекарь для библиотек LibRusEc/Flibusta')
76         aboutInfo.AddDeveloper(u'Олег Бройтман')
77         aboutInfo.SetWebSite(
78             u'https://phdru.name/Software/Python/m_librarian/')
79         aboutInfo.SetCopyright(u'(C) 2023, 2024 Олег Бройтман')
80         aboutInfo.SetLicense(u'GPL')
81         wx.adv.AboutBox(aboutInfo)
82
83     def OnSize(self, event):
84         """Save window size in the session config"""
85         if self.session_config_section_name:
86             size = event.GetSize()
87             session_config = get_session_config()
88             session_config.set(
89                 self.session_config_section_name, 'width', str(size.width))
90             session_config.set(
91                 self.session_config_section_name, 'height', str(size.height))
92             session_config.save()
93         event.Skip()  # Call other handlers