Files
mRemoteNG/mRemoteV1/Connection/PuttySessionInfo.cs
Sean Kaim e92a76f95b "return ;" annoyed me...
And I did a find and replace in the solution instead of the one file I
was working on... So I'm going with it...
2017-01-11 16:56:14 -05:00

114 lines
2.9 KiB
C#

using mRemoteNG.App;
using mRemoteNG.Messages;
using mRemoteNG.Tools;
using System;
using System.ComponentModel;
using mRemoteNG.Connection.Protocol;
using mRemoteNG.Tree;
using mRemoteNG.Tree.Root;
namespace mRemoteNG.Connection
{
public class PuttySessionInfo : ConnectionInfo, IComponent
{
#region Properties
[Browsable(false)]
public RootPuttySessionsNodeInfo RootRootPuttySessionsInfo { get; set; }
[ReadOnly(true)]
public override string PuttySession { get; set; }
[ReadOnly(true)]
public override string Name { get; set; }
[ReadOnly(true), Browsable(false)]
public override string Description { get; set; }
[ReadOnly(true), Browsable(false)]
public override string Icon
{
get { return "PuTTY"; }
set { }
}
[ReadOnly(true), Browsable(false)]
public override string Panel
{
get { return Parent?.Panel; }
set { }
}
[ReadOnly(true)]
public override string Hostname { get; set; }
[ReadOnly(true)]
public override string Username { get; set; }
[ReadOnly(true), Browsable(false)]
public override string Password { get; set; }
[ReadOnly(true)]
public override ProtocolType Protocol { get; set; }
[ReadOnly(true)]
public override int Port { get; set; }
[ReadOnly(true), Browsable(false)]
public override string PreExtApp { get; set; }
[ReadOnly(true), Browsable(false)]
public override string PostExtApp { get; set; }
[ReadOnly(true), Browsable(false)]
public override string MacAddress { get; set; }
[ReadOnly(true), Browsable(false)]
public override string UserField { get; set; }
#endregion
[Command(),LocalizedAttributes.LocalizedDisplayName("strPuttySessionSettings")]
public void SessionSettings()
{
try
{
var puttyProcess = new PuttyProcessController();
if (!puttyProcess.Start())
{
return;
}
if (puttyProcess.SelectListBoxItem(PuttySession))
{
puttyProcess.ClickButton("&Load");
}
puttyProcess.SetControlText("Button", "&Cancel", "&Close");
puttyProcess.SetControlVisible("Button", "&Open", false);
}
catch (Exception ex)
{
Runtime.MessageCollector.AddMessage(MessageClass.ErrorMsg, Language.strErrorCouldNotLaunchPutty + Environment.NewLine + ex.Message);
}
}
public override TreeNodeType GetTreeNodeType()
{
return TreeNodeType.PuttySession;
}
#region IComponent
[Browsable(false)]
public ISite Site
{
get { return new PropertyGridCommandSite(this); }
set { throw (new NotImplementedException()); }
}
public void Dispose()
{
Disposed?.Invoke(this, EventArgs.Empty);
}
public event EventHandler Disposed;
#endregion
}
}