#region License Information
/* HeuristicLab
* Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
*
* This file is part of HeuristicLab.
*
* HeuristicLab is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* HeuristicLab is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with HeuristicLab. If not, see .
*/
#endregion
using System;
using System.Drawing;
using System.Threading;
using System.Windows.Forms;
using HeuristicLab.Common;
using HeuristicLab.Common.Resources;
using HeuristicLab.MainForm;
namespace HeuristicLab.Scripting.Views {
[View("Executable Script View")]
[Content(typeof(ExecutableScript), true)]
public partial class ExecutableScriptView : ScriptView {
private const string ScriptExecutionStartedMessage = "Script execution started";
private const string ScriptExecutionCanceledMessage = "Script execution canceled";
private const string ScriptExecutionSuccessfulMessage = "Script execution successful";
private const string ScriptExecutionFailedMessage = "Script execution failed";
protected bool Running {
get { return Content.Running; }
}
public new ExecutableScript Content {
get { return (ExecutableScript)base.Content; }
set { base.Content = value; }
}
public ExecutableScriptView() {
InitializeComponent();
}
protected override void RegisterContentEvents() {
base.RegisterContentEvents();
Content.ScriptExecutionStarted += ContentOnScriptExecutionStarted;
Content.ScriptExecutionFinished += ContentOnScriptExecutionFinished;
Content.ExecutionTimeChanged += ContentOnExecutionTimeChanged;
}
protected override void DeregisterContentEvents() {
Content.ScriptExecutionStarted -= ContentOnScriptExecutionStarted;
Content.ScriptExecutionFinished -= ContentOnScriptExecutionFinished;
Content.ExecutionTimeChanged -= ContentOnExecutionTimeChanged;
base.DeregisterContentEvents();
}
#region Event Handlers
protected virtual void ContentOnScriptExecutionStarted(object sender, EventArgs e) {
if (InvokeRequired)
Invoke((Action