]> git.phdru.name Git - m_librarian.git/blob - m_librarian/wx/ListBooks.py
Feat(wx/search): Catch Enter and double-click, open books window
[m_librarian.git] / m_librarian / wx / ListBooks.py
1 # coding: utf-8
2
3 import wx
4 from .AWindow import AWindow
5
6
7 class ListBooksWindow(AWindow):
8
9     session_config_section_name = 'list_books'
10     window_title = u"m_Librarian: Список книг"
11
12     def __init__(self, parent, author):
13         self.author = author
14         AWindow.__init__(self, parent)