/usr/share/pyshared/cream/melange/widget.py is in python-cream.melange 0.5.2-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 | # Copyright: 2007-2013, Sebastian Billaudelle <sbillaudelle@googlemail.com>
# 2010-2013, Kristoffer Kleine <kris.kleine@yahoo.de>
# 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 Street, Fifth Floor, Boston, MA 02110-1301, USA.
import os
import json
import shutil
import urlparse
import webbrowser
from gi.repository import Gtk as gtk, Gdk as gdk, GObject as gobject, WebKit as webkit
import cream
import cream.log
import cream.util
import cream.config
import cream.manifest
from gpyconf.fields import MultiOptionField
from cream.melange.api import import_api_file, Thread, APIS
from cream.melange.dialogs import AboutDialog
from cream.melange.common import (STATE_NONE, STATE_MOVING, MOUSE_BUTTON_MIDDLE,
MOUSE_BUTTON_RIGHT, MOVE_TIMESTEP)
USE_GLOBAL_SETTINGS = 'use.the.fucking.global.settings'
def register_scheme(scheme):
for method in filter(lambda s: s.startswith('uses_'), dir(urlparse)):
getattr(urlparse, method).append(scheme)
register_scheme('melange')
register_scheme('config')
class WidgetConfiguration(cream.config.Configuration):
def __init__(self, scheme_path, path, skins, themes):
cream.config.Configuration.__init__(self, scheme_path, path, read=False)
self._add_field(
'skin',
MultiOptionField('Skin',
section='Appearance',
options=((s['id'], s['name']) for s in skins.get_all())
)
)
options = [(USE_GLOBAL_SETTINGS, 'Use global settings')]
options += [(t['id'], t['name']) for t in themes.get_all_themes()]
self._add_field(
'theme',
MultiOptionField('Theme',
section='Appearance',
options=options
)
)
self.read()
class WidgetView(webkit.WebView, gobject.GObject):
__gsignals__ = {
'show-request': (gobject.SignalFlags.RUN_LAST, None, ()),
'move-request': (gobject.SignalFlags.RUN_LAST, None, (int, int)),
'begin-move': (gobject.SignalFlags.RUN_LAST, None, ()),
'end-move': (gobject.SignalFlags.RUN_LAST, None, ()),
'show-config-dialog-request': (gobject.SignalFlags.RUN_LAST, None, ()),
'reload-request': (gobject.SignalFlags.RUN_LAST, None, ()),
'remove-request': (gobject.SignalFlags.RUN_LAST, None, ()),
'show-about-dialog-request': (gobject.SignalFlags.RUN_LAST, None, ())
}
def __init__(self, widget):
self.widget_ref = widget # XXX Circular reference
self.state = STATE_NONE
self.api = None
webkit.WebView.__init__(self)
gobject.GObject.__init__(self)
self.set_transparent(True)
settings = self.get_settings()
settings.set_property('enable-plugins', False)
self.set_settings(settings)
self.connect('button-press-event', self.button_press_cb)
self.connect('button-release-event', self.button_release_cb)
# Initialize drag and drop...
self.drag_dest_set(0, [], 0)
self.connect('drag_motion', self.drag_motion_cb)
self.connect('drag_drop', self.drag_drop_cb)
self.connect('drag_data_received', self.drag_data_cb)
skin_url = self.widget_ref.current_skin_path
self.skin_url = os.path.join(skin_url, 'index.html')
self.load_uri('file://' + self.skin_url)
self.connect('resource-request-starting', self.dispatch_resource)
self.connect('navigation-policy-decision-requested', self.navigation_request_cb)
self.connect('document-load-finished', self.document_load_finished_cb)
def dispatch_resource(self, view, frame, resource, request, response):
scheme, _, path, _, query, _ = urlparse.urlparse(request.get_uri())
if path.startswith('/theme'):
path = path[7:] # remove /theme/
path = os.path.join(self.widget_ref.current_theme_path, path)
elif path.startswith('/common'):
path = path[8:] # remove /common/
path = os.path.join(self.widget_ref.common_path, path)
elif path.startswith('/data'):
path = path[6:] # remove /data/
path = os.path.join(self.widget_ref.get_data_path(), path)
elif scheme == 'file' and not os.path.exists(path):
request.set_uri('about:blank')
return
else:
return
request.set_uri('file://' + path)
def navigation_request_cb(self, view, frame, request, action, decision):
scheme, action, path, _, query, _ = urlparse.urlparse(request.get_uri())
query = dict(urlparse.parse_qsl(query, keep_blank_values=True))
if scheme == 'melange':
if action == 'init':
self.init_api()
elif action == 'call':
method = path[1:]
callback_id = query.pop('callback_id', None)
arguments = []
for key in sorted(query.keys()):
if key.startswith('argument_'):
arguments.append(query[key])
self.handle_api_call(method, callback_id, arguments)
decision.ignore()
elif scheme == 'config':
if action == 'get':
callback_id, option = query['callback_id'], query['option']
value = getattr(self.widget_ref.config, option)
script = 'widget.config.invokeCallback({}, "{}");'.format(callback_id, value)
self.execute_script(script)
elif action == 'set':
option, value = query['option'], query['value']
setattr(self.widget_ref.config, option, value)
decision.ignore()
else:
webbrowser.open(request.get_uri())
return True
def init_api(self):
if not self.widget_ref.id in APIS:
path = self.widget_ref.context.working_directory
import_api_file(path, self.widget_ref.id)
api_klass = APIS[self.widget_ref.id]
api_klass.config = self.widget_ref.config
api_klass.context = self.widget_ref.context
api_klass.data_path = self.widget_ref.get_data_path()
api_klass.messages = self.widget_ref.messages
api_klass.emit = self._emit_api_signal
self.api = api_klass()
for method in self.api.get_exposed_methods():
self.execute_script('widget.registerMethod("{}");'.format(method))
self.execute_script('widget.main();')
def handle_api_call(self, method_name, callback_id, arguments):
def invoke_callback(thread, callback_id, result):
result = json.dumps(result)
script = 'widget.invokeCallback({}, {});'.format(callback_id, result)
self.execute_script(script)
method = getattr(self.api, method_name, None)
if method is None:
self.widget_ref.messages.error('API Method "{}" not found'.format(method_name))
thread = Thread(method, callback_id, arguments)
if callback_id is not None:
thread.connect('finished', invoke_callback)
thread.start()
def _emit_api_signal(self, signal, data=''):
script = 'widget.emitSignal("{}", {});'.format(signal, json.dumps(data))
self.execute_script(script)
def document_load_finished_cb(self, view, frame):
self.workaround_theme_caching()
self.emit('show-request')
def configuration_value_changed_cb(self, key, value):
event = 'field-value-changed'
script = 'widget.config.onConfigEvent("{}", "{}", "{}");'.format(event, key, value)
self.execute_script(script)
def begin_move(self):
self.state = STATE_MOVING
self.emit('begin-move')
def end_move(self):
self.state = STATE_NONE
self.emit('end-move')
def button_press_cb(self, view, event):
if event.button == MOUSE_BUTTON_MIDDLE:
self.begin_move()
return True
elif event.button == MOUSE_BUTTON_RIGHT:
self.menu.popup(None, None, None, None, event.button, event.get_time())
return True
def button_release_cb(self, view, event):
if event.button == MOUSE_BUTTON_MIDDLE:
self.end_move()
return True
def drag_motion_cb(self, view, context, x, y, time):
gdk.drag_status(context, gdk.DragAction.MOVE, time)
return True
def drag_drop_cb(self, view, context, x, y, time):
for target in context.list_targets():
if 'text/uri-list' in target.name():
view.drag_get_data(context, target, time)
return True
def drag_data_cb(self, view, context, x, y, data, info, time):
uris = json.dumps(data.get_uris())
script = "widget.fireDrop({}, {}, '{}');".format(x, y, uris)
self.execute_script(script)
gdk.drop_finish(context, True, time)
def move(self):
display = gdk.Display.get_default()
def move_cb(old_x, old_y):
new_x, new_y = display.get_pointer()[1:3]
move_x = new_x - old_x
move_y = new_y - old_y
if self.state == STATE_MOVING:
self.emit('move-request', move_x, move_y)
gobject.timeout_add(MOVE_TIMESTEP, move_cb, new_x, new_y)
move_cb(*display.get_pointer()[1:3])
@cream.util.cached_property
def menu(self):
item_configure = gtk.ImageMenuItem(gtk.STOCK_PREFERENCES)
item_configure.get_children()[0].set_label("Configure")
item_configure.connect('activate', lambda *x: self.emit('show-config-dialog-request'))
item_reload = gtk.ImageMenuItem(gtk.STOCK_REFRESH)
item_reload.get_children()[0].set_label("Reload")
item_reload.connect('activate', lambda *x: self.emit('reload-request'))
item_remove = gtk.ImageMenuItem(gtk.STOCK_REMOVE)
item_remove.get_children()[0].set_label("Remove")
item_remove.connect('activate', lambda *x: self.emit('remove-request'))
item_about = gtk.ImageMenuItem(gtk.STOCK_ABOUT)
item_about.get_children()[0].set_label("About")
item_about.connect('activate', lambda *x: self.emit('show-about-dialog-request'))
menu = gtk.Menu()
menu.append(item_configure)
menu.append(item_reload)
menu.append(item_remove)
menu.append(item_about)
menu.show_all()
return menu
def workaround_theme_caching(self):
"""
When we request our theme files via the /theme/ui url webkit caches
the first file, but if we change theme, then this url points to a different
location on disk and webkit instead loads the version from the cache.
Solve this issue by appending a random querystring onto every link and
script element that points to /themes/ui
"""
self.execute_script('''
var links = document.getElementsByTagName('link');
for(i = 0; i < links.length; i++) {
if(links[i].href.indexOf('/theme/ui') != -1)
links[i].href += '?random=' + (new Date()).getTime();
}
var scripts = document.getElementsByTagName('script');
for(i = 0; i < scripts.length; i++) {
if(scripts[i].src.indexOf('/theme/ui') != -1)
scripts[i].src += '?random=' + (new Date()).getTime();
}
''')
class Widget(gobject.GObject, cream.Component):
def __init__(self, widget_id, path, themes, common_path):
gobject.GObject.__init__(self)
cream.Component.__init__(self, path=path,
user_path_prefix='cream-melange/widget_data',
use_id_in_path=True
)
self.id = widget_id
self.common_path = common_path
self.position = (0, 0)
self.messages = cream.log.Messages()
self.themes = themes
self.themes.connect('changed', self.theme_change_cb)
skin_dir = os.path.join(self.context.working_directory, 'data', 'skins')
self.skins = cream.manifest.ManifestDB(skin_dir,
type='org.cream.melange.Skin'
)
scheme_path = os.path.join(self.context.get_path(),
'configuration/scheme.xml'
)
path = os.path.join(self.context.get_user_path(), 'configuration/')
self.config = WidgetConfiguration(scheme_path, path, self.skins, self.themes)
self.config.connect('field-value-changed', self.configuration_value_changed_cb)
self.skin_id = self.config.skin
self.theme_id = self.config.theme
self.load()
def load(self):
self.view = WidgetView(self)
self.view.connect('begin-move', lambda *x: self.view.move())
self.view.connect('show-config-dialog-request',
lambda *x: self.config.show_dialog()
)
self.view.connect('show-about-dialog-request',
lambda *x: self.about_dialog.show()
)
def get_position(self):
return self.position
def set_position(self, x, y):
self.position = (x, y)
def get_data_path(self):
data_path = os.path.join(self.context.get_user_path(), 'data/shared')
if not os.path.isdir(data_path):
orig_data_path = os.path.join(self.context.get_path(), 'data/shared')
if os.path.isdir(orig_data_path):
shutil.copytree(orig_data_path, data_path)
else:
os.makedirs(data_path)
return data_path
@property
def current_theme_path(self):
theme_id = self.theme_id
if theme_id == USE_GLOBAL_SETTINGS:
theme_id = self.themes.selected_theme_id
return os.path.dirname(self.themes.get_theme(theme_id)._path)
@property
def current_skin_path(self):
return os.path.join(
self.context.working_directory,
'skins',
os.path.dirname(self.skins.get(id=self.skin_id)._path)
)
def destroy(self):
if self.view.api is not None:
self.view.api.config = None
self.view.api = None
self.view.widget_ref = None
self.view.destroy()
def configuration_value_changed_cb(self, source, key, value):
if key == 'skin':
self.skin_id = value
self.view.emit('reload-request')
elif key == 'theme':
self.theme_id = value
self.view.emit('reload-request')
else:
self.view.configuration_value_changed_cb(key, value)
def theme_change_cb(self, themes, theme_id):
if self.config.theme == USE_GLOBAL_SETTINGS:
self.view.emit('reload-request')
@cream.util.cached_property
def about_dialog(self):
return AboutDialog(self.context.manifest)
|