summaryrefslogtreecommitdiff
path: root/desktop
Commit message (Collapse)AuthorAgeFilesLines
* move two more mandantory window operations to tableVincent Sanders2014-01-133-5/+37
|
* move window scroll getter and setter into operations tableVincent Sanders2014-01-133-5/+28
|
* move mandantory window update and redraw operations into tableVincent Sanders2014-01-123-6/+24
|
* move more optional window operations into table including removing unused ↵Vincent Sanders2014-01-123-20/+65
| | | | hide_pointer operation altogether
* split gui operations into core and window and move more operations into tablesVincent Sanders2014-01-124-54/+143
|
* move set title, set url, start and stop throbber window operations to gui tableVincent Sanders2014-01-123-21/+61
|
* move window creation and destruction into tableVincent Sanders2014-01-113-9/+20
|
* Initial conversion of netsurf gui to callback vtableVincent Sanders2014-01-116-16/+101
|
* stop system colours being anything to do with frontendsVincent Sanders2014-01-107-39/+82
|
* fixup logic error in save complete as directed by jmbVincent Sanders2014-01-061-1/+1
|
* Assert a bit earlier when front end tries to redraw SSL cert viewer that ↵Michael Drake2014-01-061-0/+13
| | | | it's destroyed.
* Merge branch 'rjek/click-file-gadget'Daniel Silverstone2014-01-054-10/+23
|\
| * Change gui_file_gadget_interface to pass gui_window not browser_window, add ↵Rob Kendrick2014-01-052-2/+2
| | | | | | | | GTK implementation that of course does not work.
| * Add infrastructure for calling front ends to set file gadget filenames via ↵Rob Kendrick2014-01-052-1/+19
| | | | | | | | clicking in addition to drag-and-drop
| * Add new gui entry point for file open dialogue requestsRob Kendrick2014-01-051-1/+2
| |
| * Remove asserts for default cases from all content message handlers; this is ↵Rob Kendrick2014-01-052-8/+2
| | | | | | | | laborious and is no longer useful for catching bugs.
* | Speculatively start image fetches as we parse the document.John-Mark Bell2014-01-051-1/+1
|/
* Return message to client when textarea is modified.Michael Drake2014-01-042-1/+15
|
* Fix for gcc2 flexible array declarationFrançois Revol2013-12-071-1/+1
|
* Modify conflicting Messages entryChris Young2013-11-171-1/+1
|
* Use messages for translations instead of string literals.Michael Drake2013-11-112-5/+5
|
* Visual indication of hotlist's folder for unsorted entries, with special icon.Michael Drake2013-11-083-23/+40
|
* fix local history error return leak (coverity 1109890)Vincent Sanders2013-11-031-5/+13
|
* Apply plot offsets to overlays.Michael Drake2013-10-261-6/+6
|
* Log thumbnail creation.Michael Drake2013-10-241-0/+1
|
* Reduce leaking of thumbnails to only for URLs that urldb rejects.Michael Drake2013-10-241-1/+21
| | | | Previously leaked thumbnails for all urls not previously visited.
* Remove unrequired NULL check.Michael Drake2013-10-231-1/+1
|
* Remove unreachable code.Michael Drake2013-10-231-5/+1
|
* fix coverity #1111069Vincent Sanders2013-10-231-2/+3
|
* Show "-" for last visit date/time when visits count is 0.Michael Drake2013-10-231-4/+11
|
* Assert that root node is non-NULL.Michael Drake2013-10-231-0/+2
|
* Remove unnecessary check.Michael Drake2013-10-231-2/+1
|
* Fix deref before NULL check.Michael Drake2013-10-231-0/+3
|
* Fix NULL check after deref.Michael Drake2013-10-231-1/+2
|
* Dodge Coverity scan issue.Michael Drake2013-10-231-1/+3
|
* Remove unreachable safty net.Michael Drake2013-10-231-1/+1
|
* Assert target node is non-NULL.Michael Drake2013-10-221-0/+1
|
* LOG init/fini messages.Michael Drake2013-10-111-1/+8
|
* Set unused channel to 0xff, so that rendering isn't broken in front ends ↵Michael Drake2013-10-051-11/+11
| | | | that don't heed the OPACITY flag.
* Appease gtk front end's broken bitmap behaviour.Michael Drake2013-10-031-0/+10
|
* Init unused alpha channel to 0, even though we set the bitmaps as opaque.Michael Drake2013-10-031-11/+11
|
* Avoid NULL deref when deleting a node, causing empty ancestor nodes to be ↵Michael Drake2013-10-031-4/+4
| | | | deleted.
* Generate anti-aliased triangles in bitmaps and plot via bitmap plotter. ↵Michael Drake2013-10-021-101/+263
| | | | (Without anti-aliasing was too ugly to be endured.)
* Add accessors for individual colour channels.Michael Drake2013-10-021-1/+13
|
* Use polygon plotter for treeview furniture (node expansion/contraction ↵Michael Drake2013-10-021-23/+111
| | | | triangles), instead of triangle text glyphs.
* Make undo and redo share common implementation.Michael Drake2013-10-011-72/+28
|
* Wipe undo buffer on textarea_set_text.Michael Drake2013-10-011-0/+3
|
* Ensure cut can be undone.Michael Drake2013-10-011-2/+2
|
* Implement textarea undo and redo.Michael Drake2013-10-011-12/+89
|
* Start implementing undo/redo. For now it just records changes, the actual ↵Michael Drake2013-09-301-11/+182
| | | | undo/redo handling is not yet done.