Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MacPlatform.addin.xml « MacPlatform « addins « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 45d0135115b8223cfa4167b026d30754c5beafec (plain)
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
<Addin id          = "MacPlatform"
       namespace   = "MonoDevelop"
       name        = "MonoDevelop Mac Platform Support"
       author      = "Geoff Norton, Michael Hutchinson"
       copyright   = "MIT X11"
       url         = "http://monodevelop.com/"
       description = "Mac Platform Support for MonoDevelop"
       category    = "Platform Support"
       flags       = "Hidden"
       version     = "2.9.6">
	
	<Runtime>
		<Import assembly="MonoMac.dll" />
		<ScanExclude path="MonoMac.dll" />
	</Runtime>

	<Dependencies>
	    <Addin id="Ide" version="2.9.6"/>
	</Dependencies>
	
	<Extension path = "/MonoDevelop/Core/PlatformService">
		<Class id      = "PlatformService"
		       class   = "MonoDevelop.MacIntegration.MacPlatformService"/>
	</Extension>
	
	<Extension path = "/MonoDevelop/Ide/Commands/Window">
		<Command id  = "MonoDevelop.MacIntegration.MacIntegrationCommands.MinimizeWindow"
				defaultHandler = "MonoDevelop.MacIntegration.MacMinimizeWindowHandler"
				_label = "_Minimize"
				_description = "Minimize the window" 
				macShortcut = "Meta|M" />
		<Command id  = "MonoDevelop.MacIntegration.MacIntegrationCommands.HideWindow"
				defaultHandler = "MonoDevelop.MacIntegration.MacHideWindowHandler"
				_label = "_Hide MonoDevelop"
				_description = "Hide MonoDevelop" 
				macShortcut = "Meta|H" />
		<Command id  = "MonoDevelop.MacIntegration.MacIntegrationCommands.HideOthers"
				defaultHandler = "MonoDevelop.MacIntegration.MacHideOthersHandler"
				_label = "_Hide Others"
				_description = "Hide other windows" 
				macShortcut = "Meta|Alt|H" />
	</Extension>
	
	<Extension path = "/MonoDevelop/Ide/MainMenu/Window">
		<CommandItem id = "MonoDevelop.MacIntegration.MacIntegrationCommands.MinimizeWindow"
		             insertbefore = "MonoDevelop.Ide.Commands.WindowCommands.NextWindow" />
	</Extension>
	
	<Extension path = "/MonoDevelop/Components/DialogHandlers">
		<Class class="MonoDevelop.MacIntegration.MacSelectFileDialogHandler" />
		<Class class="MonoDevelop.MacIntegration.MacAddFileDialogHandler" />
		<Class class="MonoDevelop.MacIntegration.MacOpenFileDialogHandler" />
		<Class class="MonoDevelop.MacIntegration.MacAlertDialogHandler" />
		<Class class="MonoDevelop.MacIntegration.MacExceptionDialogHandler" />
	</Extension>
</Addin>