-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
731 lines (709 loc) · 24.6 KB
/
plugin.xml
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
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="4.2"?>
<plugin>
<extension
point="org.eclipse.ui.perspectives">
<perspective
class="org.sasylf.perspectives.EditorPerspective"
icon="icons/releng_gears.gif"
id="org.sasylf.perspectives.EditorPerspective"
name="SASyLF">
</perspective>
</extension>
<extension
point="org.eclipse.ui.editors">
<editor
class="org.sasylf.editors.ProofEditor"
contributorClass="org.eclipse.ui.texteditor.BasicTextEditorActionContributor"
extensions="slf"
icon="icons/slf.gif"
id="org.sasylf.editors.ProofEditor"
name="SASyLF editor">
</editor>
</extension>
<extension
id="org.sasylf.marker"
point="org.eclipse.core.resources.markers">
<super
type="org.eclipse.core.resources.problemmarker">
</super>
<super
type="org.eclipse.core.resources.textmarker">
</super>
<persistent
value="true">
</persistent>
</extension>
<extension
id="org.sasylf.taskmarker"
point="org.eclipse.core.resources.markers">
<super
type="org.eclipse.core.resources.taskmarker">
</super>
<super
type="org.eclipse.core.resources.textmarker">
</super>
<persistent
value="true">
</persistent>
</extension>
<extension
point="org.eclipse.ui.handlers">
<handler
class="org.sasylf.handlers.CheckProofsHandler"
commandId="org.sasylf.commands.checkProofs">
</handler>
<handler
class="org.sasylf.handlers.AboutHandler"
commandId="org.sasylf.commands.about"/>
</extension>
<extension
point="org.eclipse.ui.bindings">
<key
commandId="org.sasylf.commands.checkProofs"
contextId="org.sasylf.context"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="M1+0">
</key>
<key
commandId="org.sasylf.commands.reindent"
contextId="org.sasylf.context"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="M1+I">
</key>
<key
commandId="org.sasylf.commands.addComment"
contextId="org.sasylf.context"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="M1+/">
</key>
<key
commandId="org.sasylf.commands.removeComment"
contextId="org.sasylf.context"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="M1+\">
</key>
</extension>
<extension
point="org.eclipse.ui.menus">
<menuContribution
locationURI="menu:org.eclipse.ui.main.menu?after=additions">
<menu
id="org.sasylf.menus.mainMenu"
label="SASyLF"
mnemonic="S">
<command
commandId="org.sasylf.commands.about"
mnemonic="A"/>
<command
commandId="org.sasylf.commands.togglenature"/>
<command
commandId="org.sasylf.commands.checkProofs"
id="org.sasylf.menus.checkProofs"
mnemonic="C">
</command>
<command
commandId="org.sasylf.commands.reindent"
id="org.sasylf.menus.reindent"
mnemonic="I"/>
<visibleWhen
checkEnabled="false">
<reference
definitionId="org.sasylf.inPerspective">
</reference>
</visibleWhen>
</menu>
</menuContribution>
<menuContribution
locationURI="toolbar:org.eclipse.ui.main.toolbar?after=additions">
<toolbar
id="org.sasylf.toolbars.sampleToolbar">
<command
commandId="org.sasylf.commands.checkProofs"
icon="icons/green_check.png"
id="org.sasylf.toolbars.checkProofs"
tooltip="Run SASyLF on proofs to find errors">
<visibleWhen
checkEnabled="false">
<reference
definitionId="org.sasylf.inPerspective">
</reference>
</visibleWhen>
</command>
</toolbar>
</menuContribution>
<menuContribution
allPopups="false"
locationURI="popup:org.eclipse.ui.popup.any?before=additions">
<separator
name="edits"
visible="true"/>
<separator name="imports" visible="true"/>
</menuContribution>
<menuContribution
allPopups="false"
locationURI="popup:org.eclipse.ui.popup.any?before=edits">
<command
commandId="org.sasylf.commands.open"
label="Open Declaration"
style="push"
tooltip="Go to declaration of named judgment or theorem">
<visibleWhen>
<and>
<with variable="activeEditorInput">
<reference definitionId="org.sasylf.isProofFile"/>
</with>
<with variable="selection">
<adapt type="org.eclipse.jface.text.ITextSelection"/>
</with>
</and>
</visibleWhen>
</command>
<menu
label="Refactor">
<command
commandId="org.sasylf.commands.renameTheorem"
label="Rename Theorem"
style="push"
tooltip="Rename a lemma or theorem">
<visibleWhen
checkEnabled="false">
<and>
<with
variable="activeEditorInput">
<reference
definitionId="org.sasylf.isProofFile">
</reference>
</with>
<with
variable="selection">
<adapt
type="org.eclipse.jface.text.ITextSelection">
</adapt>
</with>
</and>
</visibleWhen>
</command>
</menu>
</menuContribution>
<menuContribution
allPopups="false"
locationURI="popup:org.eclipse.ui.popup.any?before=edits">
<command
commandId="org.sasylf.commands.checkProofs"
icon="icons/green_check.png"
id="org.sasylf.popup.checkProofs"
label="Check Proofs"
style="push"
tooltip="Run SASyLF on proofs to find errors">
<visibleWhen>
<or>
<with variable="selection">
<iterate ifEmpty="false">
<reference definitionId="org.sasylf.isProofFile"/>
</iterate>
</with>
<with variable="activeEditorInput">
<reference definitionId="org.sasylf.isProofFile"/>
</with>
</or>
</visibleWhen>
</command>
</menuContribution>
<menuContribution
allPopups="false"
locationURI="popup:org.eclipse.ui.popup.any?after=edits">
<command
commandId="org.sasylf.commands.deletepackage"
label="Delete"
style="push"
icon="icons/delete.gif"
tooltip="Delete a package">
<visibleWhen>
<or>
<with variable="selection">
<iterate ifEmpty="false">
<instanceof value="org.sasylf.project.IPackageFragment"/>
</iterate>
</with>
</or>
</visibleWhen>
</command>
</menuContribution>
<menuContribution
allPopups="false"
locationURI="popup:org.eclipse.ui.popup.any?after=imports">
<command
commandId="org.eclipse.ui.file.import"
label="Import..."
style="push"
icon="icons/import_wiz.gif">
<visibleWhen>
<or>
<with variable="selection">
<iterate ifEmpty="false">
<instanceof value="org.sasylf.project.IPackageFragment"/>
</iterate>
</with>
</or>
</visibleWhen>
</command>
<command
commandId="org.eclipse.ui.file.export"
label="Export..."
style="push"
icon="icons/export_wiz.gif">
<visibleWhen>
<or>
<with variable="selection">
<iterate ifEmpty="false">
<instanceof value="org.sasylf.project.IPackageFragment"/>
</iterate>
</with>
</or>
</visibleWhen>
</command>
</menuContribution>
<menuContribution
allPopups="false"
locationURI="popup:org.eclipse.ui.popup.any?before=edits">
<command
commandId="org.sasylf.commands.new"
icon="icons/slf.gif"
id="org.sasylf.popup.newProof"
label="New SASyLF Proof"
style="push"
tooltip="Create a SASyLF proof file">
<visibleWhen>
<or>
<with variable="selection">
<iterate ifEmpty="false">
<instanceof value="org.sasylf.project.IPackageFragment"/>
</iterate>
</with>
</or>
</visibleWhen>
</command>
<command
commandId="org.sasylf.commands.newpackage"
icon="icons/package_obj.png"
id="org.sasylf.popup.newPackage"
label="New SASyLF Package"
style="push"
tooltip="Create a SASyLF proof package">
<visibleWhen>
<or>
<with variable="selection">
<iterate ifEmpty="false">
<instanceof value="org.sasylf.project.IPackageFragment"/>
</iterate>
</with>
</or>
</visibleWhen>
</command>
</menuContribution>
<menuContribution
allPopups="false"
locationURI="menu:new">
<command
commandId="org.sasylf.commands.newproject"
icon="icons/newsprj_wiz.png"
label="SASyLF Project"
mnemonic="J"
style="push"
tooltip="Create a new SASyLF project">
<visibleWhen
checkEnabled="false">
<reference
definitionId="org.sasylf.inPerspective">
</reference>
</visibleWhen>
</command>
<command
commandId="org.sasylf.commands.newpackage"
icon="icons/newpack_wiz.png"
label="SASyLF Package"
mnemonic="P"
style="push"
tooltip="Create a new SASyLF proof package">
<visibleWhen
checkEnabled="false">
<and>
<reference definitionId="org.sasylf.inPerspective"/>
<with variable="selection">
<iterate ifEmpty="false">
<adapt type="org.eclipse.core.resources.IResource">
<test property="org.eclipse.core.resources.projectNature"
value="org.sasylf.nature"/>
</adapt>
</iterate>
</with>
</and>
</visibleWhen>
</command>
<command
commandId="org.sasylf.commands.new"
icon="icons/slf.gif"
label="SASyLF Proof"
mnemonic="S"
style="push"
tooltip="Create a new SASyLF proof file">
<visibleWhen
checkEnabled="false">
<reference
definitionId="org.sasylf.inPerspective">
</reference>
</visibleWhen>
</command>
</menuContribution>
<menuContribution
allPopups="false"
locationURI="popup:#AbstractTextEditorRulerContext?after=QuickDiff.Toggle">
<command
commandId="org.eclipse.jdt.ui.edit.text.java.correction.assist.proposals"
label="Quick Fix"
style="push">
</command>
</menuContribution>
</extension>
<extension
point="org.eclipse.ui.commands">
<category
id="org.sasylf.commands.proofs"
name="Category of proof related commands">
</category>
<command
categoryId="org.sasylf.commands.proofs"
id="org.sasylf.commands.checkProofs"
name="Check Proofs">
</command>
<command
id="org.sasylf.commands.about"
name="About SASyLF"/>
<command
defaultHandler="org.sasylf.handlers.DeletePackageHandler"
id="org.sasylf.commands.deletepackage"
name="Delete Package"
description="Delete a package and all/any files in it."/>
<command
defaultHandler="org.sasylf.handlers.NewProofHandler"
description="Open dialog to create a new SASyLF proof file"
id="org.sasylf.commands.new"
name="New Proof ...">
</command>
<command
categoryId="org.sasylf.commands.proofs"
defaultHandler="org.sasylf.handlers.CorrectIndentationHandler"
description="Correct indentation of lines in selection"
id="org.sasylf.commands.reindent"
name="Correct Indentation">
</command>
<command
categoryId="org.sasylf.commands.proofs"
defaultHandler="org.sasylf.handlers.AddCommentHandler"
description="Comment out all lines selected (or current line)"
id="org.sasylf.commands.addComment"
name="Add Comment">
</command>
<command
categoryId="org.sasylf.commands.proofs"
defaultHandler="org.sasylf.handlers.RemoveCommentHandler"
description="Uncomment all lines selected (or current line)"
id="org.sasylf.commands.removeComment"
name="Remove Comment">
</command>
<command
defaultHandler="org.sasylf.handlers.OpenDeclarationHandler"
description="Go to the declaration of judgment or theorem"
id="org.sasylf.commands.open"
name="Open Declaration">
</command>
<command
defaultHandler="org.sasylf.handlers.NewProofPackageHandler"
description="Open a dialog to create new SASyLF package"
id="org.sasylf.commands.newpackage"
name="New package ...">
</command>
<command
defaultHandler="org.sasylf.handlers.NewProofProjectHandler"
description="Open a dialog to create new SASyLF project"
id="org.sasylf.commands.newproject"
name="New project ...">
</command>
<command
defaultHandler="org.sasylf.handlers.ToggleNatureHandler"
description="Turn off/on SASyLF Nature on selected project"
id="org.sasylf.commands.togglenature"
name="Toggle SASyLF Nature">
</command>
<command
defaultHandler="org.sasylf.refactor.RenameTheoremHandler"
description="Rename a lemma or theorem"
id="org.sasylf.commands.renameTheorem"
name="Rename Theorem">
</command>
</extension>
<extension
point="org.eclipse.core.expressions.definitions">
<definition
id="org.sasylf.isProofFile">
<with variable="activeEditorId">
<equals value="org.sasylf.editors.ProofEditor"/>
</with>
</definition>
<definition id="org.sasylf.inPerspective">
<with variable="activeWorkbenchWindow.activePerspective">
<equals value="org.sasylf.perspectives.EditorPerspective"/>
</with>
</definition>
</extension>
<extension
point="org.eclipse.ui.newWizards">
<category
id="org.sasylf.wizards"
name="SASyLF Wizards">
</category>
<wizard
category="org.sasylf.wizards"
class="org.sasylf.wizards.NewProofWizard"
icon="icons/slf.gif"
id="org.sasylf.wizards.newproof"
name="SASyLF Proof file"
project="false">
</wizard>
<wizard
category="org.sasylf.wizards"
class="org.sasylf.wizards.NewProofPackageWizard"
icon="icons/newpack_wiz.png"
id="org.sasylf.wizards.newpackage"
name="SASyLF Proof Package"
project="false">
</wizard>
</extension>
<extension
point="org.eclipse.ui.contexts">
<context
description="The context of SASyLF proof files"
id="org.sasylf.context"
name="SASyLF"
parentId="org.eclipse.ui.contexts.window">
</context>
</extension>
<extension
point="org.eclipse.ui.preferencePages">
<page
class="org.sasylf.preferences.PreferencePage"
id="org.sasylf.preferences.PreferencePage"
name="SASyLF Preferences">
</page>
<page
name="Colors"
category="org.sasylf.preferences.PreferencePage"
class="org.sasylf.preferences.PreferencePageColors"
id="org.sasylf.preferences.PreferencePageColors">
</page>
</extension>
<extension
point="org.eclipse.core.runtime.preferences">
<initializer
class="org.sasylf.preferences.PreferenceInitializer">
</initializer>
</extension>
<extension
point="org.eclipse.ui.ide.markerResolution">
<markerResolutionGenerator
class="org.sasylf.editors.MarkerResolutionGenerator"
markerType="org.sasylf.marker">
<attribute
name="org.sasylf.has.fix"
value="true">
</attribute>
</markerResolutionGenerator>
</extension>
<extension
id="nature"
name="SASyLF Project Nature"
point="org.eclipse.core.resources.natures">
<runtime>
<run
class="org.sasylf.project.MyNature">
</run>
</runtime>
<builder
id="org.sasylf.proofBuilder">
</builder>
</extension>
<extension
id="org.sasylf.proofBuilder"
name="SASyLF Project Builder"
point="org.eclipse.core.resources.builders">
<builder
hasNature="true">
<run
class="org.sasylf.project.ProofBuilder">
</run>
</builder>
</extension>
<extension
point="org.eclipse.ui.ide.projectNatureImages">
<image
icon="icons/proof_overlay.gif"
id="proof.overlay"
natureId="org.sasylf.nature">
</image>
</extension>
<extension
point="org.eclipse.ui.navigator.navigatorContent">
<navigatorContent
activeByDefault="true"
contentProvider="org.sasylf.project.MyContentProvider"
icon="icons/packagefolder_obj.png"
id="org.sasylf.project.navigator.content"
labelProvider="org.sasylf.project.MyLabelProvider"
name="Proof Navigator Content"
priority="higher">
<enablement>
<or>
<instanceof
value="org.eclipse.core.resources.IFolder">
</instanceof>
<instanceof value="org.eclipse.core.resources.IProject"/>
<instanceof
value="org.sasylf.project.IPackageFragment">
</instanceof>
<instanceof value="org.eclipse.core.resources.IFile"/>
</or>
</enablement>
<override
policy="InvokeAlwaysRegardlessOfSuppressedExt"
suppressedExtensionId="org.eclipse.ui.navigator.resourceContent">
</override>
<commonSorter
class="org.sasylf.project.MySorter">
<parentExpression>
<instanceof
value="org.eclipse.core.resources.IFolder">
</instanceof>
</parentExpression>
</commonSorter>
</navigatorContent>
<commonWizard
type="new"
wizardId="org.sasylf.wizards.newproject">
<enablement></enablement>
</commonWizard>
<commonWizard
type="new"
wizardId="org.sasylf.wizards.newpackage">
<enablement></enablement>
</commonWizard>
<commonWizard
type="new"
wizardId="org.sasylf.wizards.newproof">
<enablement></enablement>
</commonWizard>
</extension>
<extension
point="org.eclipse.ui.navigator.viewer">
<viewer
viewerId="org.eclipse.ui.navigator.ProjectExplorer">
</viewer>
<viewerContentBinding
viewerId="org.eclipse.ui.navigator.ProjectExplorer">
<includes>
<contentExtension
pattern="org.sasylf.project.navigator.content">
</contentExtension></includes>
</viewerContentBinding>
<viewerActionBinding
viewerId="org.sasylf.view.test">
<includes>
<actionExtension
pattern="org.eclipse.ui.navigator.resources.*">
</actionExtension>
</includes>
</viewerActionBinding>
</extension>
<extension
point="org.eclipse.ui.newWizards">
<wizard
category="org.sasylf.wizards"
class="org.sasylf.wizards.NewProjectWizard"
icon="icons/newsprj_wiz.png"
id="org.sasylf.wizards.newproject"
name="SASyLF Project"
project="true">
</wizard>
</extension>
<extension
point="org.eclipse.ui.propertyPages">
<page
class="org.sasylf.project.ProjectPropertyPage"
id="org.sasylf.project.properties"
name="SASyLF Properties">
<enabledWhen>
<and>
<instanceof
value="org.eclipse.core.resources.IProject">
</instanceof>
<test property="org.eclipse.core.resources.projectNature"
value="org.sasylf.nature"/>
</and>
</enabledWhen>
</page>
</extension>
<extension
point="org.eclipse.ltk.core.refactoring.moveParticipants">
<moveParticipant
class="org.sasylf.refactor.MoveProofFile"
id="org.sasylf.refactor.move"
name="Move SASyLF Proof File">
<enablement>
<instanceof value="org.eclipse.core.resources.IFile"/>
<test
property="org.eclipse.core.resources.name"
value="*.slf">
</test>
<with
variable="affectedNatures">
<iterate
operator="or">
<equals
value="org.sasylf.nature">
</equals>
</iterate>
</with></enablement>
</moveParticipant>
</extension>
<extension
point="org.eclipse.ltk.core.refactoring.renameParticipants">
<renameParticipant
class="org.sasylf.refactor.RenameProofModule"
id="org.sasylf.refactor.rename"
name="Rename SASyLF module">
<enablement>
<instanceof value="org.eclipse.core.resources.IFile"/>
<test
property="org.eclipse.core.resources.name"
value="*.slf">
</test>
<with
variable="affectedNatures">
<iterate
operator="or">
<equals
value="org.sasylf.nature">
</equals>
</iterate>
</with></enablement>
</renameParticipant>
</extension>
<extension
point="org.eclipse.ui.editors.documentProviders">
<provider
class="org.sasylf.util.ResourceDocumentProvider"
id="org.sasylf.editors.ResourceDocumentProvider"
inputTypes="org.sasylf.util.ResourceEditorInput">
</provider>
</extension>
</plugin>