summaryrefslogtreecommitdiff
path: root/frontends/gtk/resources.c
Commit message (Collapse)AuthorAgeFilesLines
* add page information ui elements to GTK frontendVincent Sanders2020-03-111-0/+1
|
* About fetches resources: Drop maps resource.Michael Drake2020-02-241-1/+0
| | | | It had bitrotted.
* make gtk frontend use page information iconsVincent Sanders2019-12-011-0/+10
|
* add cookie icon and use it for show cookies toolbar buttonVincent Sanders2019-09-211-0/+1
|
* construct all toolbar items from data tableVincent Sanders2019-09-211-1/+1
| | | | | | | | This changes toolbar item constuction to use toolbar_items.h instead of explicit macros. Additionally all remenants of old stock item themeing are done away with and GTK icon names are used instead.
* remove login window from gtk front endVincent Sanders2019-08-131-1/+0
|
* Initial conversion of GTK accelerators to separate config fileVincent Sanders2018-04-221-12/+18
|
* fixup junk comment closeVincent Sanders2017-09-071-1/+1
|
* Fixup everything the semantic patch missedVincent Sanders2017-09-071-2/+3
|
* Use coccinelle to change logging macro calls in c filesVincent Sanders2017-09-061-18/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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);
* update gtk frontend to use corewindow local historyVincent Sanders2017-02-171-1/+2
|
* move frontends into sub directoryVincent Sanders2016-05-151-0/+600