summaryrefslogtreecommitdiff
path: root/frontends/windows/window.c
Commit message (Collapse)AuthorAgeFilesLines
* use attributes to indicate switch fall through instead of commentsVincent Sanders2024-03-051-1/+1
|
* resolve warnings in windows frontendVincent Sanders2024-02-271-1/+1
|
* s/http/https/ in user-facing URIsJohn-Mark Bell2022-05-271-3/+3
|
* Support Ctrl+A in the windows toolkit address barzeug2020-08-161-1/+5
|
* make browser_window_update internal to browser window as intendedVincent Sanders2020-05-251-2/+0
|
* windows: Enable present_cookies callbackDaniel Silverstone2020-05-231-1/+1
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* windows: Convert the remaining NoMemory warnings which aren't about memoryDaniel Silverstone2020-02-241-4/+7
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* windows: Use nserror reporting rather than always NoMemoryDaniel Silverstone2020-02-241-2/+5
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* add page info button to url entry and update on change for win32Vincent Sanders2019-12-161-82/+229
|
* fix win32 frontend to allow setting unicode titlesVincent Sanders2019-12-011-10/+30
|
* add miscellaneous event to browser window callback tableVincent Sanders2019-08-201-4/+34
| | | | | | | | | | | | extend the browser window callback table with a miscallaneous event entry. This is used to replace all browser window callbacks which take no parameters. This reduces the API surface from seven separate calls to a single call with an enumeration which may be readily extended. The initial implementation in the frontends simply calls the original implementations to reduce scope for errors.
* change browser_window_redraw to use unscaled coordinatesVincent Sanders2019-08-041-6/+4
|
* make use of improved browser_window_set_scale API in frontendsVincent Sanders2019-08-031-35/+8
|
* remove scaled parameter from get_dimensionsVincent Sanders2019-08-021-4/+2
|
* split browser and browser_window operationsVincent Sanders2019-08-011-25/+0
|
* 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