synedit: comments, patch #26319

git-svn-id: trunk@45471 -
This commit is contained in:
mattias 2014-06-10 21:22:40 +00:00
parent 233aa40f42
commit e200086dbb

View File

@ -41,13 +41,13 @@ uses
type type
TSynEditorMouseOption = ( TSynEditorMouseOption = (
emUseMouseActions, emUseMouseActions, // Enable mouse actions
emAltSetsColumnMode, // Alt modifier, triggers column mode selection emAltSetsColumnMode, // Allows to activate "column" selection mode, if <Alt> key is pressed and text is being selected with mouse
emDragDropEditing, // Allows you to select a block of text and drag it within the document to another location emDragDropEditing, // Allows to drag-and-drop text blocks within the control
emRightMouseMovesCursor, // When clicking with the right mouse for a popup menu, move the cursor to that location emRightMouseMovesCursor, // When clicking with the right mouse button, for a popup menu, move the caret to clicked position
emDoubleClickSelectsLine, // Select line on double click emDoubleClickSelectsLine, // Selects entire line with double-click, otherwise double-click selects only current word
emShowCtrlMouseLinks, // Pressing Ctrl (SYNEDIT_LINK_MODIFIER) will highlight the word under the mouse cursor emShowCtrlMouseLinks, // Pressing <Ctrl> key (SYNEDIT_LINK_MODIFIER) will highlight the word under mouse cursor
emCtrlWheelZoom emCtrlWheelZoom // Allows to zoom editor by <Ctrl+MouseWheel> commands
); );
TSynEditorMouseOptions = set of TSynEditorMouseOption; TSynEditorMouseOptions = set of TSynEditorMouseOption;