当前位置: 首页>>代码示例>>C#>>正文


C# Range.GetFragmentLookedLeft方法代码示例

本文整理汇总了C#中Range.GetFragmentLookedLeft方法的典型用法代码示例。如果您正苦于以下问题:C# Range.GetFragmentLookedLeft方法的具体用法?C# Range.GetFragmentLookedLeft怎么用?C# Range.GetFragmentLookedLeft使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Range的用法示例。


在下文中一共展示了Range.GetFragmentLookedLeft方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: DoAutocomplete

        private void DoAutocomplete(AutocompleteItem item, Range fragment)
        {
            string newText = item.GetTextForReplace();

            //replace text of fragment
            var box = fragment.tb;
            // < By WendyH ---------------------------
            if (box.ToolTip4Function.Visible) Menu.AfterComplete = true;
            if (fragment.CharBeforeStart == '=') newText = " " + newText;
            int iLine = fragment.Start.iLine;
            HMSItem hmsItem = item as HMSItem;
            if (hmsItem != null) {
                if (((hmsItem.Kind == DefKind.Property) || (hmsItem.Kind == DefKind.Variable)) && !HMS.TypeIsClass(hmsItem.Type)) {
                    Range fwords = fragment.GetFragmentLookedLeft();
                    var f = new Range(box, new Place(0, iLine), new Place(fwords.Start.iChar, iLine));
                    string line = f.Text.Trim();
                    if ((line.Length == 0) && (box.Lines[iLine].IndexOf('=') < 0)) newText += (box.Language == Language.PascalScript) ? " := " : " = ";
                }
            }
            if (box.KeywordsToLowcase) {
                if (HMS.WordIsKeyword(newText))
                    newText = newText.ToLower();
            }
            // > By WendyH ---------------------------

            box.BeginAutoUndo();
            box.BeginUpdate();
            try {
                box.TextSource.Manager.ExecuteCommand(new SelectCommand(box.TextSource));
                if (box.Selection.ColumnSelectionMode)
                {
                    var start = box.Selection.Start;
                    var end   = box.Selection.End;
                    start.iChar = fragment.Start.iChar;
                    end  .iChar = fragment.End  .iChar;
                    box.Selection.Start = start;
                    box.Selection.End   = end;
                }
                else
                {
                    box.Selection.Start = fragment.Start;
                    box.Selection.End   = fragment.End;
                }
                box.InsertText(newText);
                box.TextSource.Manager.ExecuteCommand(new SelectCommand(box.TextSource));
            } finally {
                box.EndUpdate();
                box.EndAutoUndo();
            }
            if ((hmsItem != null) && (hmsItem.Params.Count > 0)) {
                if (HMSEditor.ActiveEditor != null) HMSEditor.ActiveEditor.WasCommaOrBracket = true;
            }
            box.Focus();
        }
开发者ID:WendyH,项目名称:HMSEditor_addon,代码行数:54,代码来源:AutocompleteMenu.cs

示例2: DoAutocomplete

        private void DoAutocomplete(AutocompleteItem item, Range fragment)
        {
            string newText = item.GetTextForReplace();

            //replace text of fragment
            var tb = fragment.tb;
            // < By WendyH ---------------------------
            if (tb.ToolTip4Function.Visible) Menu.AfterComplete = true;
            if (fragment.CharBeforeStart == '=') newText = " " + newText;
            int iLine = fragment.Start.iLine;
            int iChar = fragment.Start.iChar;
            HMSItem hmsItem = item as HMSItem;
            if ((hmsItem != null) && ((hmsItem.Kind == DefKind.Property) || (hmsItem.Kind == DefKind.Variable)) && !HMS.TypeIsClass(hmsItem.Type)) {
                Range fwords = fragment.GetFragmentLookedLeft();
                var f = new Range(tb, new Place(0, iLine), new Place(fwords.Start.iChar, iLine));
                string line = f.Text.Trim();
                if (line.Length == 0) newText += (tb.Language == Language.PascalScript) ? " := " : " = ";
            }

            // > By WendyH ---------------------------

            tb.BeginAutoUndo();
            tb.TextSource.Manager.ExecuteCommand(new SelectCommand(tb.TextSource));
            if (tb.Selection.ColumnSelectionMode)
            {
                var start = tb.Selection.Start;
                var end = tb.Selection.End;
                start.iChar = fragment.Start.iChar;
                end.iChar = fragment.End.iChar;
                tb.Selection.Start = start;
                tb.Selection.End = end;
            }
            else
            {
                tb.Selection.Start = fragment.Start;
                tb.Selection.End = fragment.End;
            }
            tb.InsertText(newText);
            tb.TextSource.Manager.ExecuteCommand(new SelectCommand(tb.TextSource));
            tb.EndAutoUndo();
            tb.Focus();
        }
开发者ID:WendyH,项目名称:HMSEditor,代码行数:42,代码来源:AutocompleteMenu.cs

示例3: Task

        /// <summary>
        /// Статическая процедура, вызываемая из MouseTimer_Task по срабатыванию MouseTimer для отображения подсказки при наведении мышкой на часть текста
        /// </summary>
        /// <param name="ActiveHMSEditor">Активный (вызвавший) элемент HMSEditor</param>
        public static void Task(HMSEditor ActiveHMSEditor)
        {
            if (ActiveHMSEditor.Locked) return;
            try {
                var    Editor = ActiveHMSEditor.Editor;
                Point  point  = ActiveHMSEditor.MouseLocation;
                int iStartLine = ActiveHMSEditor.Editor.YtoLineIndex(0);
                int CharHeight = ActiveHMSEditor.Editor.CharHeight;
                int i = point.Y / CharHeight;
                int iLine = iStartLine + i;
                if ((iLine + 1) > ActiveHMSEditor.Editor.LinesCount) return;
                Place place  = ActiveHMSEditor.PointToPlace(point);
                string line   = Editor.Lines[iLine];
                string value  = "";
                bool evalSelection = false;
                if (Editor.DebugMode && (Editor.SelectedText.Length > 2)) {
                    Place selStart = Editor.Selection.Start;
                    Place selEnd   = Editor.Selection.End;
                    // Если указатель мыши в области виделения, то будем вычислять выдиление
                    evalSelection  = (selStart.iLine == iLine) && (selStart.iChar >= place.iChar) && (selEnd.iChar <= iLine);
                }

                Range r = new Range(Editor, place, place);
                Range fragment = r.GetFragmentLookedLeft();
                string text = fragment.Text.Replace("#", "");
                if (text.Length == 0) return;

                HMSItem item = ActiveHMSEditor.GetHMSItemByText(text); // Поиск известного элемента HMSItem по части текста
                if (item != null && !string.IsNullOrEmpty(item.Text)) {
                    point.Offset(0, Editor.CharHeight-4);
                    // Если идёт отладка - проверяем, мы навели на переменную или свойство объекта?
                    if (Editor.DebugMode && (evalSelection || OK4Evaluate(item)) ) {
                        if (evalSelection) {
                            text = Editor.SelectedText;
                        } else {
                            // проверяем, если это index свойство - то нудно вычислять значение с переданным индексом, поэтому дополняем значением [...]
                            if (item.ImageIndex == Images.Enum) {
                                Match m = Regex.Match(line, text + @"\[.*?\]");
                                if (m.Success) text = m.Value;
                            } else if (item.ImageIndex == Images.Function) {
                                Match m = Regex.Match(line, text + @"\(.*?\)");
                                if (m.Success) text = m.Value;
                            }
                            // Проверяем тип объекта класса, может быть удобней представить в виде текста? (TStrings или TJsonObject)
                            text = CheckTypeForToStringRules(item.Type, text);
                        }
                        // Вычсиление выражения
                        value = ActiveHMSEditor.EvalVariableValue(text);
                        // Внедряемся в поток - показываем вплывающее окно со значением
                        Editor.Invoke((System.Windows.Forms.MethodInvoker)delegate {
                            ActiveHMSEditor.ValueHint.ShowValue(Editor, value, point);
                        });
                        return;
                    }
                    // Показываем инофрмацию о функции или переменной через ToolTip
                    Editor.Invoke((System.Windows.Forms.MethodInvoker)delegate {
                        var tip = Editor.ToolTip;
                        tip.ToolTipTitle = item.ToolTipTitle;
                        tip.Help         = item.Help;
                        tip.Value        = value;
                        tip.Show(item.ToolTipText + " ", Editor, point, 10000);
                    });
                }
            } catch (Exception e) {
                HMS.LogError(e.ToString());
            }
        }
开发者ID:WendyH,项目名称:HMSEditor,代码行数:71,代码来源:MouseHelpTimer.cs


注:本文中的Range.GetFragmentLookedLeft方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。