1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
#!/usr/bin/env python
#
# docviewer.py
#
# (c) Copyright 2009-2010 Michael Towers (larch42 at googlemail dot com)
#
# This file is part of the larch project.
#
# larch 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 2 of the License, or
# (at your option) any later version.
#
# larch 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 larch; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
#----------------------------------------------------------------------------
# 2010.06.24
import os
class DocViewer:
def __init__(self):
self.index = self._getPage('index.html')
self.homepath = None
ui.widgetlist(fss('fetch_layout', 'docviewer.uim'))
ui.connectlist(
('doc:hide*clicked', self._hide),
('doc:back*clicked', self._back),
('doc:forward*clicked', self._forward),
('doc:home*clicked', self.gohome),
('doc:parent*clicked', self.goto),
(':docs*clicked', self._show),
)
def _show(self):
ui.runningtab(3)
def _hide(self):
ui.runningtab()
def _back(self):
ui.command('doc:content.prev')
def _forward(self):
ui.command('doc:content.next')
def _getPage(self, page):
return fss('get_docs_url', page)
def gohome(self, home=None):
if home:
self.homepath = self._getPage(home)
self.goto(self.homepath)
def goto(self, path=None):
if not path:
path = self.index
ui.command('doc:content.setUrl', path)
|