summaryrefslogtreecommitdiff
path: root/frontends/windows
Commit message (Collapse)AuthorAgeFilesLines
...
* implement windows clipboard functionalityVincent Sanders2019-05-098-90/+195
| | | | | | 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 copyright years and versions in docs and readmeVincent Sanders2018-08-291-1/+1
|
* Update windows frontend to use windows resourcesVincent Sanders2018-08-2117-71/+183
|
* make the login dialog password control obscure inputVincent Sanders2018-08-181-1/+1
|
* add win32 http authentication dialogVincent Sanders2018-08-1810-13/+432
|
* add login dialogVincent Sanders2018-08-165-259/+311
|
* Plotters: Remove width param from path plotter.Michael Drake2018-05-231-2/+0
| | | | We now use the stroke_width in the plot_style.
* Plotters: Change stroke width in the plot_style_t to fixed point.Michael Drake2018-05-231-2/+6
|
* Plotters: Add plot_style_fixed type, and use for font size.Michael Drake2018-05-231-1/+1
|
* Initial shuffle of stuff out of !NetSurfDaniel Silverstone2018-04-229-9/+9
|
* Rework use of split-messages to clean up and use -zDaniel Silverstone2018-04-221-0/+1
|
* add crypto library to windows link to cope with updated opensslVincent Sanders2017-11-241-1/+1
|
* Windows: Use bitmap width as minimum width, since content width may be 0.Michael Drake2017-10-251-1/+1
|
* Finalise nslog layer properly in closedownDaniel Silverstone2017-09-101-0/+3
|
* Fix up log call parametersVincent Sanders2017-09-081-2/+11
|
* Hopefully quash LOG compile errors in WindowsDaniel Silverstone2017-09-082-2/+3
|
* Fixup everything the semantic patch missedVincent Sanders2017-09-073-16/+29
|
* Update scheduler logging to use catagoryVincent Sanders2017-09-071-18/+22
|
* update plotter logging to use a catagoryVincent Sanders2017-09-061-27/+17
|
* Use coccinelle to change logging macro calls in c filesVincent Sanders2017-09-0614-103/+130
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* Fix windows word splittingmjw2017-07-301-1/+1
| | | | | mjw on IRC pointed out that the windows word splitting code was not checking a return code properly resulting in broken word splitting.
* Windows: Ensure core windows are fully initialised.Michael Drake2017-06-114-4/+4
|
* Core window: Ensure all front ends initialise drag_status.Michael Drake2017-06-102-2/+3
|
* Local history: Pass clip rectangle around as struct.Michael Drake2017-06-101-5/+1
|
* Fix windows frontend click and invalidate region scroll offsetsVincent Sanders2017-06-091-9/+39
|
* Windows: Core window: No need to erase the invalidated region on scroll.Michael Drake2017-06-091-2/+2
| | | | | The core is responsible for rendering the invalidated region, so this avoids the area getting painted twice.
* make windows frontend use corewindow API for local history windowVincent Sanders2017-06-019-513/+380
|
* fixup windows invalidate callVincent Sanders2017-05-231-3/+1
|
* update windows frontend for corewindow API changeVincent Sanders2017-05-231-10/+31
|
* Update windows frontend for set_scroll API changeVincent Sanders2017-04-263-54/+62
|
* update windows frontend to remove reformatVincent Sanders2017-04-261-21/+6
|
* Windows: Update for core hotlist API change.Michael Drake2017-04-252-2/+3
|
* Update windows frontend to use invalidate window area APIVincent Sanders2017-04-231-36/+27
|
* fix some doxygen errorsVincent Sanders2017-02-241-1/+2
|
* fix remaining doccomment errorsVincent Sanders2017-02-222-5/+5
|
* fix merge error in windows frontendVincent Sanders2017-02-191-1/+1
|
* Merge branch 'vince/localhist-corewin'Vincent Sanders2017-02-197-22/+52
|\
| * clean up some of the doxygen generation warningsVincent Sanders2017-02-197-16/+52
| |
* | cleanup windows frontend documentation comments and spellingVincent Sanders2017-02-1711-218/+451
|/
* clean up incorrect documentation comments from plotter API reworkVincent Sanders2017-02-141-5/+5
|
* update windows plotters to new APIVincent Sanders2017-02-111-508/+668
|
* create netsurf inttypes header to have portable integer formatting macrosVincent Sanders2017-01-211-1/+1
|
* rationalise use of utils/utils.h headerVincent Sanders2017-01-1910-10/+1
|
* move plot style header to netsurf include directoryVincent Sanders2017-01-133-2/+4
| | | | | move plotter style header and adjust all callers to use only what they actually require.
* fix windows installer generationVincent Sanders2017-01-072-28/+68
| | | | | | | the windows installer package generation was not correctly parameterised which resulted in fetching resources from incorrect locations. Additionally the clean target was not removing generated installer output.
* Windows: Fix font table to return nserror.Michael Drake2017-01-021-10/+14
| | | | | | | We were returning true on success, which when the return value was tested for being NSERROR_OK (0), meant it was treated as failure. Now we correctly return NSERROR_OK on success.
* Windows: Update for new hotlist API.Michael Drake2016-12-292-8/+5
| | | | This allows the hotlist backend to work before the hotlist window opens.
* improve doc comments in windows corewindow handlingVincent Sanders2016-12-262-2/+13
|
* add corewindow support for windows frontendVincent Sanders2016-11-1915-44/+1849
|