-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFastCode.xml
More file actions
396 lines (394 loc) · 18.5 KB
/
FastCode.xml
File metadata and controls
396 lines (394 loc) · 18.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
<?xml version="1.0"?>
<doc>
<assembly>
<name>FastCode</name>
</assembly>
<members>
<member name="T:CodeNavigator.AutoComplete">
<summary>
</summary>
</member>
<member name="M:CodeNavigator.AutoComplete.GetShortcuts">
<summary>
get the shurtcuts defined
</summary>
<returns></returns>
</member>
<member name="M:CodeNavigator.AutoComplete.DoAutoComplete(EnvDTE.TextSelection,System.String)">
<summary>
TODO: move to separate class
</summary>
<param name="selection"></param>
<param name="Keypress"></param>
<returns></returns>
</member>
<member name="M:CodeNavigator.AutoComplete.AddFileExt(System.String)">
<summary>
Add a file extension that is used with this autocomplete object
</summary>
<param name="ext">file extension without "."</param>
</member>
<member name="M:CodeNavigator.ClassRefactor.SplitReverse(System.String,System.Char,System.String@,System.String@)">
<summary>
Split string at last pos of delim and return first and second part.
</summary>
<param name="s"></param>
<param name="delim"></param>
<param name="first"></param>
<param name="second"></param>
<returns>if delim was found</returns>
</member>
<member name="M:CodeNavigator.VsCommand.#ctor(FastCode,System.String,System.String,System.Int32)">
<summary>
A VS command that can be registered and handles actions
</summary>
<param name="fastCode"></param>
<param name="name"></param>
<param name="toolTip"></param>
<param name="iconIdx"></param>
</member>
<member name="M:CodeNavigator.VsCommand.Register(Microsoft.VisualStudio.CommandBars.CommandBarPopup,Microsoft.VisualStudio.CommandBars.CommandBar)">
<summary>
Register at VS
</summary>
</member>
<member name="M:CodeNavigator.VsCommand.AddNamedCommand(System.Int32)">
<summary>
Add a named command to the IDE
</summary>
<param name="commandStyleFlags"></param>
<returns></returns>
</member>
<member name="M:CodeNavigator.VsCommand.Exec">
<summary>
Execute the command
</summary>
<returns>true if command was handled</returns>
</member>
<member name="M:CodeNavigator.CodeAnalyzer.ExtractUntil(System.String,System.Int32@,System.Char)">
<summary>
returns string starting at pStart until (excluding) lookup
pStart then points to the next char after the returned string
</summary>
<param name="text"></param>
<param name="pStart"></param>
<param name="lookup"></param>
<returns></returns>
</member>
<member name="M:CodeNavigator.CodeAnalyzer.SkipBlock(System.String,System.Int32@,System.Char,System.Char)">
<summary>
Skip a block starting with openBrace and ending with closeBrace
</summary>
<param name="text"></param>
<param name="pStart">Should point to the opening brace or before it.
After execution it points to the begin of the block (first char after '{' ).</param>
<param name="openBrace"></param>
<param name="closeBrace"></param>
<returns>the position of the closing brace.</returns>
</member>
<member name="M:CodeNavigator.CodeAnalyzer.SkipBlockReverse(System.String,System.Int32@,System.Char,System.Char)">
<summary>
Skip a block starting with openBrace and ending with closeBrace
</summary>
<param name="text"></param>
<param name="pStart">Should point to the closing brace or after it.
After execution it points to the end of the block (last char before '}' ).</param>
<param name="openBrace"></param>
<param name="closeBrace"></param>
<returns>the position of the opening brace.</returns>
</member>
<member name="M:CodeNavigator.CodeAnalyzer.ExtractUntilReverse(System.String,System.Int32@,System.Char)">
<summary>
returns the string between lookup and pStart
pStart then points to the begin of the string
</summary>
<param name="text"></param>
<param name="pStart"></param>
<param name="lookup"></param>
<returns></returns>
</member>
<member name="M:CodeNavigator.CodeAnalyzer.ExtractUntilReverse(System.String,System.Int32@,System.Char[])">
<summary>
returns the string between lookup and pStart
pStart then points to the begin of the string
</summary>
<param name="text"></param>
<param name="pStart"></param>
<param name="lookup"></param>
<returns></returns>
</member>
<member name="M:CodeNavigator.CodeAnalyzer.ExtractUntilReverseOrStart(System.String,System.Int32@,System.Char[])">
<summary>
returns the string between lookup and pStart
pStart then points to the begin of the string
</summary>
<param name="text"></param>
<param name="pStart"></param>
<param name="lookup"></param>
<returns></returns>
</member>
<member name="M:CodeNavigator.CodeAnalyzer.FindFirstClassDef(System.String)">
<summary>
looks for the first def. of a class within code
will not remove comments
</summary>
<param name="code"></param>
<returns>index of first char of the "class" keyword</returns>
</member>
<member name="M:CodeNavigator.CodeAnalyzer.NextId(System.String,System.String[],System.String,System.Int32)">
<summary>
Find full qualified ID. If nameSpace is given, it will check
for correct namespace definitions or usings
</summary>
<param name="code"></param>
<param name="nameSpace"></param>
<param name="ID"></param>
<param name="pos"></param>
<returns></returns>
</member>
<member name="M:CodeNavigator.CodeItem.GetProjectItemIgnoreExt(EnvDTE.ProjectItems,System.String)">
<summary>
Lookup name in items and ignore the file extension
</summary>
<param name="items"></param>
<param name="name"></param>
<returns></returns>
</member>
<member name="M:CodeNavigator.CodeItem.GetText(System.Object)">
<summary>
Get the selected text from the beginning of the document until the
given position.
</summary>
<param name="until">position in document or null to return the entire doc</param>
<returns></returns>
</member>
<member name="M:CodeNavigator.CodeItem.ReplaceWord(System.String,System.String)">
<summary>
Use this only if set content is the only operation! If using
multiple of such operations, the content will be read and written
multiple times.
</summary>
<param name="oldWord"></param>
<param name="newWord"></param>
</member>
<member name="M:CodeNavigator.CodeItem.ContainsWord(EnvDTE.ProjectItem,System.String)">
<summary>
Returns the code of the item if it contains the requested identifier
</summary>
<param name="item"></param>
<param name="name"></param>
<returns></returns>
</member>
<member name="M:CodeNavigator.CodeItem.RenameFiles(System.String)">
<summary>
Rename all related files according to the new item name (e.g., the new class name)
</summary>
<param name="newItemName"></param>
</member>
<member name="M:CodeNavigator.CodeItemCpp.ReplaceWordInClass(System.String,System.String)">
<summary>
replace in both, cpp and header
</summary>
<param name="oldWord"></param>
<param name="newWord"></param>
</member>
<member name="M:CodeNavigator.DocumentHandler.GetCurrentProject">
<summary>
get the active project
</summary>
<returns></returns>
</member>
<member name="M:CodeNavigator.DocumentHandler.ExtractClass">
<summary>
extract class refactoring for the current selection
</summary>
<returns></returns>
</member>
<member name="M:CodeNavigator.DocumentHandler.NewClass(System.String,System.Boolean)">
<summary>
Create new class according to namespace at current cursor location.
If a single word is selected, this will be used as the name of the
class.
</summary>
<param name="content"></param>
<param name="bExtract"></param>
<returns></returns>
</member>
<member name="M:CodeNavigator.DocumentHandler.AddFileExt(System.String)">
<summary>
Add a file extension that is used with this autocomplete object
</summary>
<param name="ext">file extension without "."</param>
</member>
<member name="M:CodeNavigator.DocumentHandler.HandlesFileExt(System.String)">
<summary>
returns whether this object handles the given document based
on the documents file extension
</summary>
<param name="ext">file extension in lower case without "."</param>
<returns></returns>
</member>
<member name="T:FastCode">
<summary>The object for implementing an Add-in.</summary>
<seealso class='IDTExtensibility2' />
</member>
<member name="M:FastCode.#ctor">
<summary>Implements the constructor for the Add-in object. Place your initialization code within this method.</summary>
</member>
<member name="M:FastCode.OnConnection(System.Object,Extensibility.ext_ConnectMode,System.Object,System.Array@)">
<summary>Implements the OnConnection method of the IDTExtensibility2 interface. Receives notification that the Add-in is being loaded.</summary>
<param term='application'>Root object of the host application.</param>
<param term='connectMode'>Describes how the Add-in is being loaded.</param>
<param term='addInInst'>Object representing this Add-in.</param>
<seealso class='IDTExtensibility2' />
</member>
<member name="M:FastCode.OnDisconnection(Extensibility.ext_DisconnectMode,System.Array@)">
<summary>Implements the OnDisconnection method of the IDTExtensibility2 interface. Receives notification that the Add-in is being unloaded.</summary>
<param term='disconnectMode'>Describes how the Add-in is being unloaded.</param>
<param term='custom'>Array of parameters that are host application specific.</param>
<seealso class='IDTExtensibility2' />
</member>
<member name="M:FastCode.OnAddInsUpdate(System.Array@)">
<summary>Implements the OnAddInsUpdate method of the IDTExtensibility2 interface. Receives notification when the collection of Add-ins has changed.</summary>
<param term='custom'>Array of parameters that are host application specific.</param>
<seealso class='IDTExtensibility2' />
</member>
<member name="M:FastCode.OnStartupComplete(System.Array@)">
<summary>Implements the OnStartupComplete method of the IDTExtensibility2 interface. Receives notification that the host application has completed loading.</summary>
<param term='custom'>Array of parameters that are host application specific.</param>
<seealso class='IDTExtensibility2' />
</member>
<member name="M:FastCode.OnBeginShutdown(System.Array@)">
<summary>Implements the OnBeginShutdown method of the IDTExtensibility2 interface. Receives notification that the host application is being unloaded.</summary>
<param term='custom'>Array of parameters that are host application specific.</param>
<seealso class='IDTExtensibility2' />
</member>
<member name="M:FastCode.QueryStatus(System.String,EnvDTE.vsCommandStatusTextWanted,EnvDTE.vsCommandStatus@,System.Object@)">
<summary>Implements the QueryStatus method of the IDTCommandTarget interface. This is called when the command's availability is updated</summary>
<param term='commandName'>The name of the command to determine state for.</param>
<param term='neededText'>Text that is needed for the command.</param>
<param term='status'>The state of the command in the user interface.</param>
<param term='commandText'>Text requested by the neededText parameter.</param>
<seealso class='Exec' />
</member>
<member name="M:FastCode.Exec(System.String,EnvDTE.vsCommandExecOption,System.Object@,System.Object@,System.Boolean@)">
<summary>Implements the Exec method of the IDTCommandTarget interface. This is called when the command is invoked.</summary>
<param term='commandName'>The name of the command to execute.</param>
<param term='executeOption'>Describes how the command should be run.</param>
<param term='varIn'>Parameters passed from the caller to the command handler.</param>
<param term='varOut'>Parameters passed from the command handler to the caller.</param>
<param term='handled'>Informs the caller if the command was handled or not.</param>
<seealso class='Exec' />
</member>
<member name="M:FastCode.GetDocumentHandler">
<summary>
Get the event handler for the current document.
</summary>
<returns></returns>
</member>
<member name="T:CodeNavigator.ShortcutListWindow">
<summary>
Interaction logic for UserControl1.xaml
</summary>
<summary>
ShortcutListWindow
</summary>
</member>
<member name="M:CodeNavigator.ShortcutListWindow.#ctor">
<summary>
Create an empty dialog to list files in the curren project
</summary>
</member>
<member name="M:CodeNavigator.ShortcutListWindow.Add(CodeNavigator.Shortcut)">
<summary>
Add a shortcut to the dialog
</summary>
<param name="shortcut"></param>
</member>
<member name="M:CodeNavigator.ShortcutListWindow.InitializeComponent">
<summary>
InitializeComponent
</summary>
</member>
<member name="M:CodeNavigator.CodeGenerator.Create(System.String)">
<summary>
Create an instance
</summary>
<param name="language">the language ("cpp", "cs", TBD)</param>
<returns></returns>
</member>
<member name="M:CodeNavigator.CodeItemCppHeader.GetMethodDecl(CodeNavigator.MethodImpl)">
<summary>
Get the decl from code, which corresponds to the given impl.
</summary>
<param name="impl"></param>
<returns></returns>
</member>
<member name="M:CodeNavigator.MethodImpl.#ctor(System.String,System.String,System.String,System.String,System.String,System.String)">
<summary>
Create a method impl.
</summary>
<param name="retType">return type (TODO: currently includes templ. def)</param>
<param name="name">name of method (excluding class name)</param>
<param name="args">arguments (excluding '(' and ')')</param>
<param name="modifiers">list of modifiers</param>
<param name="init">initializer in ctors</param>
<param name="body">method body (excluding '{' and '}')</param>
</member>
<member name="T:CodeNavigator.Shortcut">
<summary>Implements a shortcut the is identified by the text typed to create it.</summary>
</member>
<member name="M:CodeNavigator.Shortcut.#ctor(System.String,System.String)">
<summary>
Create a new shortcut
</summary>
<param name="shortcut">the key to lookup while typing</param>
<param name="text">the replaced text</param>
</member>
<member name="M:CodeNavigator.Shortcut.PartialMatch(System.String)">
<summary>
returns true if the shortcut ends with str
</summary>
<param name="str"></param>
<returns></returns>
</member>
<member name="P:CodeNavigator.Shortcut.shortcut">
<summary>
The the key to lookup while typing
</summary>
</member>
<member name="P:CodeNavigator.Shortcut.text">
<summary>
The text of the shortcut that replaces the typed key
</summary>
</member>
<member name="P:CodeNavigator.Shortcut.cursor">
<summary>
the position of the cursor in the replaced text
</summary>
</member>
<member name="T:CodeNavigator.Shortcuts">
<summary>
A lsit of shortcuts for a language
</summary>
</member>
<member name="M:CodeNavigator.Shortcuts.#ctor(System.String)">
<summary>
Shortcuts for the given language
</summary>
<param name="language"></param>
</member>
<member name="M:CodeNavigator.Shortcuts.AddShortcut(System.String,System.String)">
<summary>
Add a new shortcut
</summary>
<param name="shortcutKey">the key used for completion</param>
<param name="text">the replacement text</param>
</member>
<member name="P:CodeNavigator.Shortcuts.Language">
<summary>
the language these shortcuts are used for
</summary>
</member>
</members>
</doc>