Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/webtoolbar.py
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpg@redhat.com>2007-02-07 23:43:05 (GMT)
committer Marco Pesenti Gritti <mpg@redhat.com>2007-02-07 23:43:05 (GMT)
commitc86b4de01f05dd06ba3a62dfe252b6ab017997e9 (patch)
tree37627a45c1d1004fc061f408c7c31492d8605c18 /webtoolbar.py
parentd575c34e1b1b13f292b5e5096ce2635e02e6dd0a (diff)
parenta798cffb470c76bf6a31b1108f9b27930656ea9e (diff)
Merge branch 'master' of git+ssh://dev.laptop.org/git/web-activity
Diffstat (limited to 'webtoolbar.py')
-rwxr-xr-xwebtoolbar.py114
1 files changed, 114 insertions, 0 deletions
diff --git a/webtoolbar.py b/webtoolbar.py
new file mode 100755
index 0000000..591863e
--- /dev/null
+++ b/webtoolbar.py
@@ -0,0 +1,114 @@
+# Copyright (C) 2006, Red Hat, Inc.
+#
+# This program 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.
+#
+# This program 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 this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
+import hippo
+import gtk
+
+from _sugar import AddressEntry
+
+from sugar.graphics.toolbar import Toolbar
+from sugar.graphics.button import Button
+
+class WebToolbar(Toolbar):
+ def __init__(self, embed):
+ Toolbar.__init__(self)
+
+ self._back = Button('theme:stock-back')
+ self._back.props.active = False
+ self._back.connect("activated", self._go_back_cb)
+ self.append(self._back)
+
+ self._forward = Button('theme:stock-forward')
+ self._forward.props.active = False
+ self._forward.connect("activated", self._go_forward_cb)
+ self.append(self._forward)
+
+ self._stop_and_reload = Button('theme:stock-close')
+ self._stop_and_reload.connect("activated", self._stop_and_reload_cb)
+ self.append(self._stop_and_reload)
+
+ self._entry = AddressEntry()
+ self._entry.connect("activate", self._entry_activate_cb)
+
+ entry_widget = hippo.CanvasWidget()
+ entry_widget.props.widget = self._entry
+ self.append(entry_widget, hippo.PACK_EXPAND)
+
+ self._post = Button('theme:stock-add')
+ self._post.props.active = False
+ self._post.connect("activated", self._post_cb)
+ self.append(self._post)
+
+ self._embed = embed
+ self._embed.connect("notify::progress", self._progress_changed_cb)
+ self._embed.connect("notify::loading", self._loading_changed_cb)
+ self._embed.connect("notify::address", self._address_changed_cb)
+ self._embed.connect("notify::title", self._title_changed_cb)
+ self._embed.connect("notify::can-go-back",
+ self._can_go_back_changed_cb)
+ self._embed.connect("notify::can-go-forward",
+ self._can_go_forward_changed_cb)
+
+ self._update_stop_and_reload_icon()
+
+ def set_links_controller(self, links_controller):
+ self._links_controller = links_controller
+ self._post.props.active = True
+
+ def _update_stop_and_reload_icon(self):
+ if self._embed.props.loading:
+ self._stop_and_reload.props.icon_name = 'theme:stock-close'
+ else:
+ self._stop_and_reload.props.icon_name = 'theme:stock-continue'
+
+ def _progress_changed_cb(self, embed, spec):
+ self._entry.props.progress = embed.props.progress
+
+ def _loading_changed_cb(self, embed, spec):
+ self._update_stop_and_reload_icon()
+
+ def _address_changed_cb(self, embed, spec):
+ self._entry.props.address = embed.props.address
+
+ def _title_changed_cb(self, embed, spec):
+ self._entry.props.title = embed.props.title
+
+ def _can_go_back_changed_cb(self, embed, spec):
+ self._back.props.active = embed.props.can_go_back
+
+ def _can_go_forward_changed_cb(self, embed, spec):
+ self._forward.props.active = embed.props.can_go_forward
+
+ def _entry_activate_cb(self, entry):
+ self._embed.load_url(entry.get_text())
+ self._embed.grab_focus()
+
+ def _go_back_cb(self, button):
+ self._embed.go_back()
+
+ def _go_forward_cb(self, button):
+ self._embed.go_forward()
+
+ def _stop_and_reload_cb(self, button):
+ if self._embed.props.loading:
+ self._embed.stop_load()
+ else:
+ self._embed.reload(0)
+
+ def _post_cb(self, button):
+ title = self._embed.get_title()
+ address = self._embed.get_location()
+ self._links_controller.post_link(title, address)