show hover link in address bar
This commit is contained in:
parent
5b5f9eeeec
commit
d11cd9bda0
1 changed files with 15 additions and 1 deletions
16
pyferea.py
16
pyferea.py
|
@ -147,7 +147,8 @@ class ContentPane (Gtk.Notebook):
|
||||||
|
|
||||||
__gsignals__ = {
|
__gsignals__ = {
|
||||||
"focus-view-title-changed": (GObject.SIGNAL_RUN_FIRST, GObject.TYPE_NONE, (GObject.TYPE_OBJECT, GObject.TYPE_STRING,)),
|
"focus-view-title-changed": (GObject.SIGNAL_RUN_FIRST, GObject.TYPE_NONE, (GObject.TYPE_OBJECT, GObject.TYPE_STRING,)),
|
||||||
"progress-changed": (GObject.SIGNAL_RUN_FIRST, GObject.TYPE_NONE, (GObject.TYPE_FLOAT,))
|
"progress-changed": (GObject.SIGNAL_RUN_FIRST, GObject.TYPE_NONE, (GObject.TYPE_FLOAT,)),
|
||||||
|
"hover-link-changed": (GObject.SIGNAL_RUN_FIRST, GObject.TYPE_NONE, (GObject.TYPE_STRING,))
|
||||||
}
|
}
|
||||||
|
|
||||||
def __init__ (self):
|
def __init__ (self):
|
||||||
|
@ -228,6 +229,8 @@ class ContentPane (Gtk.Notebook):
|
||||||
|
|
||||||
def _hovering_over_link_cb (view, title, uri):
|
def _hovering_over_link_cb (view, title, uri):
|
||||||
self._hovered_uri = uri
|
self._hovered_uri = uri
|
||||||
|
self.emit("hover-link-changed", uri)
|
||||||
|
|
||||||
web_view.connect("hovering-over-link", _hovering_over_link_cb)
|
web_view.connect("hovering-over-link", _hovering_over_link_cb)
|
||||||
|
|
||||||
def _populate_page_popup_cb(view, menu):
|
def _populate_page_popup_cb(view, menu):
|
||||||
|
@ -400,6 +403,13 @@ class WebToolbar(Gtk.Toolbar):
|
||||||
def location_set_progress(self, progress):
|
def location_set_progress(self, progress):
|
||||||
self._entry.set_progress_fraction(progress%1)
|
self._entry.set_progress_fraction(progress%1)
|
||||||
|
|
||||||
|
def show_hover_uri(self, uri):
|
||||||
|
if uri:
|
||||||
|
self._entrytext = self._entry.get_text()
|
||||||
|
self._entry.set_text(uri)
|
||||||
|
else:
|
||||||
|
self._entry.set_text(self._entrytext)
|
||||||
|
|
||||||
|
|
||||||
class EntryTree(Gtk.TreeView):
|
class EntryTree(Gtk.TreeView):
|
||||||
__gsignals__ = {
|
__gsignals__ = {
|
||||||
|
@ -902,6 +912,10 @@ class FeedReaderWindow(Gtk.Window):
|
||||||
toolbar.location_set_progress(progress)
|
toolbar.location_set_progress(progress)
|
||||||
content_pane.connect("progress-changed", progress_changed_cb)
|
content_pane.connect("progress-changed", progress_changed_cb)
|
||||||
|
|
||||||
|
def hover_link_changed_cb(pane, uri):
|
||||||
|
toolbar.show_hover_uri(uri)
|
||||||
|
content_pane.connect("hover-link-changed", hover_link_changed_cb)
|
||||||
|
|
||||||
entries = EntryTree(config, feeddb)
|
entries = EntryTree(config, feeddb)
|
||||||
|
|
||||||
def item_selected_cb(entry, feedurl, item):
|
def item_selected_cb(entry, feedurl, item):
|
||||||
|
|
Loading…
Reference in a new issue