Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/browser-plugin/scriptable.h
Commit message (Collapse)AuthorAgeFilesLines
* Add a copyClipboard method, remove the setter hackMarco Pesenti Gritti2010-07-271-0/+1
|
* First pass at a port to xulrunner 1.9.1 (Firefox 3.5)Peter Teichman2010-07-271-1/+1
|
* browser-plugin: notify browser when find comes up emptyTommi Komulainen2010-07-271-0/+1
| | | | | | | | | Example: plugin.magicWrapper = { onFindChanged : function() { if (plugin.canFindOnPage) { ... } } }
* browser-plugin: implement searchTommi Komulainen2010-07-271-0/+1
| | | | | | | | | | | Changed the API to be better match for find as you type. Using property access workaround. Example: plugin.findTerms = "hello"; begin searching and highlights all matches in the document plugin.findNext = 42; (workaround) jump to next match plugin.findPrevious = 42; (workaround) jump to previous match
* browser-plugin: add clipboard copy supportTommi Komulainen2010-07-271-0/+1
| | | | | | | | | | | | Only supporting copy, evince doesn't support editing (at least the API is lacking cut and paste) Using property access workaround. Example: if (plugin.canCopy) { plugin.canCopy = 42; (workaround) copy selection to clipboard }
* browser-plugin: add zoom propertyTommi Komulainen2010-07-271-0/+1
| | | | | Example: plugin.zoom = plugin.zoom * 1.5;
* browser-plugin: add methods for calling browser wrapper functionsTommi Komulainen2010-07-271-0/+2
|
* browser-plugin: add magicWrapper propertyTommi Komulainen2010-07-271-0/+4
| | | | | Allow browser to provide an object with callbacks / properties for the plugin to call when status changes (title, clipboard controls, etc.)
* browser-plugin: add title property to return the document titleTommi Komulainen2010-07-271-0/+2
| | | | | Though as the document is loaded asynchronously the title might not (yet) be properly set when accessed.
* Trailing whitespaceMarco Pesenti Gritti2010-07-271-1/+1
|
* Reformat to respect evince indentation style.Marco Pesenti Gritti2010-07-271-82/+83
|
* Add a browser plugin implementation.Marco Pesenti Gritti2010-07-271-0/+133