Last-Modified: Fri, 26 Jun 2026 01:48:44 GMT Expires: Mon, 23 Jun 2036 01:48:44 GMT Tango - Twine softwares
aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Scripting/Tango.Scripting.Editors/CodeCompletion/InsightWindow.xaml
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Scripting/Tango.Scripting.Editors/CodeCompletion/InsightWindow.xaml')
0 files changed, 0 insertions, 0 deletions
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Media.Imaging;
using Tango.BL.Enumerations;
using Tango.MachineStudio.Common;
using Tango.MachineStudio.Logging.Views;
using Tango.SharedUI.Helpers;

namespace Tango.MachineStudio.Logging
{
    [StudioModule(5)]
    public class LoggingModule : StudioModuleBase
    {
        public override string Name
        {
            get
            {
                return "Logging";
            }
        }

        public override string Description
        {
            get
            {
                return "Monitor real-time machine hardware/software events and logs.";
            }
        }

        public override BitmapSource Image
        {
            get
            {
                return ResourceHelper.GetImageFromResources("Images/logging-module.png");
            }
        }

        /// <summary>
        /// Gets the module entry point view type.
        /// </summary>
        public override Type MainViewType
        {
            get
            {
                return typeof(MainView);
            }
        }

        public override Permissions Permission
        {
            get
            {
                return Permissions.RunLoggingModule;
            }
        }

        public override void Dispose()
        {
            
        }
    }
}