/usr/share/sugar/activities/Browse.activity/webtoolbar.py is in sugar-browse-activity 157.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 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 | # Copyright (C) 2006, Red Hat, Inc.
# Copyright (C) 2007, One Laptop Per Child
# Copyright (C) 2009, Tomeu Vizoso
#
# 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
from gettext import gettext as _
from gi.repository import GObject
from gi.repository import Gtk
from gi.repository import Gdk
from gi.repository import GConf
from gi.repository import Pango
from gi.repository import WebKit
from sugar3.graphics.toolbutton import ToolButton
from sugar3.graphics import iconentry
from sugar3.graphics.toolbarbox import ToolbarBox as ToolbarBase
from sugar3.graphics.palettemenu import PaletteMenuItem
from sugar3.graphics.palettemenu import PaletteMenuBox
from sugar3.graphics import style
from sugar3.activity.widgets import ActivityToolbarButton
from sugar3.activity.widgets import StopButton
from sugar3.datastore import datastore
from sugar3.activity import activity
from sugar3.graphics.alert import Alert
from sugar3.graphics.icon import Icon
import tempfile
import filepicker
import places
from browser import Browser
from browser import HOME_PAGE_GCONF_KEY, LIBRARY_PATH
from pdfviewer import DummyBrowser
_MAX_HISTORY_ENTRIES = 15
_SEARCH_ENTRY_MARGIN = style.zoom(14)
class _SearchWindow(Gtk.Window):
"""A search window that can be styled in the theme."""
__gtype_name__ = "BrowseSearchWindow"
def __init__(self):
Gtk.Window.__init__(self, type=Gtk.WindowType.POPUP)
class WebEntry(iconentry.IconEntry):
_COL_ADDRESS = 0
_COL_TITLE = 1
def __init__(self):
GObject.GObject.__init__(self)
self._address = None
self._search_view = self._search_create_view()
self._search_window = _SearchWindow()
self._search_window.add(self._search_view)
self._search_view.show()
self.connect('focus-in-event', self.__focus_in_event_cb)
self.connect('populate-popup', self.__populate_popup_cb)
self.connect('key-press-event', self.__key_press_event_cb)
self._focus_out_hid = self.connect(
'focus-out-event', self.__focus_out_event_cb)
self._change_hid = self.connect('changed', self.__changed_cb)
def do_draw(self, cr):
"""Draw a background to better fit the search window."""
if self._search_window.props.visible:
original_path = cr.copy_path()
allocation = self.get_allocation()
cr.set_source_rgb(0, 0, 0)
cr.rectangle(0, allocation.height / 2,
allocation.width, allocation.height / 2)
cr.fill()
cr.set_source_rgba(*style.COLOR_BUTTON_GREY.get_rgba())
# Set the line width two times the theme border to make
# the calculation easier.
cr.set_line_width(style.LINE_WIDTH * 4)
cr.move_to(0, allocation.height)
cr.line_to(0, allocation.height / 2)
cr.move_to(allocation.width, allocation.height)
cr.line_to(allocation.width, allocation.height / 2)
cr.stroke()
cr.new_path()
cr.append_path(original_path)
iconentry.IconEntry.do_draw(self, cr)
def _set_text(self, text):
"""Set the text but block changes notification, so that we can
recognize changes caused directly by user actions"""
self.handler_block(self._change_hid)
try:
self.props.text = text
finally:
self.handler_unblock(self._change_hid)
def activate(self, uri):
self._set_text(uri)
self._search_popdown()
self.emit('activate')
def _set_address(self, address):
self._address = address
if address is not None:
self._set_text(address)
address = GObject.property(type=str, setter=_set_address)
def _search_create_view(self):
view = Gtk.TreeView()
view.props.headers_visible = False
view.connect('button-press-event', self.__view_button_press_event_cb)
column = Gtk.TreeViewColumn()
view.append_column(column)
cell = Gtk.CellRendererText()
cell.props.ellipsize = Pango.EllipsizeMode.END
cell.props.ellipsize_set = True
cell.props.height = style.STANDARD_ICON_SIZE
cell.props.xpad = _SEARCH_ENTRY_MARGIN
cell.props.font = 'Bold'
column.pack_start(cell, True)
column.add_attribute(cell, 'text', self._COL_TITLE)
cell = Gtk.CellRendererText()
cell.props.xpad = _SEARCH_ENTRY_MARGIN
cell.props.xalign = 0
cell.props.ellipsize = Pango.EllipsizeMode.END
cell.props.ellipsize_set = True
cell.props.alignment = Pango.Alignment.LEFT
column.pack_start(cell, True)
column.add_attribute(cell, 'text', self._COL_ADDRESS)
return view
def _search_update(self):
list_store = Gtk.ListStore(str, str)
search_text = self.props.text.decode('utf-8')
for place in places.get_store().search(search_text):
list_store.append([place.uri, place.title])
self._search_view.set_model(list_store)
return len(list_store) > 0
def _search_popup(self):
miss, window_x, window_y = self.props.window.get_origin()
entry_allocation = self.get_allocation()
preferred_height = self.get_preferred_height()[0]
gap = (entry_allocation.height - preferred_height) / 2
search_x = window_x + entry_allocation.x
search_y = window_y + gap + preferred_height
search_width = entry_allocation.width
# Set minimun height to four entries.
search_height = (style.STANDARD_ICON_SIZE + style.LINE_WIDTH * 2) * 4
self._search_window.move(search_x, search_y)
self._search_window.resize(search_width, search_height)
self._search_window.show()
def _search_popdown(self):
self._search_window.hide()
def __focus_in_event_cb(self, entry, event):
self._search_popdown()
def __focus_out_event_cb(self, entry, event):
self._search_popdown()
def __view_button_press_event_cb(self, view, event):
model = view.get_model()
path, col_, x_, y_ = view.get_path_at_pos(int(event.x), int(event.y))
if path:
uri = model[path][self._COL_ADDRESS]
self.activate(uri)
def __key_press_event_cb(self, entry, event):
keyname = Gdk.keyval_name(event.keyval)
selection = self._search_view.get_selection()
model, selected = selection.get_selected()
if keyname == 'Up':
if selected is None:
selection.select_iter(model[-1].iter)
self._set_text(model[-1][0])
else:
up_iter = model.iter_previous(selected)
if up_iter:
selection.select_iter(up_iter)
self._set_text(model.get(up_iter, 0)[0])
return True
elif keyname == 'Down':
if selected is None:
down_iter = model.get_iter_first()
else:
down_iter = model.iter_next(selected)
if down_iter:
selection.select_iter(down_iter)
self._set_text(model.get(down_iter, 0)[0])
return True
elif keyname == 'Return':
if selected is None:
return False
uri = model[model.get_path(selected)][self._COL_ADDRESS]
self.activate(uri)
return True
elif keyname == 'Escape':
self._search_window.hide()
self.props.text = ''
return True
return False
def __popup_unmap_cb(self, entry):
self.handler_unblock(self._focus_out_hid)
def __populate_popup_cb(self, entry, menu):
self.handler_block(self._focus_out_hid)
menu.connect('unmap', self.__popup_unmap_cb)
def __changed_cb(self, entry):
self._address = self.props.text
if not self.props.text or not self._search_update():
self._search_popdown()
else:
self._search_popup()
class UrlToolbar(Gtk.EventBox):
# This is used for the URL entry in portrait mode.
def __init__(self):
Gtk.EventBox.__init__(self)
self.modify_bg(Gtk.StateType.NORMAL,
style.COLOR_TOOLBAR_GREY.get_gdk_color())
url_alignment = Gtk.Alignment(xscale=1.0, yscale=1.0)
url_alignment.set_padding(0, 0, style.LINE_WIDTH * 4,
style.LINE_WIDTH * 4)
self.add(url_alignment)
url_alignment.show()
self.toolbar = Gtk.Toolbar()
self.toolbar.set_size_request(-1, style.GRID_CELL_SIZE)
url_alignment.add(self.toolbar)
self.toolbar.show()
class PrimaryToolbar(ToolbarBase):
__gtype_name__ = 'PrimaryToolbar'
__gsignals__ = {
'add-link': (GObject.SignalFlags.RUN_FIRST, None, ([])),
'go-home': (GObject.SignalFlags.RUN_FIRST, None, ([])),
'set-home': (GObject.SignalFlags.RUN_FIRST, None, ([])),
'reset-home': (GObject.SignalFlags.RUN_FIRST, None, ([])),
'go-library': (GObject.SignalFlags.RUN_FIRST, None, ([])),
}
def __init__(self, tabbed_view, act):
ToolbarBase.__init__(self)
self._url_toolbar = UrlToolbar()
self._activity = act
self._tabbed_view = self._canvas = tabbed_view
self._loading = False
toolbar = self.toolbar
activity_button = ActivityToolbarButton(self._activity)
toolbar.insert(activity_button, 0)
separator = Gtk.SeparatorToolItem()
save_as_pdf = ToolButton('save-as-pdf')
save_as_pdf.set_tooltip(_('Save page as pdf'))
save_as_pdf.connect('clicked', self.save_as_pdf)
activity_button.props.page.insert(separator, -1)
activity_button.props.page.insert(save_as_pdf, -1)
separator.show()
save_as_pdf.show()
self._go_home = ToolButton('go-home')
self._go_home.set_tooltip(_('Home page'))
self._go_home.connect('clicked', self._go_home_cb)
# add a menu to save the home page
menu_box = PaletteMenuBox()
self._go_home.props.palette.set_content(menu_box)
menu_item = PaletteMenuItem()
menu_item.set_label(_('Select as initial page'))
menu_item.connect('activate', self._set_home_cb)
menu_box.append_item(menu_item)
self._reset_home_menu = PaletteMenuItem()
self._reset_home_menu.set_label(_('Reset initial page'))
self._reset_home_menu.connect('activate', self._reset_home_cb)
menu_box.append_item(self._reset_home_menu)
if os.path.isfile(LIBRARY_PATH):
library_menu = PaletteMenuItem()
library_menu.set_label(_('Library'))
library_menu.connect('activate', self._go_library_cb)
menu_box.append_item(library_menu)
menu_box.show_all()
# verify if the home page is configured
client = GConf.Client.get_default()
self._reset_home_menu.set_visible(
client.get_string(HOME_PAGE_GCONF_KEY) is not None)
toolbar.insert(self._go_home, -1)
self._go_home.show()
self.entry = WebEntry()
self.entry.set_icon_from_name(iconentry.ICON_ENTRY_SECONDARY,
'entry-stop')
self.entry.connect('icon-press', self._stop_and_reload_cb)
self.entry.connect('activate', self._entry_activate_cb)
self.entry.connect('focus-in-event', self.__focus_in_event_cb)
self.entry.connect('focus-out-event', self.__focus_out_event_cb)
self.entry.connect('key-press-event', self.__key_press_event_cb)
self.entry.connect('changed', self.__changed_cb)
self._entry_item = Gtk.ToolItem()
self._entry_item.set_expand(True)
self._entry_item.add(self.entry)
self.entry.show()
toolbar.insert(self._entry_item, -1)
self._entry_item.show()
self._back = ToolButton('go-previous-paired')
self._back.set_tooltip(_('Back'))
self._back.props.sensitive = False
self._back.connect('clicked', self._go_back_cb)
toolbar.insert(self._back, -1)
self._back.show()
palette = self._back.get_palette()
self._back_box_menu = Gtk.VBox()
self._back_box_menu.show()
palette.set_content(self._back_box_menu)
# FIXME, this is a hack, should be done in the theme:
palette._content.set_border_width(1)
self._forward = ToolButton('go-next-paired')
self._forward.set_tooltip(_('Forward'))
self._forward.props.sensitive = False
self._forward.connect('clicked', self._go_forward_cb)
toolbar.insert(self._forward, -1)
self._forward.show()
palette = self._forward.get_palette()
self._forward_box_menu = Gtk.VBox()
self._forward_box_menu.show()
palette.set_content(self._forward_box_menu)
# FIXME, this is a hack, should be done in the theme:
palette._content.set_border_width(1)
self._link_add = ToolButton('emblem-favorite')
self._link_add.set_tooltip(_('Bookmark'))
self._link_add.connect('clicked', self._link_add_clicked_cb)
toolbar.insert(self._link_add, -1)
self._link_add.show()
self._toolbar_separator = Gtk.SeparatorToolItem()
self._toolbar_separator.props.draw = False
self._toolbar_separator.set_expand(True)
stop_button = StopButton(self._activity)
toolbar.insert(stop_button, -1)
self._progress_listener = None
self._browser = None
self._loading_changed_hid = None
self._progress_changed_hid = None
self._session_history_changed_hid = None
self._uri_changed_hid = None
self._security_status_changed_hid = None
if tabbed_view.get_n_pages():
self._connect_to_browser(tabbed_view.props.current_browser)
tabbed_view.connect_after('switch-page', self.__switch_page_cb)
tabbed_view.connect_after('page-added', self.__page_added_cb)
Gdk.Screen.get_default().connect('size-changed',
self.__screen_size_changed_cb)
self._configure_toolbar()
def __key_press_event_cb(self, entry, event):
self._tabbed_view.current_browser.loading_uri = entry.props.text
def __switch_page_cb(self, tabbed_view, page, page_num):
if tabbed_view.get_n_pages():
self._connect_to_browser(tabbed_view.props.current_browser)
def __page_added_cb(self, notebook, child, pagenum):
self.entry._search_popdown()
def _configure_toolbar(self, screen=None):
# Adapt the toolbars for portrait or landscape mode.
if screen is None:
screen = Gdk.Screen.get_default()
if screen.get_width() < screen.get_height():
if self._entry_item in self._url_toolbar.toolbar.get_children():
return
self.toolbar.remove(self._entry_item)
self._url_toolbar.toolbar.insert(self._entry_item, -1)
separator_pos = len(self.toolbar.get_children()) - 1
self.toolbar.insert(self._toolbar_separator, separator_pos)
self._toolbar_separator.show()
self.pack_end(self._url_toolbar, True, True, 0)
self._url_toolbar.show()
else:
if self._entry_item in self.toolbar.get_children():
return
self.toolbar.remove(self._toolbar_separator)
position = len(self.toolbar.get_children()) - 4
self._url_toolbar.toolbar.remove(self._entry_item)
self.toolbar.insert(self._entry_item, position)
self._toolbar_separator.hide()
self.remove(self._url_toolbar)
def __screen_size_changed_cb(self, screen):
self._configure_toolbar(screen)
def _connect_to_browser(self, browser):
if self._browser is not None:
self._browser.disconnect(self._uri_changed_hid)
self._browser.disconnect(self._progress_changed_hid)
self._browser.disconnect(self._loading_changed_hid)
self._browser.disconnect(self._security_status_changed_hid)
self._browser = browser
if not isinstance(self._browser, DummyBrowser):
address = self._browser.props.uri or self._browser.loading_uri
else:
address = self._browser.props.uri
self._set_address(address)
self._set_progress(self._browser.props.progress)
self._set_status(self._browser.props.load_status)
self._set_security_status(self._browser.security_status)
is_webkit_browser = isinstance(self._browser, Browser)
self.entry.props.editable = is_webkit_browser
self._uri_changed_hid = self._browser.connect(
'notify::uri', self.__uri_changed_cb)
self._progress_changed_hid = self._browser.connect(
'notify::progress', self.__progress_changed_cb)
self._loading_changed_hid = self._browser.connect(
'notify::load-status', self.__loading_changed_cb)
self._security_status_changed_hid = self._browser.connect(
'security-status-changed', self.__security_status_changed_cb)
self._update_navigation_buttons()
def __loading_changed_cb(self, widget, param):
self._set_status(widget.get_load_status())
def __security_status_changed_cb(self, widget):
self._set_security_status(widget.security_status)
def __progress_changed_cb(self, widget, param):
self._set_progress(widget.get_progress())
def _set_status(self, status):
self._set_loading(status < WebKit.LoadStatus.FINISHED)
def _set_security_status(self, security_status):
# Display security status as a lock icon in the left side of
# the URL entry.
if security_status is None:
self.entry.set_icon_from_pixbuf(
iconentry.ICON_ENTRY_PRIMARY, None)
elif security_status == Browser.SECURITY_STATUS_SECURE:
self.entry.set_icon_from_name(
iconentry.ICON_ENTRY_PRIMARY, 'channel-secure-symbolic')
elif security_status == Browser.SECURITY_STATUS_INSECURE:
self.entry.set_icon_from_name(
iconentry.ICON_ENTRY_PRIMARY, 'channel-insecure-symbolic')
def _set_progress(self, progress):
if progress == 1.0:
self.entry.set_progress_fraction(0.0)
else:
self.entry.set_progress_fraction(progress)
def _set_address(self, uri):
if uri is None:
self.entry.props.address = ''
else:
self.entry.props.address = uri
def __changed_cb(self, iconentry):
# The WebEntry can be changed when we click on a link, then we
# have to show the clear icon only if is the user who has
# changed the entry
if self.entry.has_focus():
if not self.entry.props.text:
self._show_no_icon()
else:
self._show_clear_icon()
def __focus_in_event_cb(self, entry, event):
if not self._tabbed_view.is_current_page_pdf():
if not self.entry.props.text:
self._show_no_icon()
else:
self._show_clear_icon()
def __focus_out_event_cb(self, entry, event):
if self._loading:
self._show_stop_icon()
else:
if not self._tabbed_view.is_current_page_pdf():
self._show_reload_icon()
def _show_no_icon(self):
self.entry.remove_icon(iconentry.ICON_ENTRY_SECONDARY)
def _show_stop_icon(self):
self.entry.set_icon_from_name(iconentry.ICON_ENTRY_SECONDARY,
'entry-stop')
def _show_reload_icon(self):
self.entry.set_icon_from_name(iconentry.ICON_ENTRY_SECONDARY,
'entry-refresh')
def _show_clear_icon(self):
self.entry.set_icon_from_name(iconentry.ICON_ENTRY_SECONDARY,
'entry-cancel')
def _update_navigation_buttons(self):
can_go_back = self._browser.can_go_back()
self._back.props.sensitive = can_go_back
can_go_forward = self._browser.can_go_forward()
self._forward.props.sensitive = can_go_forward
is_webkit_browser = isinstance(self._browser, Browser)
self._link_add.props.sensitive = is_webkit_browser
self._go_home.props.sensitive = is_webkit_browser
if is_webkit_browser:
self._reload_session_history()
def _entry_activate_cb(self, entry):
url = entry.props.text
effective_url = self._tabbed_view.normalize_or_autosearch_url(url)
self._browser.load_uri(effective_url)
self._browser.loading_uri = effective_url
self.entry.props.address = effective_url
self._browser.grab_focus()
def _go_home_cb(self, button):
self.emit('go-home')
def _go_library_cb(self, button):
self.emit('go-library')
def _set_home_cb(self, button):
self._reset_home_menu.set_visible(True)
self.emit('set-home')
def _reset_home_cb(self, button):
self._reset_home_menu.set_visible(False)
self.emit('reset-home')
def _go_back_cb(self, button):
self._browser.go_back()
def _go_forward_cb(self, button):
self._browser.go_forward()
def __uri_changed_cb(self, widget, param):
self._set_address(widget.get_uri())
self._update_navigation_buttons()
filepicker.cleanup_temp_files()
def _stop_and_reload_cb(self, entry, icon_pos, button):
if entry.has_focus() and \
not self._tabbed_view.is_current_page_pdf():
entry.set_text('')
else:
if self._loading:
self._browser.stop_loading()
else:
self._browser.reload()
def _set_loading(self, loading):
self._loading = loading
if self._loading:
self._show_stop_icon()
else:
if not self._tabbed_view.is_current_page_pdf():
self.set_sensitive(True)
self._show_reload_icon()
else:
self.set_sensitive(False)
self._show_no_icon()
def _reload_session_history(self):
back_forward_list = self._browser.get_back_forward_list()
item_index = 0 # The index of the history item
# Clear menus in palettes:
for box_menu in (self._back_box_menu, self._forward_box_menu):
for menu_item in box_menu.get_children():
box_menu.remove(menu_item)
def create_menu_item(history_item, item_index):
"""Create a MenuItem for the back or forward palettes."""
title = history_item.get_title()
if not isinstance(title, unicode):
title = unicode(title, 'utf-8')
# This is a fix until the Sugar MenuItem is fixed:
menu_item = PaletteMenuItem(text_label=title)
menu_item.connect('activate', self._history_item_activated_cb,
item_index)
return menu_item
back_list = back_forward_list.get_back_list_with_limit(
_MAX_HISTORY_ENTRIES)
back_list.reverse()
for item in back_list:
menu_item = create_menu_item(item, item_index)
self._back_box_menu.pack_end(menu_item, False, False, 0)
menu_item.show()
item_index += 1
# Increment the item index to count the current page:
item_index += 1
forward_list = back_forward_list.get_forward_list_with_limit(
_MAX_HISTORY_ENTRIES)
forward_list.reverse()
for item in forward_list:
menu_item = create_menu_item(item, item_index)
self._forward_box_menu.pack_start(menu_item, False, False, 0)
menu_item.show()
item_index += 1
def _history_item_activated_cb(self, menu_item, index):
self._back.get_palette().popdown(immediate=True)
self._forward.get_palette().popdown(immediate=True)
self._browser.set_history_index(index)
def _link_add_clicked_cb(self, button):
self.emit('add-link')
def save_as_pdf(self, widget):
tmp_dir = os.path.join(self._activity.get_activity_root(), 'tmp')
fd, file_path = tempfile.mkstemp(dir=tmp_dir)
os.close(fd)
page = self._canvas.get_current_page()
webview = self._canvas.get_children()[page].get_children()[0]
operation = Gtk.PrintOperation.new()
operation.set_export_filename(file_path)
webview.get_main_frame().print_full(
operation, Gtk.PrintOperationAction.EXPORT)
client = GConf.Client.get_default()
jobject = datastore.create()
color = client.get_string('/desktop/sugar/user/color')
try:
jobject.metadata['title'] = _('Browse activity as PDF')
jobject.metadata['icon-color'] = color
jobject.metadata['mime_type'] = 'application/pdf'
jobject.file_path = file_path
datastore.write(jobject)
finally:
self.__pdf_alert(jobject.object_id)
jobject.destroy()
del jobject
def __pdf_alert(self, object_id):
alert = Alert()
alert.props.title = _('Page saved')
alert.props.msg = _('The page has been saved as PDF to journal')
alert.add_button(Gtk.ResponseType.APPLY,
_('Show in Journal'),
Icon(icon_name='zoom-activity'))
alert.add_button(Gtk.ResponseType.OK, _('Ok'),
Icon(icon_name='dialog-ok'))
# Remove other alerts
for alert in self._activity._alerts:
self._activity.remove_alert(alert)
self._activity.add_alert(alert)
alert.connect('response', self.__pdf_response_alert, object_id)
alert.show_all()
def __pdf_response_alert(self, alert, response_id, object_id):
if response_id is Gtk.ResponseType.APPLY:
activity.show_object_in_journal(object_id)
self._activity.remove_alert(alert)
|