summaryrefslogtreecommitdiff
path: root/frontends/windows/window.c
Commit message (Collapse)AuthorAgeFilesLines
* quieten down windows debugVincent Sanders2019-05-171-10/+10
|
* implement windows clipboard functionalityVincent Sanders2019-05-091-23/+10
| | | | | | 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-4/+2
|
* add win32 http authentication dialogVincent Sanders2018-08-181-1/+1
|
* Fix up log call parametersVincent Sanders2017-09-081-2/+11
|
* Hopefully quash LOG compile errors in WindowsDaniel Silverstone2017-09-081-1/+1
|
* Fixup everything the semantic patch missedVincent Sanders2017-09-071-6/+16
|
* Use coccinelle to change logging macro calls in c filesVincent Sanders2017-09-061-35/+49
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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);
* fix redraw on window resizeJames Woodcock2017-07-301-3/+1
| | | | | | | A race condition with WM_PAINT can cause win32_window_set_scroll() to use the old window size. If this happens, the page data will not get drawn from the top left of the window but offset quite a large distance down and to the right.
* make windows frontend use corewindow API for local history windowVincent Sanders2017-06-011-11/+4
|
* Update windows frontend for set_scroll API changeVincent Sanders2017-04-261-44/+44
|
* update windows frontend to remove reformatVincent Sanders2017-04-261-21/+6
|
* Update windows frontend to use invalidate window area APIVincent Sanders2017-04-231-36/+27
|
* fix remaining doccomment errorsVincent Sanders2017-02-221-4/+4
|
* fix merge error in windows frontendVincent Sanders2017-02-191-1/+1
|
* Merge branch 'vince/localhist-corewin'Vincent Sanders2017-02-191-3/+4
|\
| * clean up some of the doxygen generation warningsVincent Sanders2017-02-191-3/+4
| |
* | cleanup windows frontend documentation comments and spellingVincent Sanders2017-02-171-25/+30
|/
* add corewindow support for windows frontendVincent Sanders2016-11-191-1/+13
|
* Rationalise the use of win32 application instance handle useVincent Sanders2016-10-301-70/+128
| | | | | | | | | | | | 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.
* Complete windows main window documentationVincent Sanders2016-10-291-231/+312
|
* Improve windows win32 main browser window code documentationVincent Sanders2016-10-261-47/+131
|
* fix windows user preferences location storageVincent Sanders2016-10-191-1/+2
|
* move key press enums and operations to their own headerVincent Sanders2016-07-011-1/+1
|
* move desktop window header into public APIVincent Sanders2016-05-301-1/+1
|
* move window header into public APIVincent Sanders2016-05-301-1/+1
|
* move frontends into sub directoryVincent Sanders2016-05-151-0/+1741