Skip to content

Commit cb4a4a5

Browse files
committed
Upgraded SVGIconImageList and SynEdit.
1 parent c917fc2 commit cb4a4a5

File tree

185 files changed

+27977
-11459
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

185 files changed

+27977
-11459
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Copyright (c) 2016 DJMASTER.COM - http://www.djmaster.com/
2+
3+
Permission is hereby granted, free of charge, to any person
4+
obtaining a copy of this software and associated documentation
5+
files (the "Software"), to deal in the Software without
6+
restriction, including without limitation the rights to use,
7+
copy, modify, merge, publish, distribute, sublicense, and/or sell
8+
copies of the Software, and to permit persons to whom the
9+
Software is furnished to do so, subject to the following
10+
conditions:
11+
12+
The above copyright notice and this permission notice shall be
13+
included in all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
17+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22+
OTHER DEALINGS IN THE SOFTWARE.
5.5 MB
Binary file not shown.
5.31 MB
Binary file not shown.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Cairo factory for SVGIconImagelist
2+
3+
Implementation by [Lübbe Onken](https://github.com/luebbe)
4+
5+
Windows Binaries are from: [DJMaster](https://www.djmaster.com)
6+
7+
* [LibRsvg - 2.40.20 (2017-12-26)](http://www.djmaster.com/freepascal/bindings/librsvg.php)
8+
Win32: librsvg-win32.zip
9+
Win64: librsvg-win64.zip
10+
11+
DJMaster also provides fpc bindings but we decided to use the older bindings by Henri Gourvest, which didn't require any adjustments.
12+
13+
Delphi headers by [Henri Gourvest](https://github.com/kobi1970/delphignomevectorgraphic)
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{$DEFINE CAIRO_HAS_PDF_SURFACE}
2+
{$DEFINE CAIRO_HAS_PNG_FUNCTIONS}
3+
{$DEFINE CAIRO_HAS_PS_SURFACE}
4+
{$DEFINE CAIRO_HAS_SVG_SURFACE}
5+
{$DEFINE CAIRO_HAS_RECORDING_SURFACE}
6+
// TODO: CAIRO_HAS_GLITZ_SURFACE
7+
// TODO: CAIRO_HAS_QUARTZ_SURFACE
8+
// TODO: CAIRO_HAS_XCB_SURFACE
9+
10+
{$DEFINE CAIRO_HAS_RSVG_FUNCTIONS}
11+
12+
13+
{$IFDEF UNIX}
14+
{$DEFINE CAIRO_HAS_XLIB_SURFACE}
15+
{$DEFINE CAIRO_HAS_XLIB_XRENDER_SURFACE}
16+
{$DEFINE CAIRO_HAS_FT_FONT}
17+
{$ENDIF}
18+
19+
{$ifdef MSWINDOWS}
20+
{$define CAIRO_HAS_WIN32_SURFACE}
21+
{$define CAIRO_HAS_WIN32_FONT}
22+
{$endif}
23+
24+
{.$undef CAIRO_HAS_QUARTZ_FONT}
25+
{.$undef CAIRO_HAS_QUARTZ_SURFACE}

0 commit comments

Comments
 (0)