You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 13, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: Visual Studio Project Template C#/PluginInfrastructure/GatewayDomain.cs
+19-14Lines changed: 19 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -7,9 +7,9 @@
7
7
namespaceKbg.NppPluginNET
8
8
{
9
9
/// <summary>
10
-
/// Colours are set using the RGB format (Red, Green, Blue). The intensity of each colour is set in the range 0 to 255.
11
-
/// If you have three such intensities, they are combined as: red | (green << 8) | (blue << 16).
12
-
/// If you set all intensities to 255, the colour is white. If you set all intensities to 0, the colour is black.
10
+
/// Colours are set using the RGB format (Red, Green, Blue). The intensity of each colour is set in the range 0 to 255.
11
+
/// If you have three such intensities, they are combined as: red | (green << 8) | (blue << 16).
12
+
/// If you set all intensities to 255, the colour is white. If you set all intensities to 0, the colour is black.
13
13
/// When you set a colour, you are making a request. What you will get depends on the capabilities of the system and the current screen mode.
14
14
/// </summary>
15
15
publicclassColour
@@ -49,17 +49,17 @@ public int Value
49
49
}
50
50
51
51
/// <summary>
52
-
/// Positions within the Scintilla document refer to a character or the gap before that character.
52
+
/// Positions within the Scintilla document refer to a character or the gap before that character.
53
53
/// The first character in a document is 0, the second 1 and so on. If a document contains nLen characters, the last character is numbered nLen-1. The caret exists between character positions and can be located from before the first character (0) to after the last character (nLen).
54
54
///
55
-
/// There are places where the caret can not go where two character bytes make up one character.
56
-
/// This occurs when a DBCS character from a language like Japanese is included in the document or when line ends are marked with the CP/M
55
+
/// There are places where the caret can not go where two character bytes make up one character.
56
+
/// This occurs when a DBCS character from a language like Japanese is included in the document or when line ends are marked with the CP/M
57
57
/// standard of a carriage return followed by a line feed.The INVALID_POSITION constant(-1) represents an invalid position within the document.
58
58
///
59
-
/// All lines of text in Scintilla are the same height, and this height is calculated from the largest font in any current style.This restriction
59
+
/// All lines of text in Scintilla are the same height, and this height is calculated from the largest font in any current style.This restriction
60
60
/// is for performance; if lines differed in height then calculations involving positioning of text would require the text to be styled first.
61
61
///
62
-
/// If you use messages, there is nothing to stop you setting a position that is in the middle of a CRLF pair, or in the middle of a 2 byte character.
62
+
/// If you use messages, there is nothing to stop you setting a position that is in the middle of a CRLF pair, or in the middle of a 2 byte character.
63
63
/// However, keyboard commands will not move the caret into such positions.
64
64
/// </summary>
65
65
publicclassPosition:IEquatable<Position>
@@ -123,14 +123,14 @@ public override int GetHashCode()
123
123
}
124
124
125
125
/// <summary>
126
-
/// Class containing key and modifiers
126
+
/// Class containing key and modifiers
127
127
///
128
128
/// The key code is a visible or control character or a key from the SCK_* enumeration, which contains:
/// CK_RETURN, SCK_RIGHT, SCK_RWIN, SCK_SUBTRACT, SCK_TAB, SCK_UP, and SCK_WIN.
131
131
///
132
-
/// The modifiers are a combination of zero or more of SCMOD_ALT, SCMOD_CTRL, SCMOD_SHIFT, SCMOD_META, and SCMOD_SUPER.
133
-
/// On OS X, the Command key is mapped to SCMOD_CTRL and the Control key to SCMOD_META.SCMOD_SUPER is only available on GTK+ which is commonly the Windows key.
132
+
/// The modifiers are a combination of zero or more of SCMOD_ALT, SCMOD_CTRL, SCMOD_SHIFT, SCMOD_META, and SCMOD_SUPER.
133
+
/// On OS X, the Command key is mapped to SCMOD_CTRL and the Control key to SCMOD_META.SCMOD_SUPER is only available on GTK+ which is commonly the Windows key.
134
134
/// If you are building a table, you might want to use SCMOD_NORM, which has the value 0, to mean no modifiers.
135
135
/// </summary>
136
136
publicclassKeyModifier
@@ -139,11 +139,11 @@ public class KeyModifier
139
139
140
140
/// <summary>
141
141
/// The key code is a visible or control character or a key from the SCK_* enumeration, which contains:
/// SCK_RETURN, SCK_RIGHT, SCK_RWIN, SCK_SUBTRACT, SCK_TAB, SCK_UP, and SCK_WIN.
144
144
///
145
-
/// The modifiers are a combination of zero or more of SCMOD_ALT, SCMOD_CTRL, SCMOD_SHIFT, SCMOD_META, and SCMOD_SUPER.
146
-
/// On OS X, the Command key is mapped to SCMOD_CTRL and the Control key to SCMOD_META.SCMOD_SUPER is only available on GTK+ which is commonly the Windows key.
145
+
/// The modifiers are a combination of zero or more of SCMOD_ALT, SCMOD_CTRL, SCMOD_SHIFT, SCMOD_META, and SCMOD_SUPER.
146
+
/// On OS X, the Command key is mapped to SCMOD_CTRL and the Control key to SCMOD_META.SCMOD_SUPER is only available on GTK+ which is commonly the Windows key.
147
147
/// If you are building a table, you might want to use SCMOD_NORM, which has the value 0, to mean no modifiers.
0 commit comments