From d2c7abab397926735f5a41ca17fd280a409e2940 Mon Sep 17 00:00:00 2001 From: Tse Kit Yam Date: Wed, 23 Nov 2016 10:46:28 +1100 Subject: Implementation of MarginRightClick event. --- include/Scintilla.iface | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'include/Scintilla.iface') diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 12848b901..df779982c 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1748,9 +1748,14 @@ fun int SearchPrev=2368(int searchFlags, string text) # Retrieves the number of lines completely visible. get int LinesOnScreen=2370(,) +enu PopUp=SC_POPUP_ +val SC_POPUP_NEVER=0 +val SC_POPUP_ALL=1 +val SC_POPUP_TEXT=2 + # Set whether a pop up menu is displayed automatically when the user presses -# the wrong mouse button. -fun void UsePopUp=2371(bool allowPopUp,) +# the wrong mouse button on certain areas. +fun void UsePopUp=2371(int popUpMode,) # Is the selection rectangular? The alternative is the more common stream selection. get bool SelectionIsRectangle=2372(,) @@ -4819,6 +4824,7 @@ evt void HotSpotReleaseClick=2027(int modifiers, int position) evt void FocusIn=2028(void) evt void FocusOut=2029(void) evt void AutoCCompleted=2030(string text, int position, int ch, CompletionMethods listCompletionMethod) +evt void MarginRightClick=2031(int modifiers, int position, int margin) # There are no provisional APIs currently, but some arguments to SCI_SETTECHNOLOGY are provisional. -- cgit v1.2.3