summaryrefslogtreecommitdiff
path: root/frontends/gtk
Commit message (Collapse)AuthorAgeFilesLines
* fix size+t formatting in loggingVincent Sanders2017-09-071-2/+3
|
* fixup junk comment closeVincent Sanders2017-09-071-1/+1
|
* Fixup everything the semantic patch missedVincent Sanders2017-09-072-5/+7
|
* Update scheduler logging to use catagoryVincent Sanders2017-09-071-3/+5
|
* Use coccinelle to change logging macro calls in c filesVincent Sanders2017-09-0623-136/+180
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | for F in $(git ls-files '*.c');do spatch --sp-file foo.cocci --in-place ${F};done @@ expression E; @@ -LOG(E); +NSLOG(netsurf, INFO, E); @@ expression E, E1; @@ -LOG(E, E1); +NSLOG(netsurf, INFO, E, E1); @@ expression E, E1, E2; @@ -LOG(E, E1, E2); +NSLOG(netsurf, INFO, E, E1, E2); @@ expression E, E1, E2, E3; @@ -LOG(E, E1, E2, E3); +NSLOG(netsurf, INFO, E, E1, E2, E3); @@ expression E, E1, E2, E3, E4; @@ -LOG(E, E1, E2, E3, E4); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4); @@ expression E, E1, E2, E3, E4, E5; @@ -LOG(E, E1, E2, E3, E4, E5); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5); @@ expression E, E1, E2, E3, E4, E5, E6; @@ -LOG(E, E1, E2, E3, E4, E5, E6); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5, E6); @@ expression E, E1, E2, E3, E4, E5, E6, E7; @@ -LOG(E, E1, E2, E3, E4, E5, E6, E7); +NSLOG(netsurf, INFO, E, E1, E2, E3, E4, E5, E6, E7);
* remove unecessary textarea includeVincent Sanders2017-08-271-1/+1
|
* GTK: Ensure core windows are fully initialised.Michael Drake2017-06-114-4/+4
|
* Core window: Ensure all front ends initialise drag_status.Michael Drake2017-06-102-3/+3
|
* GTK: Ensure drag status is initialised in core windows.Michael Drake2017-06-101-0/+1
|
* GTK: Don't need to treat local history specially now.Michael Drake2017-06-101-1/+1
|
* fix gtk bitmap doccomment to be truthfulVincent Sanders2017-06-091-2/+2
|
* Update documentation removing junk and moving to markdown for most text filesVincent Sanders2017-06-091-1/+1
|
* update gtk frontend for corewindow API changeVincent Sanders2017-05-231-8/+23
|
* Merge branch 'vince/scroll-api'Vincent Sanders2017-04-261-6/+26
|\
| * Update GTK frontend for set_scroll API changeVincent Sanders2017-04-261-6/+26
| |
* | GTK: Optimise tiled bitmap plotting, and scaled bitmap rendering.Michael Drake2017-04-261-149/+79
|/ | | | | | We now let Cairo deal with the tiling. Also we don't keep cached scaled bitmaps any more. The speedup for small bitmap tile sizes is huge.
* update GTK frontend for reformat API changeVincent Sanders2017-04-261-23/+20
|
* GTK: Update for core hotlist API change.Michael Drake2017-04-251-2/+3
|
* update gtk frontend with invalidate window API changeVincent Sanders2017-04-231-15/+25
|
* GTK: Slight optimisation to nsfont_split().Michael Drake2017-04-111-1/+1
| | | | | When we aren't modifying the line, pango_layout_get_line_readonly() is a faster alternative to pango_layout_get_line().
* GTK: Font rendering: Use same pango layout for painting as for measuring.Michael Drake2017-04-111-7/+4
| | | | | | | | | | | | | | | With this change we are consistent about how the pango layout we use is created. Now it always comes from a pango_layout_new() call on a pango context that comes from gdk_pango_context_get(). Previously the pango layout used for painting came from a call to pango_cairo_create_layout(), which required a global called "current_cr" (a cairo drawing context), which is only valid during redraw (painting). Since it was only valid during painting, this source could not be used for pango layout creation for the measuring code.
* fix use of uninitialised variables in gtk printVincent Sanders2017-03-041-7/+15
| | | | fixes errors detected by coverity.
* remove unused computed rectangle in gtk local hostory redrawVincent Sanders2017-02-261-15/+0
|
* add local history destruction for gtkVincent Sanders2017-02-261-0/+7
|
* fix remaining doccomment errorsVincent Sanders2017-02-221-42/+173
|
* update gtk frontend to use corewindow local historyVincent Sanders2017-02-1712-202/+466
|
* remove redundant global contextVincent Sanders2017-02-155-22/+3
|
* clean up incorrect documentation comments from plotter API reworkVincent Sanders2017-02-143-23/+59
|
* fix plotter mergeVincent Sanders2017-02-121-1/+1
|
* Update GTK plotters to use new APIVincent Sanders2017-02-115-159/+457
|
* Fix up GTK+ hotlist finalisation to clean up properlyDaniel Silverstone2017-02-052-1/+7
|
* create netsurf inttypes header to have portable integer formatting macrosVincent Sanders2017-01-211-1/+1
|
* rationalise use of utils/utils.h headerVincent Sanders2017-01-194-4/+0
|
* move plot style header to netsurf include directoryVincent Sanders2017-01-132-1/+2
| | | | | move plotter style header and adjust all callers to use only what they actually require.
* fixup usage of directory creation macro in MakefilesVincent Sanders2017-01-071-3/+3
|
* gtk: Update for new hotlist API.Michael Drake2016-12-292-7/+5
| | | | This allows the hotlist backend to work before the hotlist window opens.
* improve gtk corewindow documentationVincent Sanders2016-12-262-14/+13
|
* clean up documentation of GTK core window interfacesVincent Sanders2016-10-264-25/+126
|
* fix gtk install target to cope with gtk3Vincent Sanders2016-10-052-11/+20
|
* fix gtk3 build with corewindowVincent Sanders2016-10-051-4/+0
|
* fix use of default image on menu entries for gtk frontendVincent Sanders2016-09-271-25/+58
|
* make GTK frontend mime type processing use explicit ascii processingVincent Sanders2016-09-071-16/+29
|
* move core window API into netsurf header pathVincent Sanders2016-08-181-1/+1
|
* add bmp file format to file fetch types for gtk and framebufferVincent Sanders2016-08-161-0/+1
|
* licence and credits buttons got swapped, fix itVincent Sanders2016-08-141-2/+2
| | | | Thanks to bavier for the bug report
* Treeview: Rationalise initialisation and finalisation.Michael Drake2016-08-104-24/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously the expected behaviour for front ends using the correct API for hotlist, global history, cookie manager, and ssl cert viewer was that the front end would initialise the treeview module on startup and finalise it on application exit. However, this meant that the front ends had to include the core treeview header, which they didn't otherwise need. Since the tree module provided access to the new treeview utilities through the old tree API, and was used by front ends with no changes for the new treeview API, the tree layer refcounted initialisations of treeview-based widgets, and only called the underlying treeview init/fini functions when needed. This change moves that refcounting into the treeview module. Now the hotlist, global history, cookie manager, and ssl cert viewer widgets call call treeview init/fini as part of their own initialisation and finalisation. This means that front ends using the correct APIs for treeview-based widgets don't need to know anything about the underlying treeview, and the tree module compatibility layer has had its treeview refcounting removed. Finally, the treeview_init function took a font size parameter. Now it does not and lit gets font size from config. We probably want to add a new `treeview_font_size` option to nsoptions, and have differnent defaults on different platforms. 12pt on RISC OS, and 11pt elsewhere, most likely.
* remove unused GTK treeview code completely repalced with core window APIVincent Sanders2016-08-064-677/+1
|
* convert GTK hotlist to use GTK core windowVincent Sanders2016-08-065-122/+259
|
* rename gtk global history implementationVincent Sanders2016-08-046-6/+4
|
* convert GTK global history to use GTK core windowVincent Sanders2016-08-044-142/+274
|