aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Scripting/Tango.Scripting.Editors/Highlighting/IHighlightingDefinitionReferenceResolver.cs
blob: d378ae1b711e5359d553aaac9943239d0118c616 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)

using System;

namespace Tango.Scripting.Editors.Highlighting
{
	/// <summary>
	/// Interface for resolvers that can solve cross-definition references.
	/// </summary>
	public interface IHighlightingDefinitionReferenceResolver
	{
		/// <summary>
		/// Gets the highlighting definition by name, or null if it is not found.
		/// </summary>
		IHighlightingDefinition GetDefinition(string name);
	}
}
"> System.Windows.Media.Imaging; using Tango.BL.Entities; using Tango.BL.Enumerations; using Tango.MachineStudio.Common; using Tango.MachineStudio.Technician.Views; using Tango.SharedUI.Helpers; namespace Tango.MachineStudio.Technician { /// <summary> /// Represents a machine studio technician module. /// </summary> /// <seealso cref="Tango.MachineStudio.Common.IStudioModule" /> [StudioModule(1)] public class TechnicianModule : StudioModuleBase { /// <summary> /// Gets the module name. /// </summary> public override string Name => "Tech Board"; /// <summary> /// Gets the module description. /// </summary> public override string Description => "Provides access to low level machine components by exposing diagnostics and profiling tools."; /// <summary> /// Gets the module cover image. /// </summary> public override BitmapSource Image => ResourceHelper.GetImageFromResources("Images/technician.jpg"); /// <summary> /// Gets the module entry point view type. /// </summary> public override Type MainViewType { get { return typeof(MachineTechView); } } /// <summary> /// Gets the permission required to see and load this module. /// </summary> public override Permissions Permission => Permissions.RunTechBoardModule; /// <summary> /// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. /// </summary> public override void Dispose() { } } }