summaryrefslogtreecommitdiff
path: root/frontends/windows/main.c
Commit message (Collapse)AuthorAgeFilesLines
* implement windows clipboard functionalityVincent Sanders2019-05-091-0/+1
| | | | | | This allows clipboard to operate (cut, copy, paste and delete) in the win32 front end. The clipboard is set and read in windows unicode mode and then converted to/from utf-8 for the browser core.
* Update windows frontend to use windows resourcesVincent Sanders2018-08-211-20/+39
|
* add win32 http authentication dialogVincent Sanders2018-08-181-0/+3
|
* Finalise nslog layer properly in closedownDaniel Silverstone2017-09-101-0/+3
|
* Use coccinelle to change logging macro calls in c filesVincent Sanders2017-09-061-6/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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);
* make windows frontend use corewindow API for local history windowVincent Sanders2017-06-011-2/+1
|
* Windows: Update for core hotlist API change.Michael Drake2017-04-251-1/+2
|
* Windows: Update for new hotlist API.Michael Drake2016-12-291-0/+2
| | | | This allows the hotlist backend to work before the hotlist window opens.
* add corewindow support for windows frontendVincent Sanders2016-11-191-0/+5
|
* Rationalise the use of win32 application instance handle useVincent Sanders2016-10-301-0/+3
| | | | | | | | | | | | The use of the application instance handle global variable was inconsistent throughout the windows frontend. By rationalising the passing of these handles it showed that some of the toolbar and throbber parent handles were also setup wrong giving odd offset behaviour. All these issues have been addressed and the throbber is now in the correct position.
* allow windows frontend to load and store urldb filesVincent Sanders2016-10-191-5/+67
|
* fix windows user preferences location storageVincent Sanders2016-10-191-17/+96
|
* move desktop window header into public APIVincent Sanders2016-05-301-1/+1
|
* move netsurf header into public APIVincent Sanders2016-05-301-1/+1
|
* move fetch header into public APIVincent Sanders2016-05-301-1/+1
|
* move misc header into public APIVincent Sanders2016-05-301-1/+1
|
* move frontends into sub directoryVincent Sanders2016-05-151-0/+271