Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/python/webview.py
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2007-05-21 12:41:16 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2007-05-21 12:41:16 (GMT)
commite4a8e189e7cf25236ffebc72ac8d7bed6893b70d (patch)
treee2bef921f0fb1161e1cc89b6df6312a6c1ae3c5f /python/webview.py
parentd8d3d5a63b7934f0740cdebb5f3b1d8fc99ed16b (diff)
Split the python bindings to their own directory
Diffstat (limited to 'python/webview.py')
-rw-r--r--python/webview.py43
1 files changed, 43 insertions, 0 deletions
diff --git a/python/webview.py b/python/webview.py
new file mode 100644
index 0000000..3b5e380
--- /dev/null
+++ b/python/webview.py
@@ -0,0 +1,43 @@
+# Copyright (C) 2007, Red Hat, Inc.
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This library 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
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the
+# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+
+from hulahop import _hulahop
+
+from xpcom import components
+from xpcom.components import interfaces
+
+class WebView(_hulahop.WebView):
+ def __init__(self):
+ _hulahop.WebView.__init__(self)
+
+ def get_window_root(self):
+ return _hulahop.WebView.get_window_root(self)
+
+ def get_browser(self):
+ return _hulahop.WebView.get_browser(self)
+
+ def get_window(self):
+ return self.browser.contentDOMWindow
+
+ def load_uri(self, uri):
+ web_nav = self.browser.queryInterface(interfaces.nsIWebNavigation)
+ web_nav.loadURI(uri, interfaces.nsIWebNavigation.LOAD_FLAGS_NONE,
+ None, None, None)
+
+ window = property(get_window)
+ browser = property(get_browser)
+ window_root = property(get_window_root)