summaryrefslogtreecommitdiff
path: root/frontends/gtk/toolbar.c
Commit message (Collapse)AuthorAgeFilesLines
...
* allow menu activation to use the toolbar button implementationsVincent Sanders2019-09-211-2/+234
|
* clean up some more handler code and remove button pushVincent Sanders2019-09-211-36/+37
|
* make menu sensitivity workVincent Sanders2019-09-211-6/+0
| | | | what remains is interfaces to make the toolbar appropriately sensative
* make menus work againVincent Sanders2019-09-211-1/+0
|
* make web search box workVincent Sanders2019-09-211-103/+140
|
* add home button clicked handlerVincent Sanders2019-09-211-70/+154
|
* implement several more button press handlersVincent Sanders2019-09-211-27/+136
|
* connect button clicked events for local history and stop buttonsVincent Sanders2019-09-211-152/+201
|
* fix url enttry completionVincent Sanders2019-09-211-7/+17
|
* cleanup toolbar warningsVincent Sanders2019-09-211-4/+4
|
* make url entry repond to navigate and update signalsVincent Sanders2019-09-211-10/+103
|
* make toolbar url entry display urlVincent Sanders2019-09-211-6/+163
|
* working throbberVincent Sanders2019-09-211-12/+132
|
* get the code to at least compile again. toolbar is completely brokenVincent Sanders2019-09-211-510/+523
|
* moved most of init to toolbar.cVincent Sanders2019-09-211-317/+564
|
* access gtk throbber frames through an interfaceVincent Sanders2019-08-181-8/+8
| | | | | | This changes the gtk throbber frames to be accessed through an API This removes teh nsgtk_throbber global and hides the implementation details from the rest of the code.
* Move favicon from url entry widget to notebook tab labelVincent Sanders2019-08-151-4/+0
|
* fix enum name incompatability between gtk 2 and 3Vincent Sanders2019-05-051-1/+4
|
* clean up toolbar configuration to be slightly less buggyVincent Sanders2017-12-101-58/+66
|
* Use coccinelle to change logging macro calls in c filesVincent Sanders2017-09-061-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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);
* clean up incorrect documentation comments from plotter API reworkVincent Sanders2017-02-141-0/+2
|
* rationalise use of utils/utils.h headerVincent Sanders2017-01-191-1/+0
|
* fix use of default image on menu entries for gtk frontendVincent Sanders2016-09-271-25/+58
|
* move desktop window header into public APIVincent Sanders2016-05-301-1/+1
|
* rationalise use of gtk scaffolding headerVincent Sanders2016-05-211-0/+1
|
* store toolbar config in standard options instead of a separate fileVincent Sanders2016-05-211-60/+93
|
* move frontends into sub directoryVincent Sanders2016-05-151-0/+1416