summaryrefslogtreecommitdiff
path: root/frontends/gtk/tabs.c
Commit message (Collapse)AuthorAgeFilesLines
* make gtk tab closeable with middle clickVincent Sanders2019-11-301-11/+43
| | | | | Implements feature request "Please add middle-click on tab to close." Fixes: #2720.
* ensure gtk scaffolding destruction does not create memory errorsVincent Sanders2019-10-131-8/+13
|
* make throbber visible in tab icon while activeVincent Sanders2019-10-081-2/+3
|
* clean up tab focus settingVincent Sanders2019-09-211-4/+1
|
* ensure pixbuf references are updated correctly to avoid leaksVincent Sanders2019-09-211-0/+2
|
* 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.
* make handling of non browser window containing tabs reasonableVincent Sanders2019-09-211-20/+33
|
* allow toolbar customisation to open a tabVincent Sanders2019-09-211-30/+68
|
* cleanup scaffolding a bitVincent Sanders2019-09-211-13/+25
|
* another five handlers and fix menu sensitivity on throbber state changeVincent Sanders2019-09-211-1/+1
|
* allow menu activation to use the toolbar button implementationsVincent Sanders2019-09-211-1/+2
|
* Move favicon from url entry widget to notebook tab labelVincent Sanders2019-08-151-31/+105
|
* fix gtk 3 deprication warningsVincent Sanders2018-08-261-1/+1
|
* Use coccinelle to change logging macro calls in c filesVincent Sanders2017-09-061-3/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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);
* reduce unecessary usage of content headersVincent Sanders2016-06-061-1/+0
|
* move desktop window header into public APIVincent Sanders2016-05-301-1/+1
|
* rationalise use of gtk scaffolding headerVincent Sanders2016-05-211-0/+1
|
* move frontends into sub directoryVincent Sanders2016-05-151-0/+416