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: 5567c5ee4f87514b0d845cb5731f7b6b5c604775 (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
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
<ExtensionModel>
	
	<Runtime>
		<Import assembly="Xamarin.Mac.dll" />
		<ScanExclude path="Xamarin.Mac.dll" />
	</Runtime>

	<Extension path = "/MonoDevelop/Core/PlatformService">
		<Condition id = "Platform" value = "mac">
			<Class id      = "PlatformService"
			       class   = "MonoDevelop.MacIntegration.MacPlatformService"/>
		</Condition>
	</Extension>
	
	<Extension path = "/MonoDevelop/Ide/Commands/Window">
		<Condition id = "Platform" value = "mac">
			<Command id  = "MonoDevelop.MacIntegration.MacIntegrationCommands.MinimizeWindow"
					defaultHandler = "MonoDevelop.MacIntegration.MacMinimizeWindowHandler"
					_label = "_Minimize"
					_description = "Minimize the Window"
					macShortcut = "Meta|M" />
			<Command id  = "MonoDevelop.MacIntegration.MacIntegrationCommands.ZoomWindow"
					defaultHandler = "MonoDevelop.MacIntegration.MacZoomWindowHandler"
					_label = "_Zoom"
					_description = "Zoom the Window"/>
			<Command id  = "MonoDevelop.MacIntegration.MacIntegrationCommands.HideWindow"
					defaultHandler = "MonoDevelop.MacIntegration.MacHideWindowHandler"
					_label = "_Hide Application"
					_description = "Hide Application"
					macShortcut = "Meta|H" />
			<Command id  = "MonoDevelop.MacIntegration.MacIntegrationCommands.HideOthers"
					defaultHandler = "MonoDevelop.MacIntegration.MacHideOthersHandler"
					_label = "_Hide Others"
					_description = "Hide other applications' windows"
					macShortcut = "Meta|Alt|H" />
			<Command id  = "MonoDevelop.MacIntegration.MacIntegrationCommands.ShowOthers"
					defaultHandler = "MonoDevelop.MacIntegration.MacShowOthersHandler"
					_label = "Show All"
					_description = "Show all applications' windows" />
		</Condition>
	</Extension>
	
	<Extension path = "/MonoDevelop/Ide/Commands/Hidden">
		<Command id = "MonoDevelop.MacIntegration.MacIntegrationCommands.Services" _label="Services" />
	</Extension>

	<Extension path = "/MonoDevelop/Ide/MainMenu/Window">
		<Condition id = "Platform" value = "mac">
			<CommandItem id = "MonoDevelop.MacIntegration.MacIntegrationCommands.MinimizeWindow"
			             insertafter = "NxtPrvSeparator" />
			<CommandItem id = "MonoDevelop.MacIntegration.MacIntegrationCommands.ZoomWindow" />
			<SeparatorItem id = "winMinimizeSep" />
		</Condition>
	</Extension>
	
	<Extension path="/MonoDevelop/Ide/AppMenu">
		<Condition id = "Platform" value = "mac">
			<SeparatorItem id = "ServicesSeparator" insertbefore="QuitSeparator" />
			<CommandItem id = "MonoDevelop.MacIntegration.MacIntegrationCommands.Services" />
			<SeparatorItem id = "HideSeparator" insertbefore="QuitSeparator" />
			<CommandItem id = "MonoDevelop.MacIntegration.MacIntegrationCommands.HideWindow" />
			<CommandItem id = "MonoDevelop.MacIntegration.MacIntegrationCommands.HideOthers" />
			<CommandItem id = "MonoDevelop.MacIntegration.MacIntegrationCommands.ShowOthers" />
		</Condition>
	</Extension>
	
	<Extension path = "/MonoDevelop/Ide/Commands/Edit">
		<Command id = "MonoDevelop.MacIntegration.MacIntegrationCommands.OrderFrontCharacterPalette"
				defaultHandler = "MonoDevelop.MacIntegration.MacOrderFrontCharacterPaletteHandler"
				_label = "Emoji &amp; Symbols"
				macShortcut = "Control+Meta+Space" />
	</Extension>

	<Extension path = "/MonoDevelop/Ide/MainMenu/Edit">
		<CommandItem id = "MonoDevelop.MacIntegration.MacIntegrationCommands.OrderFrontCharacterPalette" insertafter = "Separator6" />
	</Extension>

	<Extension path = "/MonoDevelop/Components/DialogHandlers">
		<Condition id = "Platform" value = "mac">
			<Class class="MonoDevelop.MacIntegration.MacSelectFileDialogHandler" />
			<Class class="MonoDevelop.MacIntegration.MacAddFileDialogHandler" />
			<Class class="MonoDevelop.MacIntegration.MacOpenFileDialogHandler" />
			<Class class="MonoDevelop.MacIntegration.MacAlertDialogHandler" />
		</Condition>
	</Extension>

	<Extension path = "/MonoDevelop/Core/PasswordProvider">
		<Class class = "MonoDevelop.MacIntegration.MacKeychainPasswordProvider" />
	</Extension>
	
	<Extension path = "/MonoDevelop/Core/WebCredentialProviders">
		<Class class = "MonoDevelop.MacIntegration.MacProxyCredentialProvider" />
	</Extension>

	<Extension path = "/MonoDevelop/Core/StockIcons">
		<StockIcon stockid = "build" resource = "build.png" size="Menu" />
		<StockIcon stockid = "continue" resource = "continue.png" size="Menu" />
		<StockIcon stockid = "device" resource = "device.png" size="Menu" />
		<StockIcon stockid = "pause" resource = "pause.png" size="Menu" />
		<StockIcon stockid = "project" resource = "project.png" size="Menu" />
		<StockIcon stockid = "status-stop" resource = "status-stop-16.png" size="Menu" />
	</Extension>

	<Extension path = "/MonoDevelop/Core/HttpMessageHandlerProviders">
		<Class id = "NSUrlSessionHandlerProvider" class = "MonoDevelop.MacIntegration.MacHttpMessageHandlerProvider" />
	</Extension>
</ExtensionModel>