Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/webview.py
blob: ae01c5a789ac9e46971e9c41e02b65ab305c3f53 (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
127
128
129
# 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 os

import gobject
import gtk
import logging

from _sugar import Browser
from _sugar import PushScroller

class _PopupCreator(gobject.GObject):
    __gsignals__ = {
        'popup-created':  (gobject.SIGNAL_RUN_FIRST,
                           gobject.TYPE_NONE, ([])),
    }

    def __init__(self, parent_window):
        gobject.GObject.__init__(self)

        logging.debug('Creating the popup widget')

        self._sized_popup = False
        self._parent_window = parent_window

        self._dialog = gtk.Window()
        self._dialog.set_resizable(True)

        self._dialog.realize()
        self._dialog.window.set_type_hint(gtk.gdk.WINDOW_TYPE_HINT_DIALOG)

        self._embed = Browser()
        self._size_to_sid = self._embed.connect('size_to', self._size_to_cb)
        self._vis_sid = self._embed.connect('visibility', self._visibility_cb)

        self._dialog.add(self._embed)

    def _size_to_cb(self, embed, width, height):
        logging.debug('Resize the popup to %d %d' % (width, height))
        self._sized_popup = True
        self._dialog.resize(width, height)

    def _visibility_cb(self, embed, visible):
        if visible:
            if self._sized_popup:
                logging.debug('Show the popup')
                self._embed.show()
                self._dialog.set_transient_for(self._parent_window)
                self._dialog.show()
            else:
                logging.debug('Open a new activity for the popup')
                self._dialog.remove(self._embed)

                # FIXME We need a better way to handle this.
                # It seem like a pretty special case though, I doubt
                # other activities will need something similar.
                from webactivity import WebActivity
                activity = WebActivity(self._embed)
                activity.set_type('org.laptop.WebActivity')

            self._embed.disconnect(self._size_to_sid)
            self._embed.disconnect(self._vis_sid)

            self.emit('popup-created')

    def get_embed(self):
        return self._embed

class WebView(Browser):
    __gtype_name__ = "SugarWebBrowser"

    def __init__(self):
        Browser.__init__(self)
        self._popup_creators = []

        self.connect('mouse-click', self._dom_click_cb)

    def _get_menu(self, image_uri):
        menu = gtk.Menu()
        menu_item = gtk.ImageMenuItem(gtk.STOCK_SAVE)
        menu_item.connect('activate', self._save_menu_activate_cb, image_uri)
        menu.add(menu_item)
        menu.show_all()
        return menu

    def _dom_click_cb(self, browser, event):
        #if event.button
        if event.image_uri:
            self._get_menu(event.image_uri).popup(None, None, None, 1, 0)

    def do_create_window(self):
        popup_creator = _PopupCreator(self.get_toplevel())
        popup_creator.connect('popup-created', self._popup_created_cb)

        self._popup_creators.append(popup_creator)

        return popup_creator.get_embed()

    def _popup_created_cb(self, creator):
        self._popup_creators.remove(creator)

    def _save_menu_activate_cb(self, menu_item, image_uri):
        chooser = gtk.FileChooserDialog(title=None,
                                        action=gtk.FILE_CHOOSER_ACTION_SAVE,
                                        buttons=(gtk.STOCK_CANCEL,
                                                 gtk.RESPONSE_CANCEL,
                                                 gtk.STOCK_SAVE,
                                                 gtk.RESPONSE_OK))
        chooser.set_default_response(gtk.RESPONSE_OK)
        chooser.set_current_folder(os.path.expanduser('~'))
        response = chooser.run()

        if response == gtk.RESPONSE_OK:
            self.save_uri(image_uri, chooser.get_filename())

        chooser.destroy()