DIY intellisense on XPath - design approach? (WinForms app)

Posted by Cheeso on Stack Overflow See other posts from Stack Overflow or by Cheeso
Published on 2009-09-25T16:42:53Z Indexed on 2011/01/03 16:53 UTC
Read the original article Hit count: 371

Filed under:
|
|
|
|

I read the DIY Intellisense article on code project, which was referenced from the Mimic Intellisense? question here on SO.

I wanna do something similar, DIY intellisense, but for XPath not C#.

The design approach used there makes sense to me: maintain a tree of terms, and when the "completion character" is pressed, in the case of C#, a dot, pop up the list of possible completions in a textfield. Then allow the user to select a term from the textfield either through typing, arrow keys, or double-click.

How would you apply this to XPath autocompletion?

  1. should there be an autocomplete key? In XPath there is no obvious separator key like "dot" in C#. should the popup be triggered explicitly in some other way, let's say ctrl-. ? or should the parser try to autocomplete continuously?

  2. If I do the autocomplete continuously, how to scale it properly? There are 93 xpath functions, not counting overloads. I certainly don't want to popup a list of 93 choices. How do I decide when I've narrowed it enough to offer a useful lsit of possible completions?

  3. How to populate the tree of possible completions? For C#, it's easy: walk the type space via reflection. At a first level, the "syntax tree" for C# seems like a single tree, and the list of completions at any point depends on the graph of nodes you've traversed to that point. Typing System.Console. traverses to a certain node in that tree, and the list of completions is the set of child nodes available at that node in the tree. On the other hand, the xpath syntax seems like it is a "flatter" tree - function names, axis names, literals. Does this make sense?

  4. what have I not considered?

© Stack Overflow or respective owner

Related posts about .NET

Related posts about winforms