diff options
author | Neil <nyamatongwe@gmail.com> | 2021-03-19 13:43:32 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2021-03-19 13:43:32 +1100 |
commit | 9659ea34246320bd9872740d1ee6a5c9ae9066c6 (patch) | |
tree | cf185d19f133dd40a7faed0bd24c1a04fb12a1be /win32 | |
parent | 63fbfcb7c05dc7035ebf80805be70b0109def792 (diff) | |
download | scintilla-mirror-9659ea34246320bd9872740d1ee6a5c9ae9066c6.tar.gz |
Add Geometry.cxx for geometric and colour operations too complex for headers.
Add FillStroke to hold parameters for drawing shapes.
Diffstat (limited to 'win32')
-rw-r--r-- | win32/deps.mak | 3 | ||||
-rw-r--r-- | win32/makefile | 1 | ||||
-rw-r--r-- | win32/nmdeps.mak | 3 | ||||
-rw-r--r-- | win32/scintilla.mak | 1 |
4 files changed, 8 insertions, 0 deletions
diff --git a/win32/deps.mak b/win32/deps.mak index 71978a153..af07609e1 100644 --- a/win32/deps.mak +++ b/win32/deps.mak @@ -254,6 +254,9 @@ EditView.o: \ ../src/MarginView.h \ ../src/EditView.h \ ../src/ElapsedPeriod.h +Geometry.o: \ + ../src/Geometry.cxx \ + ../src/Geometry.h Indicator.o: \ ../src/Indicator.cxx \ ../src/Debugging.h \ diff --git a/win32/makefile b/win32/makefile index 5e005fe24..7dd2604bb 100644 --- a/win32/makefile +++ b/win32/makefile @@ -96,6 +96,7 @@ SRC_OBJS = \ EditModel.o \ Editor.o \ EditView.o \ + Geometry.o \ Indicator.o \ KeyMap.o \ LineMarker.o \ diff --git a/win32/nmdeps.mak b/win32/nmdeps.mak index 601f10acd..d9ba665f5 100644 --- a/win32/nmdeps.mak +++ b/win32/nmdeps.mak @@ -254,6 +254,9 @@ $(DIR_O)/EditView.obj: \ ../src/MarginView.h \ ../src/EditView.h \ ../src/ElapsedPeriod.h +$(DIR_O)/Geometry.obj: \ + ../src/Geometry.cxx \ + ../src/Geometry.h $(DIR_O)/Indicator.obj: \ ../src/Indicator.cxx \ ../src/Debugging.h \ diff --git a/win32/scintilla.mak b/win32/scintilla.mak index 7a7fb89da..edb0c7de8 100644 --- a/win32/scintilla.mak +++ b/win32/scintilla.mak @@ -89,6 +89,7 @@ SRC_OBJS=\ $(DIR_O)\EditModel.obj \ $(DIR_O)\Editor.obj \ $(DIR_O)\EditView.obj \ + $(DIR_O)\Geometry.obj \ $(DIR_O)\Indicator.obj \ $(DIR_O)\KeyMap.obj \ $(DIR_O)\LineMarker.obj \ |