Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/python/webview.py
blob: 443131ae19f1d8cd44bd1424bc43c2822519b760 (plain)
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
# 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.

import gobject

from hulahop import _hulahop

import xpcom
from xpcom import components
from xpcom.components import interfaces

class _Chrome:
    _com_interfaces_ = interfaces.nsIWebBrowserChrome,  \
                       interfaces.nsIEmbeddingSiteWindow

    def __init__(self, web_view):
        self.web_view = web_view
        self.title = ''

    # nsIWebBrowserChrome
    def destroyBrowserWindow(self):
        pass
    
    def exitModalEventLoop(self, status):
        pass
        
    def isWindowModal(self):
        return False

    def setStatus(self, statusType, status):
        pass

    def showAsModal(self):
        pass
        
    def sizeBrowserTo(self, cx, cy):
        pass

    # nsIEmbeddingSiteWindow
    def getDimensions(self, flags):
        pass

    def setDimensions(self, flags, x, y, cx, cy):
        pass

    def setFocus(self):
        pass

    def get_title(self):
        return self.title
        
    def set_title(self, title):
        self.title = title
        self.web_view._notify_title_changed()
        
    def get_visibility(self):
        return True

    def set_visibility(self, visibility):
        pass
        
class WebView(_hulahop.WebView):
    __gproperties__ = {
        'title' : (str, None, None, None,
                   gobject.PARAM_READABLE)
    }
    def __init__(self):
        _hulahop.WebView.__init__(self)
        
        self._chrome = xpcom.server.WrapObject(
                    _Chrome(self), interfaces.nsIEmbeddingSiteWindow)
        weak_ref = xpcom.client.WeakReference(self._chrome)
        self.browser.containerWindow = self._chrome
        
        self.create_window()

    def _notify_title_changed(self):
        self.notify('title')

    def do_get_property(self, pspec):
        if pspec.name == 'title':
            return self._chrome.title

    def get_window_root(self):
        return _hulahop.WebView.get_window_root(self)

    def get_browser(self):
        return _hulahop.WebView.get_browser(self)

    def get_doc_shell(self):
        return _hulahop.WebView.get_doc_shell(self)

    def get_web_progress(self):
        return self.doc_shell.queryInterface(interfaces.nsIWebProgress)

    def get_web_navigation(self):
        return self.browser.queryInterface(interfaces.nsIWebNavigation)

    def get_window(self):
        return self.browser.contentDOMWindow

    def load_uri(self, uri):
        self.web_navigation.loadURI(
                    uri, interfaces.nsIWebNavigation.LOAD_FLAGS_NONE,
                    None, None, None)

    window = property(get_window)
    browser = property(get_browser)
    window_root = property(get_window_root)
    doc_shell = property(get_doc_shell)
    web_progress = property(get_web_progress)
    web_navigation = property(get_web_navigation)