You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
941 B
39 lines
941 B
// <file> |
|
// <copyright see="prj:///doc/copyright.txt"/> |
|
// <license see="prj:///doc/license.txt"/> |
|
// <owner name="Daniel Grunwald" email="daniel@danielgrunwald.de"/> |
|
// <version>$Revision$</version> |
|
// </file> |
|
|
|
using System; |
|
using ICSharpCode.Core; |
|
|
|
namespace ICSharpCode.AddInManager |
|
{ |
|
#if !STANDALONE |
|
public class AddInInstallBinding : IDisplayBinding |
|
{ |
|
public bool CanCreateContentForFile(string fileName) |
|
{ |
|
return true; |
|
} |
|
|
|
public ICSharpCode.SharpDevelop.Gui.IViewContent CreateContentForFile(string fileName) |
|
{ |
|
ManagerForm.ShowForm(); |
|
ManagerForm.Instance.ShowInstallableAddIns(new string[] { fileName }); |
|
return null; |
|
} |
|
|
|
public bool CanCreateContentForLanguage(string languageName) |
|
{ |
|
return false; |
|
} |
|
|
|
public ICSharpCode.SharpDevelop.Gui.IViewContent CreateContentForLanguage(string languageName, string content) |
|
{ |
|
throw new NotImplementedException(); |
|
} |
|
} |
|
#endif |
|
}
|
|
|