summaryrefslogtreecommitdiff
path: root/frontends/gtk/resources.c
Commit message (Collapse)AuthorAgeFilesLines
* Make GTK UI resources more consistentVincent Sanders2020-09-041-6/+1
| | | | | | | | | | | | | | The GTK UI resources have to be different resources between major versions. When kept in one directory with slightly different filenames they were difficult to distinguish and resource definition was difficult to update. The resources for both gtk versions were stored in both builds resulting in unneccessary increased binary size. The new stratagy lists the UI files once in a single gresources file and only includes what is required. If a UI file is added it must be provided in both gtk2 and 3 or a build failure will occour rather than a runtime error.
* chore: Perform sslcert_viewer-ectomyDaniel Silverstone2020-05-221-1/+0
| | | | | | | | | | | This removes the sslcert_viewer entirely from the code. Where possible I've also trimmed out of frontends any code I think should not be present. Frontends should check and remove any further references that I have failed to catch. Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* 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