X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=m_librarian%2Fwx%2FListBooks.py;fp=m_librarian%2Fwx%2FListBooks.py;h=97f88268d760a46c09b43e5eb7e4f466d2559554;hb=74e25a3ef07da5268107f1b246e6b466f178b524;hp=0000000000000000000000000000000000000000;hpb=73d5cd7b4ae212cb3f913bac350d2cb7e9a45889;p=m_librarian.git diff --git a/m_librarian/wx/ListBooks.py b/m_librarian/wx/ListBooks.py new file mode 100644 index 0000000..97f8826 --- /dev/null +++ b/m_librarian/wx/ListBooks.py @@ -0,0 +1,14 @@ +# coding: utf-8 + +import wx +from .AWindow import AWindow + + +class ListBooksWindow(AWindow): + + session_config_section_name = 'list_books' + window_title = u"m_Librarian: Список книг" + + def __init__(self, parent, author): + self.author = author + AWindow.__init__(self, parent)