Adding history back, forward and reload page
svn: r11462
This commit is contained in:
parent
992f0534bb
commit
1654729189
@ -147,6 +147,15 @@ class Renderer():
|
|||||||
"""
|
"""
|
||||||
raise NotImplementedError
|
raise NotImplementedError
|
||||||
|
|
||||||
|
def refresh(self):
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
|
def go_back(self):
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
|
def go_forward(self):
|
||||||
|
raise NotImplementedError
|
||||||
|
|
||||||
def execute_script(self, url):
|
def execute_script(self, url):
|
||||||
""" execute script in the current html page
|
""" execute script in the current html page
|
||||||
"""
|
"""
|
||||||
@ -165,10 +174,19 @@ class RendererWebkit(Renderer):
|
|||||||
Renderer.__init__(self)
|
Renderer.__init__(self)
|
||||||
self.window = webkit.WebView()
|
self.window = webkit.WebView()
|
||||||
self.browser = WEBKIT
|
self.browser = WEBKIT
|
||||||
|
|
||||||
def open(self, url):
|
def open(self, url):
|
||||||
self.window.open(url)
|
self.window.open(url)
|
||||||
|
|
||||||
|
def refresh(self):
|
||||||
|
self.window.reload();
|
||||||
|
|
||||||
|
def go_back(self):
|
||||||
|
self.window.go_back();
|
||||||
|
|
||||||
|
def go_forward(self):
|
||||||
|
self.window.go_forward();
|
||||||
|
|
||||||
def execute_script(self,url):
|
def execute_script(self,url):
|
||||||
self.window.execute_script(url);
|
self.window.execute_script(url);
|
||||||
|
|
||||||
@ -194,6 +212,15 @@ class RendererMozilla(Renderer):
|
|||||||
def execute_script(self,url):
|
def execute_script(self,url):
|
||||||
self.window.load_url(url);
|
self.window.load_url(url);
|
||||||
|
|
||||||
|
def refresh(self):
|
||||||
|
self.window.reload(0);
|
||||||
|
|
||||||
|
def go_back(self):
|
||||||
|
self.window.go_back();
|
||||||
|
|
||||||
|
def go_forward(self):
|
||||||
|
self.window.go_forward();
|
||||||
|
|
||||||
def __set_mozembed_proxy(self):
|
def __set_mozembed_proxy(self):
|
||||||
"""
|
"""
|
||||||
Try to see if we have some proxy environment variable.
|
Try to see if we have some proxy environment variable.
|
||||||
@ -432,6 +459,15 @@ class GeoView(HtmlView):
|
|||||||
def change_map(self):
|
def change_map(self):
|
||||||
self.renderer.execute_script("javascript:mapstraction.swap(map,'"+self.usedmap+"')");
|
self.renderer.execute_script("javascript:mapstraction.swap(map,'"+self.usedmap+"')");
|
||||||
|
|
||||||
|
def refresh(self,button):
|
||||||
|
self.renderer.refresh();
|
||||||
|
|
||||||
|
def go_back(self,button):
|
||||||
|
self.renderer.go_back();
|
||||||
|
|
||||||
|
def go_forward(self,button):
|
||||||
|
self.renderer.go_forward();
|
||||||
|
|
||||||
def ui_definition(self):
|
def ui_definition(self):
|
||||||
"""
|
"""
|
||||||
Specifies the UIManager XML code that defines the menus and buttons
|
Specifies the UIManager XML code that defines the menus and buttons
|
||||||
@ -448,6 +484,11 @@ class GeoView(HtmlView):
|
|||||||
alternate_map = "MicrosoftMaps"
|
alternate_map = "MicrosoftMaps"
|
||||||
return '''<ui>
|
return '''<ui>
|
||||||
<toolbar name="ToolBar">
|
<toolbar name="ToolBar">
|
||||||
|
<placeholder name="CommonNavigation">
|
||||||
|
<toolitem action="Back"/>
|
||||||
|
<toolitem action="Forward"/>
|
||||||
|
<toolitem action="Refresh"/>
|
||||||
|
</placeholder>
|
||||||
<placeholder name="CommonEdit">
|
<placeholder name="CommonEdit">
|
||||||
<toolitem action="OpenStreetMap"/>
|
<toolitem action="OpenStreetMap"/>
|
||||||
<toolitem action="%s"/>
|
<toolitem action="%s"/>
|
||||||
@ -474,6 +515,26 @@ class GeoView(HtmlView):
|
|||||||
at the beginning of the history.
|
at the beginning of the history.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
# add the Backward action to handle the Forward button
|
||||||
|
# accel doesn't work in webkit and gtkmozembed !
|
||||||
|
# we must do that ...
|
||||||
|
self._add_action('Back', gtk.STOCK_GO_BACK, _("_Back"),
|
||||||
|
callback=self.go_back,
|
||||||
|
accel="<Alt>Right",
|
||||||
|
tip=_("Go to the previous page in the history."))
|
||||||
|
|
||||||
|
# add the Forward action to handle the Forward button
|
||||||
|
self._add_action('Forward', gtk.STOCK_GO_FORWARD, _("_Forward"),
|
||||||
|
callback=self.go_forward,
|
||||||
|
accel="<Alt>Left",
|
||||||
|
tip=_("Go to the next page in the history."))
|
||||||
|
|
||||||
|
# add the Refresh action to handle the Refresh button
|
||||||
|
self._add_action('Refresh', gtk.STOCK_REFRESH, _("_Refresh"),
|
||||||
|
callback=self.refresh,
|
||||||
|
accel="<Alt>Down",
|
||||||
|
tip=_("Stop and reload the page."))
|
||||||
|
|
||||||
self._add_action('OpenStreetMap', 'gramps-openstreetmap', _('_OpenStreetMap'),
|
self._add_action('OpenStreetMap', 'gramps-openstreetmap', _('_OpenStreetMap'),
|
||||||
callback=self.select_OpenStreetMap_map,
|
callback=self.select_OpenStreetMap_map,
|
||||||
tip=_("Select OpenStreetMap Maps"))
|
tip=_("Select OpenStreetMap Maps"))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user