freeso/TSOClient/FSO.IDE/EditorComponent/Primitives/RefreshDescriptor.cs
riperiperi b57ebbd141 Cleanup: Remove most unused usings and MPL per-file licenses
MPL per-file was used in older project files, but should apply to the whole project, so having it there was redundant.
2023-11-25 03:45:29 +00:00

37 lines
1.7 KiB
C#

using FSO.Files.Formats.IFF.Chunks;
using FSO.IDE.EditorComponent.Model;
using FSO.IDE.EditorComponent.OperandForms;
using FSO.IDE.EditorComponent.OperandForms.DataProviders;
using FSO.SimAntics.Primitives;
using System;
using System.Text;
using System.Windows.Forms;
namespace FSO.IDE.EditorComponent.Primitives
{
public class RefreshDescriptor : PrimitiveDescriptor
{
public override PrimitiveGroup Group { get { return PrimitiveGroup.Looks; } }
public override PrimitiveReturnTypes Returns { get { return PrimitiveReturnTypes.Done; } }
public override Type OperandType { get { return typeof(VMRefreshOperand); } }
public override string GetBody(EditorScope scope)
{
var op = (VMRefreshOperand)Operand;
var result = new StringBuilder();
result.Append(EditorScope.Behaviour.Get<STR>(211).GetString(op.TargetObject));
result.Append(" ");
result.Append(EditorScope.Behaviour.Get<STR>(212).GetString(op.RefreshType));
return result.ToString();
}
public override void PopulateOperandView(BHAVEditor master, EditorScope escope, TableLayoutPanel panel)
{
panel.Controls.Add(new OpLabelControl(master, escope, Operand,
new OpStaticTextProvider("Refreshes the specified property of the object on demand.")));
panel.Controls.Add(new OpComboControl(master, escope, Operand, "Target Object:", "TargetObject", new OpStaticNamedPropertyProvider(EditorScope.Behaviour.Get<STR>(211))));
panel.Controls.Add(new OpComboControl(master, escope, Operand, "Property:", "RefreshType", new OpStaticNamedPropertyProvider(EditorScope.Behaviour.Get<STR>(212))));
}
}
}