Click here to Skip to main content
6,306,412 members and growing! (19,841 online)
Email Password   helpLost your password?
General Programming » Macros and Add-ins » VS.NET Add-ins     Intermediate License: The GNU General Public License (GPL)

Automatic highlighting of matching braces for Visual Studio C++

By Jochen Baier

This add-in enables highlighting of matching braces next to the cursor for Visual Studio C++.
C++, C#, Windows, Dev
Posted:31 Aug 2008
Updated:5 Nov 2008
Views:16,754
Bookmarked:18 times
Announcements
Loading...
 
Search    
Advanced Search
printPrint   Broken Article?Report       add Share
  Discuss Discuss   Recommend Article Email
11 votes for this article.
Popularity: 3.61 Rating: 3.47 out of 5
3 votes, 27.3%
1

2
2 votes, 18.2%
3
2 votes, 18.2%
4
4 votes, 36.4%
5

Introduction

The Visual Studio 2008 C++ text editor only highlights matching braces if written the first time. Almost all text editors have the feature of highlighting matching braces if you put the cursor near to an open or close brace (even the Visual Studio C# editor). This add-in will provide this feature for C++ too. (Tested with Visual Studio 2008; for 2005, you need to change the version information in the "MatchingBraces.AddIn" file from 9.0 to 8.0).

Using the Add-in

  1. Just copy the contents of the "readyplugin" folder to "C:\Users\Username\Documents\Visual Studio 2008\Addins". Restart Visual Studio.
  2. Put the cursor on the right side of a brace (one of: '{[()]}'). If the brace has a matching one, both braces will be highlighted with a bold font.

Source Code Overview

  • Get mouse and keyboard events:

    To get the add-in working, we first need to get notified if the user has moved the cursor somewhere inside the text editor using the mouse or the keyboard. The Visual Studio Add-in API does not provide a functionality for mouse events. It is necessary to use a Window Hook using the SetWindowsHookEx() function. The built-in TextDocumentKeyPressEvents does not work with the arrow keys. For these keys, a keyboard hook is needed:

    private void InitHook()
    {
      //init the mouse and keyboard hook 
      //with the thread id of the Visual Studio IDE
      uint id = GetCurrentThreadId();
      this.MouseProcDelegate = new HookProc(this.MouseProc);
      mhhook = SetWindowsHookEx(WH_MOUSE, 
               this.MouseProcDelegate, IntPtr.Zero, id);
      this.KeyboardProcDelegate = 
           new HookProcKeyboard(this.KeyboardProc);
      khook = SetWindowsHookEx(WH_KEYBOARD, 
              this.KeyboardProcDelegate, IntPtr.Zero, id);
    }

    To make use of SetWindowsHookEx(), it is necessary to use the Platform Invoke stuff. If the user released a key or released a mouse button, the MouseProc (or KeyboardProc) 'function' will be called before the event reaches the Visual Studio window.

  • Do something with the event (here keyboard):

    If KeyboardProc is called, we only know that a key is released somewhere. First, we need to make sure that a document is open and that the document is a C++ source code:

    private int KeyboardProc(int code, IntPtr wParam, IntPtr lParam)
    {
      try
      {
        if (code != HC_ACTION)
        {
          return CallNextHookEx(khook, code, wParam, lParam);
        }
    
        //only with a C++ document open
        if (_applicationObject.ActiveDocument == null ||
            _applicationObject.ActiveDocument.Language != "C/C++")
        {
          return CallNextHookEx(mhhook, code, wParam, lParam);
        }

    Next, we need to check if the event occurred inside the editor window and not somewhere else:

       //check if the editor window has the keyboard focus
       IntPtr h = GetFocus();
       if (!isEditorWindow(h))
       {
         return CallNextHookEx(mhhook, code, wParam, lParam);
       } 
    
    [...]
    
     private static bool isEditorWindow(IntPtr hWnd)
     {
       IntPtr res;
       StringBuilder ClassName = new StringBuilder(256);
       res = GetClassName(hWnd, ClassName, ClassName.Capacity);
       if (res != IntPtr.Zero)
       {
         if (ClassName.ToString() == "VsTextEditPane")
         {
           return true;
         }
       }
       return false;
     }

    This is the case if the keyboard focus belongs to a window with the class "VsTextEditPane".

    Next, we are (almost) ready to highlight the matching braces:

    private void Highlight()
    {
      try
      {
        TextSelection ts = 
          (TextSelection)_applicationObject.ActiveDocument.Selection;
          if (!ts.IsEmpty)
          {
            return;
          }
            
        //create an edit point on the current cursor position
        EditPoint ep = ts.ActivePoint.CreateEditPoint();
            
    
        //get the letter on the left side of the cursor
        String s = ep.GetText(-1);
            
        //check if it is one of the braces: '{[( }])'
        String pattern = "({|}|\\[|\\]|\\(|\\))";
        if (System.Text.RegularExpressions.Regex.IsMatch(s, pattern))
        {
          //select the brace and rewrite it, 
          //this will trigger the matching braces 
          //functionality from Visual Studio
          ts.CharLeft(true, 1);
          ts.Text = s;
        }
      }
      catch
      {
      }
    }

    Of course, it is first necessary to check if the cursor (returned by ts.ActivePoint.CreateEditPoint()) is on the right side of a brace, using GetText(-1) and a Regex which will match for all braces. If 'Yes', the brace will be selected using ts.CharLeft(true, 1) and replaced with a new one. This will trigger the built-in brace matching functionality of Visual Studio.

  • Avoid adding the input of the braces into the undo-list:

    Everything between the call of _applicationObject.UndoContext.Open() and _applicationObject.UndoContext.SetAborted() will not be visible in the undo-list.

  • Avoid visible page scrolling:

    After calling UndoContext.SetAborted(), the cursor will jump to the last position before UndoContext.Open() was called. It is necessary to move the page back to the current position. To hide this movement from the user, it is necessary to forbid the updating of the editor window by using: SendMessage(EditorWindowHwnd, WM_SETREDRAW, (IntPtr)0, (IntPtr)0). If everything is finished, window updating could be re-enabled using SendMessage(EditorWindowHwnd, WM_SETREDRAW, (IntPtr)1, (IntPtr)0).

Limitations

The add-in needs to rewrite the brace. This modifies the text as long as the cursor is near a brace. If you move the cursor away, the text is not modified anymore.

Conclusion

This is an essential feature for every text editor.

History

  • 0.3:
    • new version fixing problem with visible page scrolling
  • 0.2:
    • The add-in no longer modifies the undo-list.
    • The text is only modified as long as the cursor is near a brace.
    • Lot of internal changes.
  • 0.1:
    • Initial release.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPL)

About the Author

Jochen Baier


Member

Location: Germany Germany

Other popular Macros and Add-ins articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 22 of 22 (Total in Forum: 22) (Refresh)FirstPrevNext
GeneralMy vote of 1 Pinmembersalocin_4:50 2 Jul '09  
GeneralVS2008 SP1 PinmemberVEMS3:15 30 Apr '09  
Generalchances to get this working with visual basic in VS 2k8 as well? Pinmembertomtom198022:20 2 Apr '09  
GeneralColor Highliight [modified] Pinmemberameliaamelia16:57 26 Mar '09  
GeneralVery useful Pinmembersprice863:50 20 Feb '09  
QuestionCan this work for .Net 2003? It seems not to! PinmemberJelena Curcic22:46 12 Feb '09  
Questionnot working in Visual C++ Express Pinmembertorys15:13 26 Oct '08  
AnswerRe: not working in Visual C++ Express PinmemberJochen Baier1:51 28 Oct '08  
AnswerRe: not working in Visual C++ Express PinmemberQwertie10:53 11 Nov '08  
GeneralRe: not working in Visual C++ Express Pinmembertorys7:00 15 Nov '08  
GeneralNice idea, but how about something more useful? Pinmembertonyt14:34 27 Sep '08  
GeneralRe: Nice idea, but how about something more useful? PinmemberJochen Baier14:52 27 Sep '08  
GeneralHow to install into VS2005 Pinmemberlefis23:26 15 Sep '08  
GeneralRe: How to install into VS2005 Pinmemberpulp_43464943:43 16 Sep '08  
GeneralGood idea, except for... PinmemberRobo3:48 1 Sep '08  
GeneralRe: Good idea, except for... Pinmemberpulp_434649415:56 1 Sep '08  
GeneralRe: Good idea, except for... PinmemberRobo22:41 2 Sep '08  
GeneralThe file is changed when the bracket is highlighted PinmemberMember 49072421:38 31 Aug '08  
GeneralRe: The file is changed when the bracket is highlighted Pinmemberpulp_434649415:50 1 Sep '08  
Generalporting to VS 2005 Pinmemberalterloewe8:54 31 Aug '08  
GeneralRe: porting to VS 2005 Pinmemberpulp_43464949:05 31 Aug '08  
GeneralRe: porting to VS 2005 Pinmemberalterloewe20:57 31 Aug '08  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 5 Nov 2008
Editor: Sean Ewington
Copyright 2008 by Jochen Baier
Everything else Copyright © CodeProject, 1999-2009
Web16 | Advertise on the Code Project