mirror of
				https://github.com/notepad-plus-plus/notepad-plus-plus.git
				synced 2025-10-30 19:14:05 +01:00 
			
		
		
		
	https://www.scintilla.org/scintilla534.zip Released 8 March 2023. Add multithreaded wrap to significantly improve performance of wrapping large files. More typesafe bindings of *Full APIs in ScintillaCall. Feature #1477. Fix overlapping of text with line end wrap marker. Bug #2378. Fix clipping of line end wrap symbol for SC_WRAPVISUALFLAGLOC_END_BY_TEXT. Where a multi-byte character contains multiple styles, display each byte as a representation. This makes it easier to see and fix lexers that change styles mid-character, commonly because they use fixed size buffers. Fix a potential crash with autocompletion list fill-ups where a SCN_CHARADDED handler retriggered an autocompletion list, but with no items that match the typed character. lexilla523 Released 8 March 2023. Add scripts/PromoteNew.bat script to promote .new files after checking. Makefile: Remove 1024-byte line length limit.. Ruby: Add new lexical classes for % literals SCE_RB_STRING_W (%w non-interpolable string array), SCE_RB_STRING_I (%i non-interpolable symbol array), SCE_RB_STRING_QI (%I interpolable symbol array), and SCE_RB_STRING_QS (%s symbol). Issue #124. Ruby: Disambiguate %= which may be a quote or modulo assignment. Issue #124, Bug #1255, Bug #2182. Ruby: Fix additional fold level for single character in SCE_RB_STRING_QW. Issue #132. Ruby: Set SCE_RB_HERE_QQ for unquoted and double-quoted heredocs and SCE_RB_HERE_QX for backticks-quoted heredocs. Issue #134. Ruby: Recognise #{} inside SCE_RB_HERE_QQ and SCE_RB_HERE_QX. Issue #134. Ruby: Improve regex and heredoc recognition. Issue #136. Ruby: Highlight #@, #@@ and #$ style interpolation. Issue #140. Ruby: Fix folding for multiple heredocs started on one line. Fix folding when there is a space after heredoc opening delimiter. Issue #135. YAML: Remove 1024-byte line length limit. https://www.scintilla.org/lexilla524.zip Released 13 March 2023. C++: Fix failure to recognize keywords containing upper case. Issue #149. GDScript: Support % and $ node paths. Issue #145, Pull request #146. Close #13338
		
			
				
	
	
		
			142 lines
		
	
	
		
			5.6 KiB
		
	
	
	
		
			Objective-C
		
	
	
	
	
	
			
		
		
	
	
			142 lines
		
	
	
		
			5.6 KiB
		
	
	
	
		
			Objective-C
		
	
	
	
	
	
| 
 | |
| /**
 | |
|  * Copyright 2009 Sun Microsystems, Inc. All rights reserved.
 | |
|  * This file is dual licensed under LGPL v2.1 and the Scintilla license (http://www.scintilla.org/License.txt).
 | |
|  * @file PlatCocoa.h
 | |
|  */
 | |
| 
 | |
| #ifndef PLATCOCOA_H
 | |
| #define PLATCOCOA_H
 | |
| 
 | |
| #include <cstdlib>
 | |
| #include <cassert>
 | |
| #include <cstring>
 | |
| #include <cstdio>
 | |
| 
 | |
| #include <Cocoa/Cocoa.h>
 | |
| 
 | |
| #include "ScintillaTypes.h"
 | |
| #include "ScintillaMessages.h"
 | |
| 
 | |
| #include "Debugging.h"
 | |
| #include "Geometry.h"
 | |
| #include "Platform.h"
 | |
| 
 | |
| #include "QuartzTextLayout.h"
 | |
| 
 | |
| NSRect PRectangleToNSRect(const Scintilla::Internal::PRectangle &rc);
 | |
| Scintilla::Internal::PRectangle NSRectToPRectangle(const NSRect &rc);
 | |
| CFStringEncoding EncodingFromCharacterSet(bool unicode, Scintilla::CharacterSet characterSet);
 | |
| 
 | |
| @interface ScintillaContextMenu : NSMenu {
 | |
| 	Scintilla::Internal::ScintillaCocoa *owner;
 | |
| }
 | |
| - (void) handleCommand: (NSMenuItem *) sender;
 | |
| - (void) setOwner: (Scintilla::Internal::ScintillaCocoa *) newOwner;
 | |
| 
 | |
| @end
 | |
| 
 | |
| namespace Scintilla::Internal {
 | |
| 
 | |
| // A class to do the actual text rendering for us using Quartz 2D.
 | |
| class SurfaceImpl : public Surface {
 | |
| private:
 | |
| 	SurfaceMode mode;
 | |
| 
 | |
| 	CGContextRef gc;
 | |
| 
 | |
| 	/** If the surface is a bitmap context, contains a reference to the bitmap data. */
 | |
| 	std::unique_ptr<uint8_t[]> bitmapData;
 | |
| 	/** If the surface is a bitmap context, stores the dimensions of the bitmap. */
 | |
| 	int bitmapWidth;
 | |
| 	int bitmapHeight;
 | |
| 
 | |
| 	/** Set the CGContext's fill colour to the specified desired colour. */
 | |
| 	void FillColour(ColourRGBA fill);
 | |
| 
 | |
| 	void PenColourAlpha(ColourRGBA fore);
 | |
| 
 | |
| 	void SetFillStroke(FillStroke fillStroke);
 | |
| 
 | |
| 	// 24-bit RGB+A bitmap data constants
 | |
| 	static const int BITS_PER_COMPONENT = 8;
 | |
| 	static const int BITS_PER_PIXEL = BITS_PER_COMPONENT * 4;
 | |
| 	static const int BYTES_PER_PIXEL = BITS_PER_PIXEL / 8;
 | |
| 
 | |
| 	bool UnicodeMode() const noexcept;
 | |
| 	void Clear();
 | |
| 
 | |
| public:
 | |
| 	SurfaceImpl();
 | |
| 	SurfaceImpl(const SurfaceImpl *surface, int width, int height);
 | |
| 	~SurfaceImpl() override;
 | |
| 
 | |
| 	void Init(WindowID wid) override;
 | |
| 	void Init(SurfaceID sid, WindowID wid) override;
 | |
| 	std::unique_ptr<Surface> AllocatePixMap(int width, int height) override;
 | |
| 	std::unique_ptr<SurfaceImpl> AllocatePixMapImplementation(int width, int height);
 | |
| 	CGContextRef GetContext() { return gc; }
 | |
| 
 | |
| 	void SetMode(SurfaceMode mode) override;
 | |
| 
 | |
| 	void Release() noexcept override;
 | |
| 	int SupportsFeature(Scintilla::Supports feature) noexcept override;
 | |
| 	bool Initialised() override;
 | |
| 
 | |
| 	/** Returns a CGImageRef that represents the surface. Returns NULL if this is not possible. */
 | |
| 	CGImageRef CreateImage();
 | |
| 	void CopyImageRectangle(SurfaceImpl *source, PRectangle srcRect, PRectangle dstRect);
 | |
| 
 | |
| 	int LogPixelsY() override;
 | |
| 	int PixelDivisions() override;
 | |
| 	int DeviceHeightFont(int points) override;
 | |
| 	void LineDraw(Point start, Point end, Stroke stroke) override;
 | |
| 	void PolyLine(const Point *pts, size_t npts, Stroke stroke) override;
 | |
| 	void Polygon(const Scintilla::Internal::Point *pts, size_t npts, FillStroke fillStroke) override;
 | |
| 	void RectangleDraw(PRectangle rc, FillStroke fillStroke) override;
 | |
| 	void RectangleFrame(PRectangle rc, Stroke stroke) override;
 | |
| 	void FillRectangle(PRectangle rc, Fill fill) override;
 | |
| 	void FillRectangleAligned(PRectangle rc, Fill fill) override;
 | |
| 	void FillRectangle(PRectangle rc, Surface &surfacePattern) override;
 | |
| 	void RoundedRectangle(PRectangle rc, FillStroke fillStroke) override;
 | |
| 	void AlphaRectangle(PRectangle rc, XYPOSITION cornerSize, FillStroke fillStroke) override;
 | |
| 	void GradientRectangle(PRectangle rc, const std::vector<ColourStop> &stops, GradientOptions options) override;
 | |
| 	void DrawRGBAImage(PRectangle rc, int width, int height, const unsigned char *pixelsImage) override;
 | |
| 	void Ellipse(PRectangle rc, FillStroke fillStroke) override;
 | |
| 	void Stadium(PRectangle rc, FillStroke fillStroke, Ends ends) override;
 | |
| 	void Copy(PRectangle rc, Scintilla::Internal::Point from, Surface &surfaceSource) override;
 | |
| 	std::unique_ptr<IScreenLineLayout> Layout(const IScreenLine *screenLine) override;
 | |
| 
 | |
| 	void DrawTextNoClip(PRectangle rc, const Font *font_, XYPOSITION ybase, std::string_view text, ColourRGBA fore,
 | |
| 			    ColourRGBA back) override;
 | |
| 	void DrawTextClipped(PRectangle rc, const Font *font_, XYPOSITION ybase, std::string_view text, ColourRGBA fore,
 | |
| 			     ColourRGBA back) override;
 | |
| 	void DrawTextTransparent(PRectangle rc, const Font *font_, XYPOSITION ybase, std::string_view text, ColourRGBA fore) override;
 | |
| 	void MeasureWidths(const Font *font_, std::string_view text, XYPOSITION *positions) override;
 | |
| 	XYPOSITION WidthText(const Font *font_, std::string_view text) override;
 | |
| 
 | |
| 	void DrawTextNoClipUTF8(PRectangle rc, const Font *font_, XYPOSITION ybase, std::string_view text, ColourRGBA fore,
 | |
| 			    ColourRGBA back) override;
 | |
| 	void DrawTextClippedUTF8(PRectangle rc, const Font *font_, XYPOSITION ybase, std::string_view text, ColourRGBA fore,
 | |
| 			     ColourRGBA back) override;
 | |
| 	void DrawTextTransparentUTF8(PRectangle rc, const Font *font_, XYPOSITION ybase, std::string_view text, ColourRGBA fore) override;
 | |
| 	void MeasureWidthsUTF8(const Font *font_, std::string_view text, XYPOSITION *positions) override;
 | |
| 	XYPOSITION WidthTextUTF8(const Font *font_, std::string_view text) override;
 | |
| 
 | |
| 	XYPOSITION Ascent(const Font *font_) override;
 | |
| 	XYPOSITION Descent(const Font *font_) override;
 | |
| 	XYPOSITION InternalLeading(const Font *font_) override;
 | |
| 	XYPOSITION Height(const Font *font_) override;
 | |
| 	XYPOSITION AverageCharWidth(const Font *font_) override;
 | |
| 
 | |
| 	void SetClip(PRectangle rc) override;
 | |
| 	void PopClip() override;
 | |
| 	void FlushCachedState() override;
 | |
| 	void FlushDrawing() override;
 | |
| 
 | |
| }; // SurfaceImpl class
 | |
| 
 | |
| } // Scintilla namespace
 | |
| 
 | |
| #endif
 |