/usr/share/sushi/js/viewers/evince.js is in gnome-sushi 3.11.90-0ubuntu1.
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 | /*
* Copyright (C) 2011 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, see <http://www.gnu.org/licenses/>.
*
* The Sushi project hereby grant permission for non-gpl compatible GStreamer
* plugins to be used and distributed together with GStreamer and Sushi. This
* permission is above and beyond the permissions granted by the GPL license
* Sushi is covered by.
*
* Authors: Cosimo Cecchi <cosimoc@redhat.com>
*
*/
const EvDoc = imports.gi.EvinceDocument;
const EvView = imports.gi.EvinceView;
const Gtk = imports.gi.Gtk;
const GtkClutter = imports.gi.GtkClutter;
const Sushi = imports.gi.Sushi;
const Gettext = imports.gettext.domain('sushi');
const _ = Gettext.gettext;
const Lang = imports.lang;
const Constants = imports.util.constants;
const MimeHandler = imports.ui.mimeHandler;
const Utils = imports.ui.utils;
function EvinceRenderer(args) {
this._init(args);
}
EvinceRenderer.prototype = {
_init : function(args) {
EvDoc.init();
this._pdfLoader = null;
this._document = null;
this.moveOnClick = false;
this.canFullScreen = true;
},
prepare : function(file, mainWindow, callback) {
this._mainWindow = mainWindow;
this._file = file;
this._callback = callback;
this._pdfLoader = new Sushi.PdfLoader();
this._pdfLoader.connect('notify::document',
Lang.bind(this, this._onDocumentLoaded));
this._pdfLoader.uri = file.get_uri();
},
render : function() {
return this._actor;
},
_updatePageLabel : function() {
let curPage, totPages;
curPage = this._model.get_page();
totPages = this._document.get_n_pages();
this._toolbarBack.set_sensitive(curPage > 0);
this._toolbarForward.set_sensitive(curPage < totPages - 1);
this._pageLabel.set_text(_("%d of %d").format(curPage + 1, totPages));
},
_onDocumentLoaded : function() {
this._document = this._pdfLoader.document;
this._model = EvView.DocumentModel.new_with_document(this._document);
this._model.set_sizing_mode(EvView.SizingMode.FIT_WIDTH);
this._model.set_continuous(true);
this._model.connect('page-changed',
Lang.bind(this, function() {
this._updatePageLabel();
}));
this._view = EvView.View.new();
this._view.show();
this._scrolledWin = Gtk.ScrolledWindow.new(null, null);
this._scrolledWin.set_min_content_width(Constants.VIEW_MIN);
this._scrolledWin.set_min_content_height(Constants.VIEW_MIN);
this._scrolledWin.show();
this._view.set_model(this._model);
this._scrolledWin.add(this._view);
this._actor = new GtkClutter.Actor({ contents: this._scrolledWin });
this._actor.set_reactive(true);
this._callback();
},
getSizeForAllocation : function(allocation) {
/* always give the view the maximum possible allocation */
return allocation;
},
_createLabelItem : function() {
this._pageLabel = new Gtk.Label({ margin_left: 10,
margin_right: 10 });
let item = new Gtk.ToolItem();
item.set_expand(true);
item.add(this._pageLabel);
item.show_all();
return item;
},
createToolbar : function() {
this._mainToolbar = new Gtk.Toolbar({ icon_size: Gtk.IconSize.MENU });
this._mainToolbar.get_style_context().add_class('osd');
this._mainToolbar.set_show_arrow(false);
this._mainToolbar.show();
this._toolbarActor = new GtkClutter.Actor({ contents: this._mainToolbar });
let isRtl = (this._mainToolbar.get_direction() == Gtk.TextDirection.RTL);
let prevIconName = isRtl ? 'go-previous-rtl-symbolic' : 'go-previous-symbolic';
let nextIconName = isRtl ? 'go-next-rtl-symbolic' : 'go-next-symbolic';
this._toolbarBack = new Gtk.ToolButton({ expand: false,
icon_name: prevIconName });
this._toolbarBack.show();
this._mainToolbar.insert(this._toolbarBack, -1);
this._toolbarBack.connect('clicked',
Lang.bind(this, function () {
this._view.previous_page();
}));
let labelItem = this._createLabelItem();
this._mainToolbar.insert(labelItem, -1);
this._toolbarForward = new Gtk.ToolButton({ expand: false,
icon_name: nextIconName });
this._toolbarForward.show();
this._mainToolbar.insert(this._toolbarForward, -1);
this._toolbarForward.connect('clicked',
Lang.bind(this, function () {
this._view.next_page();
}));
let separator = new Gtk.SeparatorToolItem();
separator.show();
this._mainToolbar.insert(separator, -1);
this._toolbarZoom = Utils.createFullScreenButton(this._mainWindow);
this._mainToolbar.insert(this._toolbarZoom, -1);
this._updatePageLabel();
return this._toolbarActor;
},
clear : function() {
this._pdfLoader.cleanup_document();
this._document = null;
this._pdfLoader = null;
}
}
let handler = new MimeHandler.MimeHandler();
let renderer = new EvinceRenderer();
let mimeTypes = Sushi.query_supported_document_types();
handler.registerMimeTypes(mimeTypes, renderer);
let officeTypes = [
'application/vnd.oasis.opendocument.text',
'application/vnd.oasis.opendocument.presentation',
'application/vnd.oasis.opendocument.spreadsheet',
'application/msword',
'application/vnd.ms-excel',
'application/vnd.ms-powerpoint',
'application/rtf'
];
handler.registerMimeTypes(officeTypes, renderer);
|