home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.6)
-
- __license__ = 'GPL v3'
- __copyright__ = '2010, Kovid Goyal <kovid@kovidgoyal.net>'
- __docformat__ = 'restructuredtext en'
- from calibre.gui2.actions import InterfaceAction
- from calibre.gui2.dialogs.book_info import BookInfo
- from calibre.gui2 import error_dialog
-
- class ShowBookDetailsAction(InterfaceAction):
- name = 'Show Book Details'
- action_spec = (_('Show book details'), 'dialog_information.png', None, _('I'))
- dont_add_to = frozenset([
- 'toolbar-device',
- 'context-menu-device'])
- action_type = 'current'
-
- def genesis(self):
- self.qaction.triggered.connect(self.show_book_info)
-
-
- def show_book_info(self, *args):
- if self.gui.current_view() is not self.gui.library_view:
- error_dialog(self.gui, _('No detailed info available'), _('No detailed information is available for books on the device.')).exec_()
- return None
- index = self.gui.library_view.currentIndex()
- if index.isValid():
- BookInfo(self.gui, self.gui.library_view, index).show()
-
-
-
-