summaryrefslogtreecommitdiff
path: root/frontends/windows
Commit message (Collapse)AuthorAgeFilesLines
* use attributes to indicate switch fall through instead of commentsVincent Sanders2024-03-052-2/+2
|
* resolve warnings in windows frontendVincent Sanders2024-02-273-1/+3
|
* remove completely unused box pointerVincent Sanders2024-01-081-1/+0
|
* Update copyright years and version numbersVincent Sanders2023-12-281-1/+1
|
* BuildSystem: make package step depend on POSTEXESJohn-Mark Bell2022-11-031-1/+1
| | | | | The POSTEXE stages might add more stuff to the package contents, so ensure they have completed before starting to package things up.
* s/http/https/ in user-facing URIsJohn-Mark Bell2022-05-272-6/+6
|
* Bitmap: Implement test_opaque in core instead of in every frontend.Michael Drake2022-03-291-30/+0
|
* Bitmap API: Clean up creation flags.Michael Drake2022-03-242-9/+7
|
* Windows: Drop bitmap save callback entry; core doesn't use it.Michael Drake2022-03-241-15/+0
|
* Windows: Drop bitmap get bpp function.Michael Drake2022-03-241-6/+0
|
* Windows: Use pkg-config when building on Windows.Michael Drake2021-05-131-1/+1
|
* Improve target setup in makefilesVincent Sanders2021-01-171-0/+19
| | | | | split out HOST TARGET and SUBTARGET generation into separate file. split out target(frontend) specific tool settings into separate files.
* Support Ctrl+A in the windows toolkit address barzeug2020-08-161-1/+5
|
* remove perl split-messages tool usageVincent Sanders2020-06-221-4/+3
|
* make browser_window_update internal to browser window as intendedVincent Sanders2020-05-251-2/+0
|
* windows: Enable present_cookies callbackDaniel Silverstone2020-05-234-4/+10
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* update resources copyright years and readme version numbersVincent Sanders2020-05-231-1/+1
|
* chore: Perform sslcert_viewer-ectomyDaniel Silverstone2020-05-225-528/+1
| | | | | | | | | | | This removes the sslcert_viewer entirely from the code. Where possible I've also trimmed out of frontends any code I think should not be present. Frontends should check and remove any further references that I have failed to catch. 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>
* Windows: Add nserror reporting functionDaniel Silverstone2020-02-242-0/+24
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* fix windows and amiga frontends to cope with certificate chain changesVincent Sanders2020-02-232-6/+4
|
* Core window: Constify the core_window handle through the getters.Michael Drake2020-02-221-2/+3
|
* Windows: Attempt to remove unused minimum GIF delay option.Michael Drake2020-02-213-29/+0
|
* add page info button to url entry and update on change for win32Vincent Sanders2019-12-162-83/+232
|
* add page info resources to win32 frontendVincent Sanders2019-12-167-1/+28
|
* fix win32 font measurement of non ascii strings.Vincent Sanders2019-12-141-98/+122
| | | | | This greatly improves line breaking and font measurement in the windows frontend.
* extend search for certificate file to include resource pathsVincent Sanders2019-12-101-0/+5
|
* rename global resource path variables in win32 frontendVincent Sanders2019-12-105-26/+44
|
* separate out construction of command line argument string vectorVincent Sanders2019-12-101-23/+54
|
* update resource search path to remove users directoryVincent Sanders2019-12-102-4/+5
| | | | | | | | | | it is no longer suitable to search the users home directory for general browser resources as the correct config path is now derived from the apropriate windows methods. Additionaly the NETSURFRES environment variable is no longer part of the fixed path and is instead added from the makefile configuration option.
* fix win32 frontend to allow setting unicode titlesVincent Sanders2019-12-011-10/+30
|
* remove warning callback from miscelaneous function tableVincent Sanders2019-11-111-1/+0
|
* 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.
* remove login window from windows frontendVincent Sanders2019-08-144-338/+1
|
* Support SSL verification through new about: handlerDaniel Silverstone2019-08-061-2/+0
| | | | | | | | In doing this, also propagate why the certificates were bad so that the page can display a reason. We will need FatMessages for all these. Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* Reimplement handling of BAD_AUTH inside browser_windowDaniel Silverstone2019-08-061-1/+0
| | | | | | | | | | | | | We now handle authentication requests via an `about:` page which presents a nice form built into the browser window. In order to do this, we add internal navigation as a concept to the browser window and we strip the 401login support from all frontends except monkey. The 401login callback is now intended for password safe type support rather than an immediately interactive prompt. Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* change browser_window_redraw to use unscaled coordinatesVincent Sanders2019-08-043-10/+6
|
* trivial documentation cleanupsVincent Sanders2019-08-041-2/+2
|
* Corewindow: Sanitise scrolling API.Michael Drake2019-08-031-6/+19
| | | | | | | Now the core has a helper so that all the front ends don't need to implement the scroll to show area API. Now they simply have get and set scroll APIs.
* make use of improved browser_window_set_scale API in frontendsVincent Sanders2019-08-031-35/+8
|
* change browser_window_mouse_track to use unscaled coordinatesVincent Sanders2019-08-031-20/+30
|
* change browser_window_mouse_click to use unscaled coordinatesVincent Sanders2019-08-031-7/+7
| | | | | this means frontends no longer need to scale mouse click events thus simplifying their implementation.
* windows/local_history: Scroll to cursor on openDaniel Silverstone2019-08-021-0/+1
| | | | Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
* remove scaled parameter from get_dimensionsVincent Sanders2019-08-021-4/+2
|
* split browser and browser_window operationsVincent Sanders2019-08-012-25/+23
|
* update copyright years for releaseVincent Sanders2019-07-171-1/+1
|
* Declare global variables as extern in headersMichael Forney2019-06-305-6/+6
| | | | | | | Otherwise, each source file that includes the header will create a new definition, which are usually merged together by the linker. Multiple definitions of an object is not allowed in ISO C.
* quieten down windows debugVincent Sanders2019-05-172-13/+18
|
* make win32 keyboard handling in browsing window functionalVincent Sanders2019-05-091-36/+86
| | | | | | | | | makes the drawable area widget for the browser display use windows unicode input and copes with surrogate pairs for full unicode input coverage. fixes the keydown handling to only the necessary navigation operations like left, right up and down etc.