├── .gitattributes ├── .gitignore ├── Connection.Internal ├── Connection.Internal.csproj ├── Connection.cs ├── ConnectionSetupForm.Designer.cs ├── ConnectionSetupForm.cs ├── ConnectionSetupForm.resx ├── DataItem.cs ├── Factory.cs ├── ItemSetupForm.Designer.cs ├── ItemSetupForm.cs ├── ItemSetupForm.resx └── Properties │ └── AssemblyInfo.cs ├── Connection.MQTT ├── Connection.MQTT.csproj ├── Connection.cs ├── ConnectionSetupForm.Designer.cs ├── ConnectionSetupForm.cs ├── ConnectionSetupForm.resx ├── DataItem.cs ├── Factory.cs ├── ItemSetupForm.Designer.cs ├── ItemSetupForm.cs ├── ItemSetupForm.resx ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── Connection.ModbusN ├── Connection.ModbusN.csproj ├── Connection.cs ├── ConnectionSetupForm.Designer.cs ├── ConnectionSetupForm.cs ├── ConnectionSetupForm.resx ├── DataItem.cs ├── EProtocol.cs ├── ERegisterType.cs ├── ETransportType.cs ├── Factory.cs ├── ItemSetupForm.Designer.cs ├── ItemSetupForm.cs ├── ItemSetupForm.resx ├── Properties │ ├── AssemblyInfo.cs │ └── licenses.licx └── packages.config ├── Connection.OPCUA ├── Connection.OPCUA.csproj ├── Connection.cs ├── ConnectionSetupForm.Designer.cs ├── ConnectionSetupForm.cs ├── ConnectionSetupForm.resx ├── DataItem.cs ├── ETransport.cs ├── Factory.cs ├── ItemSetupForm.Designer.cs ├── ItemSetupForm.cs ├── ItemSetupForm.resx ├── OPCNodesBrowserForm.Designer.cs ├── OPCNodesBrowserForm.cs ├── OPCNodesBrowserForm.resx ├── Opc.Ua.Client.dll ├── Opc.Ua.Core.dll ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ └── licenses.licx └── Resources │ └── Refresh.gif ├── Connection.S7IsoTCP ├── Connection.S7IsoTCP.csproj ├── Connection.cs ├── ConnectionSetupForm.Designer.cs ├── ConnectionSetupForm.cs ├── ConnectionSetupForm.resx ├── DataItem.cs ├── EArea.cs ├── EConnectionType.cs ├── EWordlen.cs ├── Factory.cs ├── ItemSetupForm.Designer.cs ├── ItemSetupForm.cs ├── ItemSetupForm.resx ├── Properties │ ├── AssemblyInfo.cs │ └── licenses.licx ├── snap7.dll └── snap7.net.cs ├── Connection.S7PLCSim ├── Connection.S7PLCSim.csproj ├── Connection.cs ├── ConnectionSetupForm.cs ├── ConnectionSetupForm.designer.cs ├── ConnectionSetupForm.resx ├── DataItem.cs ├── EPLCMemoryType.cs ├── Factory.cs ├── ItemSetupForm.Designer.cs ├── ItemSetupForm.cs ├── ItemSetupForm.resx └── Properties │ └── AssemblyInfo.cs ├── Connection.S7PLCSimAdv2 ├── Connection.S7PLCSimAdv2.csproj ├── Connection.cs ├── ConnectionSetupForm.Designer.cs ├── ConnectionSetupForm.cs ├── ConnectionSetupForm.resx ├── DataItem.cs ├── Factory.cs ├── ItemSetupForm.Designer.cs ├── ItemSetupForm.cs ├── ItemSetupForm.resx ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ ├── Filter.gif │ ├── Memory_C.gif │ ├── Memory_DB.gif │ ├── Memory_I.gif │ ├── Memory_M.gif │ ├── Memory_Q.gif │ ├── Memory_T.gif │ └── Refresh.gif ├── Siemens.Simatic.Simulation.Runtime.Api.x86.dll ├── TagBrowserForm.Designer.cs ├── TagBrowserForm.cs └── TagBrowserForm.resx ├── Converter.Compare ├── Converter.Compare.csproj ├── Converter.cs ├── Properties │ └── AssemblyInfo.cs ├── SetupForm.Designer.cs ├── SetupForm.cs └── SetupForm.resx ├── Converter.FilterExp ├── Converter.FilterExp.csproj ├── Converter.cs ├── Properties │ └── AssemblyInfo.cs ├── SetupForm.Designer.cs ├── SetupForm.cs └── SetupForm.resx ├── Converter.Inverse ├── Converter.Inverse.csproj ├── Converter.cs ├── Properties │ └── AssemblyInfo.cs ├── SetupForm.Designer.cs ├── SetupForm.cs └── SetupForm.resx ├── Converter.Round ├── Converter.Round.csproj ├── Converter.cs ├── Properties │ ├── AssemblyInfo.cs │ └── licenses.licx ├── SetupForm.Designer.cs ├── SetupForm.cs └── SetupForm.resx ├── Converter.Scale ├── Converter.Scale.csproj ├── Converter.cs ├── Properties │ └── AssemblyInfo.cs ├── SetupForm.Designer.cs ├── SetupForm.cs └── SetupForm.resx ├── Converter.ToBoolean ├── Converter.ToBoolean.csproj ├── Converter.cs ├── Properties │ ├── AssemblyInfo.cs │ └── licenses.licx ├── SetupForm.Designer.cs ├── SetupForm.cs └── SetupForm.resx ├── Converter.ToString ├── Converter.ToString.csproj ├── Converter.cs ├── Properties │ └── AssemblyInfo.cs ├── SetupForm.Designer.cs ├── SetupForm.cs └── SetupForm.resx ├── Process Simulator 2 OpenSource.sln ├── README.md ├── SimulationObject.Animation.ImageMove ├── Move.cs ├── OptionsForm.Designer.cs ├── OptionsForm.cs ├── OptionsForm.resx ├── Panels │ ├── MovePanel.Designer.cs │ ├── MovePanel.cs │ └── MovePanel.resx ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ └── licenses.licx ├── Resources │ ├── Options.gif │ └── Size.gif ├── SetupForm.Designer.cs ├── SetupForm.cs ├── SetupForm.resx └── SimulationObject.Animation.ImageMove.csproj ├── SimulationObject.Binary.Counter ├── Counter.cs ├── EFront.cs ├── Panels │ ├── CounterPanel.Designer.cs │ ├── CounterPanel.cs │ └── CounterPanel.resx ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ ├── FN.png │ └── FP.png ├── SetupForm.Designer.cs ├── SetupForm.cs ├── SetupForm.resx └── SimulationObject.Binary.Counter.csproj ├── SimulationObject.Binary.Delay ├── Delay.cs ├── Panels │ ├── DelayPanel.Designer.cs │ ├── DelayPanel.cs │ └── DelayPanel.resx ├── Properties │ ├── AssemblyInfo.cs │ └── licenses.licx ├── SetupForm.Designer.cs ├── SetupForm.cs ├── SetupForm.resx └── SimulationObject.Binary.Delay.csproj ├── SimulationObject.Binary.Logic ├── EOperators.cs ├── Logic.cs ├── Panels │ ├── LogicPanel.Designer.cs │ ├── LogicPanel.cs │ └── LogicPanel.resx ├── Properties │ ├── AssemblyInfo.cs │ └── licenses.licx ├── SetupForm.Designer.cs ├── SetupForm.cs ├── SetupForm.resx └── SimulationObject.Binary.Logic.csproj ├── SimulationObject.Binary.Trigger ├── Panels │ ├── TriggerPanel.Designer.cs │ ├── TriggerPanel.cs │ └── TriggerPanel.resx ├── Properties │ ├── AssemblyInfo.cs │ └── licenses.licx ├── SetupForm.Designer.cs ├── SetupForm.cs ├── SetupForm.resx ├── SimulationObject.Binary.Trigger.csproj └── Trigger.cs ├── SimulationObject.Item.ArraySplitter ├── Properties │ ├── AssemblyInfo.cs │ └── licenses.licx ├── SetupForm.Designer.cs ├── SetupForm.cs ├── SetupForm.resx ├── SimulationObject.Item.ArraySplitter.csproj └── Splitter.cs ├── SimulationObject.Item.BitSplitter ├── Properties │ ├── AssemblyInfo.cs │ └── licenses.licx ├── SetupForm.Designer.cs ├── SetupForm.cs ├── SetupForm.resx ├── SimulationObject.Item.BitSplitter.csproj └── Splitter.cs ├── SimulationObject.Item.Delay ├── Delay.cs ├── Panels │ ├── DelayPanel.Designer.cs │ ├── DelayPanel.cs │ └── DelayPanel.resx ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── SetupForm.Designer.cs ├── SetupForm.cs ├── SetupForm.resx └── SimulationObject.Item.Delay.csproj ├── SimulationObject.Item.TimeLine ├── DelayForm.Designer.cs ├── DelayForm.cs ├── DelayForm.resx ├── Panels │ ├── TimeLinePanel.Designer.cs │ ├── TimeLinePanel.cs │ └── TimeLinePanel.resx ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ └── licenses.licx ├── ReplaceForm.Designer.cs ├── ReplaceForm.cs ├── ReplaceForm.resx ├── Resources │ ├── Add.gif │ ├── Clock.png │ ├── Clone.gif │ ├── Delete.gif │ ├── Down.gif │ ├── FindReplace.gif │ ├── Setup.gif │ └── Up.gif ├── SetupForm.Designer.cs ├── SetupForm.cs ├── SetupForm.resx ├── SimulationObject.Item.TimeLine.csproj └── TimeLine.cs ├── SimulationObject.Item.WriteToFile ├── Panels │ ├── WriteToFilePanel.Designer.cs │ ├── WriteToFilePanel.cs │ └── WriteToFilePanel.resx ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ └── licenses.licx ├── Resources │ ├── Add.gif │ ├── AddWizard.gif │ ├── Delete.gif │ └── Record.gif ├── SetupForm.Designer.cs ├── SetupForm.cs ├── SetupForm.resx ├── SimulationObject.Item.WriteToFile.csproj └── WriteToFile.cs ├── SimulationObject.Pipeline.Pump ├── Panels │ ├── PumpControl │ │ ├── PumpControlPanel.Designer.cs │ │ ├── PumpControlPanel.cs │ │ └── PumpControlPanel.resx │ └── PumpState │ │ ├── PumpStatePanel.Designer.cs │ │ ├── PumpStatePanel.cs │ │ └── PumpStatePanel.resx ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Pump.cs ├── Resources │ ├── Alarm.png │ ├── Pmp_DC.png │ ├── Pmp_NDC.png │ ├── Pmp_Off.png │ └── Pmp_On.png ├── SetupForm.Designer.cs ├── SetupForm.cs ├── SetupForm.resx └── SimulationObject.Pipeline.Pump.csproj ├── SimulationObject.Pipeline.Valve ├── Panels │ ├── ValveControl │ │ ├── ValveControlPanel.Designer.cs │ │ ├── ValveControlPanel.cs │ │ └── ValveControlPanel.resx │ └── ValveState │ │ ├── ValveStatePanel.Designer.cs │ │ ├── ValveStatePanel.cs │ │ └── ValveStatePanel.resx ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ ├── Alarm.png │ ├── Vlv_CL.png │ ├── Vlv_DC.png │ ├── Vlv_NDC.png │ ├── Vlv_OP.png │ └── Vlv_OP_CL.png ├── SetupForm.Designer.cs ├── SetupForm.cs ├── SetupForm.resx ├── SimulationObject.Pipeline.Valve.csproj └── Valve.cs ├── SimulationObject.Real.Calculator ├── Calculator.cs ├── Panels │ ├── CalculatorPanel.Designer.cs │ ├── CalculatorPanel.cs │ └── CalculatorPanel.resx ├── Properties │ └── AssemblyInfo.cs ├── SetupForm.Designer.cs ├── SetupForm.cs ├── SetupForm.resx └── SimulationObject.Real.Calculator.csproj ├── SimulationObject.Real.Comparator ├── Comparator.cs ├── Panels │ ├── ComparatorPanel.Designer.cs │ ├── ComparatorPanel.cs │ └── ComparatorPanel.resx ├── Properties │ └── AssemblyInfo.cs ├── SetupForm.Designer.cs ├── SetupForm.cs ├── SetupForm.resx └── SimulationObject.Real.Comparator.csproj ├── SimulationObject.Real.Generator ├── ESignals.cs ├── Generator.cs ├── Panels │ ├── GeneratorPanel.Designer.cs │ ├── GeneratorPanel.cs │ └── GeneratorPanel.resx ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── SetupForm.Designer.cs ├── SetupForm.cs ├── SetupForm.resx └── SimulationObject.Real.Generator.csproj ├── SimulationObject.Real.Lag ├── Lag.cs ├── Panels │ ├── LagPanel.Designer.cs │ ├── LagPanel.cs │ └── LagPanel.resx ├── Properties │ ├── AssemblyInfo.cs │ └── licenses.licx ├── SetupForm.Designer.cs ├── SetupForm.cs ├── SetupForm.resx └── SimulationObject.Real.Lag.csproj ├── SimulationObject.Real.OneOfTwo ├── OneOfTwo.cs ├── Panels │ ├── OneOfTwoPanel.Designer.cs │ ├── OneOfTwoPanel.cs │ └── OneOfTwoPanel.resx ├── Properties │ ├── AssemblyInfo.cs │ └── licenses.licx ├── SetupForm.Designer.cs ├── SetupForm.cs ├── SetupForm.resx └── SimulationObject.Real.OneOfTwo.csproj ├── SimulationObject.Real.Scale ├── Properties │ ├── AssemblyInfo.cs │ └── licenses.licx ├── ScaleReal.cs ├── SetupForm.Designer.cs ├── SetupForm.cs ├── SetupForm.resx └── SimulationObject.Real.Scale.csproj ├── SimulationObject.Real.XYDependency ├── AddSetupForm.Designer.cs ├── AddSetupForm.cs ├── AddSetupForm.resx ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ ├── Add.gif │ ├── Delete.gif │ └── Setup.gif ├── SetupForm.Designer.cs ├── SetupForm.cs ├── SetupForm.resx ├── SimulationObject.Real.XYDependency.csproj └── XYDependency.cs ├── SimulationObject.Robot.Conveyor ├── Conveyor.cs ├── Panels │ ├── ConveyorControl │ │ ├── ConveyorControlPanel.Designer.cs │ │ ├── ConveyorControlPanel.cs │ │ └── ConveyorControlPanel.resx │ └── ConveyorState │ │ ├── BeltSideLayout.cs │ │ ├── BeltTopLayout.cs │ │ ├── ConveyorStatePanel.Designer.cs │ │ ├── ConveyorStatePanel.cs │ │ ├── ConveyorStatePanel.resx │ │ ├── IConveyorLayout.cs │ │ ├── SetupForm.Designer.cs │ │ ├── SetupForm.cs │ │ └── SetupForm.resx ├── Properties │ ├── AssemblyInfo.cs │ └── licenses.licx ├── SetupForm.Designer.cs ├── SetupForm.cs ├── SetupForm.resx └── SimulationObject.Robot.Conveyor.csproj ├── SimulationObject.Robot.SixAxis ├── Properties │ ├── AssemblyInfo.cs │ └── licenses.licx ├── Robot.cs ├── SetupForm.Designer.cs ├── SetupForm.cs ├── SetupForm.resx └── SimulationObject.Robot.SixAxis.csproj ├── SimulationObject.Script.CSharp ├── CSharp.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx └── SimulationObject.Script.CSharp.csproj ├── SimulationObject.Script.CSharpFSM ├── CSharpFSM.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ ├── Add.gif │ ├── Delete.gif │ ├── Refresh.gif │ ├── Rename.gif │ ├── Setup.gif │ ├── flag-checker.png │ └── flag-green.png ├── SetupForm.Designer.cs ├── SetupForm.cs ├── SetupForm.resx ├── SimulationObject.Script.CSharpFSM.csproj └── packages.config ├── SimulationObject.Sensor.Analog ├── AnalogSensor.cs ├── BackValueFilter.cs ├── Properties │ ├── AssemblyInfo.cs │ └── licenses.licx ├── SetupForm.cs ├── SetupForm.designer.cs ├── SetupForm.resx └── SimulationObject.Sensor.Analog.csproj ├── SimulationObject.Sensor.Discrete ├── DiscreteSensor.cs ├── Properties │ ├── AssemblyInfo.cs │ └── licenses.licx ├── SetupForm.Designer.cs ├── SetupForm.cs ├── SetupForm.resx └── SimulationObject.Sensor.Discrete.csproj ├── SimulationObject.Voice.Command ├── Command.cs ├── Properties │ └── AssemblyInfo.cs ├── SetupForm.Designer.cs ├── SetupForm.cs ├── SetupForm.resx └── SimulationObject.Voice.Command.csproj └── Utils ├── CSharpScript ├── CSScript.cs ├── OptionsForm.Designer.cs ├── OptionsForm.cs ├── OptionsForm.resx ├── SetupForm.Designer.cs ├── SetupForm.cs └── SetupForm.resx ├── ChartUtils.cs ├── CommunicationUtils.cs ├── Converters.cs ├── DialogForms ├── ListForm.Designer.cs ├── ListForm.cs ├── ListForm.resx ├── MessageForm.cs ├── MessageForm.designer.cs ├── MessageForm.resx ├── QuestionForm.cs ├── QuestionForm.designer.cs ├── QuestionForm.resx ├── StringForm.Designer.cs ├── StringForm.cs ├── StringForm.resx ├── ValueForm.Designer.cs ├── ValueForm.cs └── ValueForm.resx ├── EDataFlow.cs ├── FCTBUtils.cs ├── FiniteStateMachine.cs ├── FormUtils.cs ├── GridUtils.cs ├── LBIndustrialCtrls.dll ├── Logger ├── Log.cs ├── LogForm.Designer.cs ├── LogForm.cs ├── LogForm.resx └── LogTraceListener.cs ├── MiscUtils.cs ├── NameValueList ├── Clipboard.cs ├── NameValueForm.Designer.cs ├── NameValueForm.cs ├── NameValueForm.resx └── NameValueHolder.cs ├── PanelForm.Designer.cs ├── PanelForm.cs ├── PanelForm.resx ├── Panels ├── ArrayDoubleTrend │ ├── ArrayDoubleTrendPanel.Designer.cs │ ├── ArrayDoubleTrendPanel.cs │ ├── ArrayDoubleTrendPanel.resx │ ├── SetupForm.Designer.cs │ ├── SetupForm.cs │ └── SetupForm.resx ├── BitmapImage │ ├── BitmapImagePanel.Designer.cs │ ├── BitmapImagePanel.cs │ ├── BitmapImagePanel.resx │ ├── OptionsForm.Designer.cs │ ├── OptionsForm.cs │ ├── OptionsForm.resx │ ├── SetupForm.Designer.cs │ ├── SetupForm.cs │ └── SetupForm.resx ├── BooleanButton │ ├── BooleanButtonPanel.Designer.cs │ ├── BooleanButtonPanel.cs │ ├── BooleanButtonPanel.resx │ ├── SetupForm.Designer.cs │ ├── SetupForm.cs │ └── SetupForm.resx ├── BooleanCheckBox │ ├── BooleanCheckBoxPanel.Designer.cs │ ├── BooleanCheckBoxPanel.cs │ ├── BooleanCheckBoxPanel.resx │ ├── SetupForm.Designer.cs │ ├── SetupForm.cs │ └── SetupForm.resx ├── BooleanIndicator │ ├── BooleanIndicatorPanel.Designer.cs │ ├── BooleanIndicatorPanel.cs │ ├── BooleanIndicatorPanel.resx │ ├── SetupForm.Designer.cs │ ├── SetupForm.cs │ └── SetupForm.resx ├── BooleanSymbol │ ├── BooleanSymbolPanel.Designer.cs │ ├── BooleanSymbolPanel.cs │ ├── BooleanSymbolPanel.resx │ ├── ISymbol.cs │ ├── SetupForm.cs │ ├── SetupForm.designer.cs │ ├── SetupForm.resx │ ├── SymbolEllipse │ │ ├── SetupForm.Designer.cs │ │ ├── SetupForm.cs │ │ ├── SetupForm.resx │ │ └── SymbolEllipse.cs │ ├── SymbolImage │ │ ├── SetupForm.Designer.cs │ │ ├── SetupForm.cs │ │ ├── SetupForm.resx │ │ └── SymbolImage.cs │ ├── SymbolLine │ │ ├── SetupForm.Designer.cs │ │ ├── SetupForm.cs │ │ ├── SetupForm.resx │ │ └── SymbolLine.cs │ ├── SymbolNone.cs │ └── SymbolRectangle │ │ ├── SetupForm.Designer.cs │ │ ├── SetupForm.cs │ │ ├── SetupForm.resx │ │ └── SymbolRectangle.cs ├── BooleanToggle │ ├── BooleanTogglePanel.Designer.cs │ ├── BooleanTogglePanel.cs │ ├── BooleanTogglePanel.resx │ ├── SetupForm.Designer.cs │ ├── SetupForm.cs │ └── SetupForm.resx ├── BooleanTrend │ ├── BooleanTrendPanel.Designer.cs │ ├── BooleanTrendPanel.cs │ ├── BooleanTrendPanel.resx │ ├── SetupForm.Designer.cs │ ├── SetupForm.cs │ └── SetupForm.resx ├── DoubleBar │ ├── DoubleBarPanel.Designer.cs │ ├── DoubleBarPanel.cs │ ├── DoubleBarPanel.resx │ ├── SetupForm.Designer.cs │ ├── SetupForm.cs │ └── SetupForm.resx ├── DoubleEditBox │ ├── DoubleEditBoxPanel.Designer.cs │ ├── DoubleEditBoxPanel.cs │ ├── DoubleEditBoxPanel.resx │ ├── SetupForm.Designer.cs │ ├── SetupForm.cs │ └── SetupForm.resx ├── DoubleIndicator │ ├── DoubleIndicatorPanel.Designer.cs │ ├── DoubleIndicatorPanel.cs │ ├── DoubleIndicatorPanel.resx │ ├── SetupForm.Designer.cs │ ├── SetupForm.cs │ └── SetupForm.resx ├── DoubleKnob │ ├── DoubleKnobPanel.Designer.cs │ ├── DoubleKnobPanel.cs │ ├── DoubleKnobPanel.resx │ ├── SetupForm.Designer.cs │ ├── SetupForm.cs │ └── SetupForm.resx ├── DoubleMeter │ ├── DoubleMeterPanel.Designer.cs │ ├── DoubleMeterPanel.cs │ ├── DoubleMeterPanel.resx │ ├── SetupForm.Designer.cs │ ├── SetupForm.cs │ └── SetupForm.resx ├── DoubleSlider │ ├── DoubleSliderPanel.Designer.cs │ ├── DoubleSliderPanel.cs │ ├── DoubleSliderPanel.resx │ ├── SetupForm.Designer.cs │ ├── SetupForm.cs │ └── SetupForm.resx ├── DoubleSlidingScale │ ├── DoubleSlidingScalePanel.Designer.cs │ ├── DoubleSlidingScalePanel.cs │ ├── DoubleSlidingScalePanel.resx │ ├── SetupForm.Designer.cs │ ├── SetupForm.cs │ └── SetupForm.resx ├── DoubleTrend │ ├── DoubleTrendPanel.cs │ ├── DoubleTrendPanel.designer.cs │ ├── DoubleTrendPanel.resx │ ├── SetupForm.cs │ ├── SetupForm.designer.cs │ └── SetupForm.resx ├── ERotation.cs ├── GroupBox │ ├── GroupBoxPanel.Designer.cs │ ├── GroupBoxPanel.cs │ └── GroupBoxPanel.resx ├── IPanelExt.cs ├── IRedraw.cs ├── ObjectDropDownList │ ├── DropDownListPanel.Designer.cs │ ├── DropDownListPanel.cs │ └── DropDownListPanel.resx ├── ObjectRadioButtonGroup │ ├── RadioButtonGroupPanel.Designer.cs │ ├── RadioButtonGroupPanel.cs │ └── RadioButtonGroupPanel.resx ├── ObjectTextLabel │ ├── ObjectTextLabelPanel.Designer.cs │ ├── ObjectTextLabelPanel.cs │ ├── ObjectTextLabelPanel.resx │ ├── SetupForm.Designer.cs │ ├── SetupForm.cs │ └── SetupForm.resx ├── StringEditBox │ ├── StringEditBoxPanel.Designer.cs │ ├── StringEditBoxPanel.cs │ └── StringEditBoxPanel.resx ├── StringTextEditor │ ├── SetupForm.Designer.cs │ ├── SetupForm.cs │ ├── SetupForm.resx │ ├── StringTextEditorPanel.Designer.cs │ ├── StringTextEditorPanel.cs │ └── StringTextEditorPanel.resx ├── TextLabel │ ├── SetupForm.Designer.cs │ ├── SetupForm.cs │ ├── SetupForm.resx │ ├── TextLabelPanel.Designer.cs │ ├── TextLabelPanel.cs │ └── TextLabelPanel.resx └── VectorImage │ ├── ElementEllipse │ ├── ElementEllipse.cs │ ├── SetupForm.Designer.cs │ ├── SetupForm.cs │ └── SetupForm.resx │ ├── ElementLine │ ├── ElementLine.cs │ ├── SetupForm.Designer.cs │ ├── SetupForm.cs │ └── SetupForm.resx │ ├── ElementPolygon │ ├── ElementPolygon.cs │ ├── SetupForm.Designer.cs │ ├── SetupForm.cs │ └── SetupForm.resx │ ├── ElementRectangle │ ├── ElementRectangle.cs │ ├── SetupForm.Designer.cs │ ├── SetupForm.cs │ └── SetupForm.resx │ ├── ElementText │ ├── ElementText.cs │ ├── SetupForm.Designer.cs │ ├── SetupForm.cs │ └── SetupForm.resx │ ├── IVectorElement.cs │ ├── OptionsForm.Designer.cs │ ├── OptionsForm.cs │ ├── OptionsForm.resx │ ├── SetupForm.Designer.cs │ ├── SetupForm.cs │ ├── SetupForm.resx │ ├── VectorImagePanel.Designer.cs │ ├── VectorImagePanel.cs │ └── VectorImagePanel.resx ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx └── licenses.licx ├── RepeatItemNameChecker.cs ├── Resources ├── Add.gif ├── AddWizard.gif ├── AlignBottom.png ├── AlignLeft.png ├── AlignRight.png ├── AlignTop.png ├── Arrow.gif ├── Book.gif ├── BringToFront.png ├── CenterH.png ├── CenterV.png ├── Check.gif ├── Clone.gif ├── Collapse.gif ├── Copy.gif ├── Crosshair.gif ├── Cut.gif ├── Delete.gif ├── Down.gif ├── Ellipse.gif ├── Eracer.gif ├── Expand.gif ├── Filter.gif ├── Find.gif ├── FindReplace.gif ├── FitSize.png ├── Line.gif ├── Options.gif ├── Paste.gif ├── Pencil.gif ├── Rectangle.gif ├── Redo.gif ├── Refresh.gif ├── ScriptTemplate.txt ├── SelectAll.gif ├── SelectAll_Items.gif ├── SelectNone_Items.gif ├── SendToBack.png ├── Setup.gif ├── Size.gif ├── StayOnTop.gif ├── Text.gif ├── Track.gif ├── Undo.gif ├── Up.gif ├── VarTemplate.txt ├── document-smiley.png ├── package.png └── text_indent.png ├── Segmentation ├── ISegmentItem.cs └── SegmentBuilder.cs ├── Snapshot ├── AddEditRecordForm.Designer.cs ├── AddEditRecordForm.cs ├── AddEditRecordForm.resx ├── Snapshot.cs ├── SnapshotRecordsManagerForm.Designer.cs ├── SnapshotRecordsManagerForm.cs └── SnapshotRecordsManagerForm.resx ├── SpecialControls ├── ItemEditBox.Designer.cs ├── ItemEditBox.cs ├── ItemEditBox.resx ├── OKCancelButton.Designer.cs ├── OKCancelButton.cs ├── OKCancelButton.resx ├── PlayPause.Designer.cs ├── PlayPause.cs ├── PlayPause.resx ├── SliderControl.cs ├── SlidingScale.cs ├── ToggleSwitch │ ├── GraphicsExtensionMethods.cs │ ├── ImageHelper.cs │ ├── Renderers │ │ ├── ToggleSwitchAndroidRenderer.cs │ │ ├── ToggleSwitchBrushedMetalRenderer.cs │ │ ├── ToggleSwitchCarbonRenderer.cs │ │ ├── ToggleSwitchFancyRenderer.cs │ │ ├── ToggleSwitchIOS5Renderer.cs │ │ ├── ToggleSwitchIphoneRenderer.cs │ │ ├── ToggleSwitchMetroRenderer.cs │ │ ├── ToggleSwitchModernRenderer.cs │ │ ├── ToggleSwitchOSXRenderer.cs │ │ └── ToggleSwitchRendererBase.cs │ └── ToggleSwitch.cs ├── ValueControl.Designer.cs ├── ValueControl.cs ├── ValueControl.resx └── VerticalProgressBar.cs ├── StringUtils.cs ├── Utils.csproj ├── ValueScale.cs ├── ValuesCompare.cs ├── WM.cs ├── XMLAttributeReader.cs ├── XMLUtils.cs └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/.gitignore -------------------------------------------------------------------------------- /Connection.Internal/Connection.Internal.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.Internal/Connection.Internal.csproj -------------------------------------------------------------------------------- /Connection.Internal/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.Internal/Connection.cs -------------------------------------------------------------------------------- /Connection.Internal/ConnectionSetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.Internal/ConnectionSetupForm.Designer.cs -------------------------------------------------------------------------------- /Connection.Internal/ConnectionSetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.Internal/ConnectionSetupForm.cs -------------------------------------------------------------------------------- /Connection.Internal/ConnectionSetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.Internal/ConnectionSetupForm.resx -------------------------------------------------------------------------------- /Connection.Internal/DataItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.Internal/DataItem.cs -------------------------------------------------------------------------------- /Connection.Internal/Factory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.Internal/Factory.cs -------------------------------------------------------------------------------- /Connection.Internal/ItemSetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.Internal/ItemSetupForm.Designer.cs -------------------------------------------------------------------------------- /Connection.Internal/ItemSetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.Internal/ItemSetupForm.cs -------------------------------------------------------------------------------- /Connection.Internal/ItemSetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.Internal/ItemSetupForm.resx -------------------------------------------------------------------------------- /Connection.Internal/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.Internal/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Connection.MQTT/Connection.MQTT.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.MQTT/Connection.MQTT.csproj -------------------------------------------------------------------------------- /Connection.MQTT/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.MQTT/Connection.cs -------------------------------------------------------------------------------- /Connection.MQTT/ConnectionSetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.MQTT/ConnectionSetupForm.Designer.cs -------------------------------------------------------------------------------- /Connection.MQTT/ConnectionSetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.MQTT/ConnectionSetupForm.cs -------------------------------------------------------------------------------- /Connection.MQTT/ConnectionSetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.MQTT/ConnectionSetupForm.resx -------------------------------------------------------------------------------- /Connection.MQTT/DataItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.MQTT/DataItem.cs -------------------------------------------------------------------------------- /Connection.MQTT/Factory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.MQTT/Factory.cs -------------------------------------------------------------------------------- /Connection.MQTT/ItemSetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.MQTT/ItemSetupForm.Designer.cs -------------------------------------------------------------------------------- /Connection.MQTT/ItemSetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.MQTT/ItemSetupForm.cs -------------------------------------------------------------------------------- /Connection.MQTT/ItemSetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.MQTT/ItemSetupForm.resx -------------------------------------------------------------------------------- /Connection.MQTT/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.MQTT/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Connection.MQTT/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.MQTT/packages.config -------------------------------------------------------------------------------- /Connection.ModbusN/Connection.ModbusN.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.ModbusN/Connection.ModbusN.csproj -------------------------------------------------------------------------------- /Connection.ModbusN/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.ModbusN/Connection.cs -------------------------------------------------------------------------------- /Connection.ModbusN/ConnectionSetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.ModbusN/ConnectionSetupForm.Designer.cs -------------------------------------------------------------------------------- /Connection.ModbusN/ConnectionSetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.ModbusN/ConnectionSetupForm.cs -------------------------------------------------------------------------------- /Connection.ModbusN/ConnectionSetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.ModbusN/ConnectionSetupForm.resx -------------------------------------------------------------------------------- /Connection.ModbusN/DataItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.ModbusN/DataItem.cs -------------------------------------------------------------------------------- /Connection.ModbusN/EProtocol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.ModbusN/EProtocol.cs -------------------------------------------------------------------------------- /Connection.ModbusN/ERegisterType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.ModbusN/ERegisterType.cs -------------------------------------------------------------------------------- /Connection.ModbusN/ETransportType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.ModbusN/ETransportType.cs -------------------------------------------------------------------------------- /Connection.ModbusN/Factory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.ModbusN/Factory.cs -------------------------------------------------------------------------------- /Connection.ModbusN/ItemSetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.ModbusN/ItemSetupForm.Designer.cs -------------------------------------------------------------------------------- /Connection.ModbusN/ItemSetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.ModbusN/ItemSetupForm.cs -------------------------------------------------------------------------------- /Connection.ModbusN/ItemSetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.ModbusN/ItemSetupForm.resx -------------------------------------------------------------------------------- /Connection.ModbusN/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.ModbusN/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Connection.ModbusN/Properties/licenses.licx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.ModbusN/Properties/licenses.licx -------------------------------------------------------------------------------- /Connection.ModbusN/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.ModbusN/packages.config -------------------------------------------------------------------------------- /Connection.OPCUA/Connection.OPCUA.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.OPCUA/Connection.OPCUA.csproj -------------------------------------------------------------------------------- /Connection.OPCUA/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.OPCUA/Connection.cs -------------------------------------------------------------------------------- /Connection.OPCUA/ConnectionSetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.OPCUA/ConnectionSetupForm.Designer.cs -------------------------------------------------------------------------------- /Connection.OPCUA/ConnectionSetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.OPCUA/ConnectionSetupForm.cs -------------------------------------------------------------------------------- /Connection.OPCUA/ConnectionSetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.OPCUA/ConnectionSetupForm.resx -------------------------------------------------------------------------------- /Connection.OPCUA/DataItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.OPCUA/DataItem.cs -------------------------------------------------------------------------------- /Connection.OPCUA/ETransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.OPCUA/ETransport.cs -------------------------------------------------------------------------------- /Connection.OPCUA/Factory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.OPCUA/Factory.cs -------------------------------------------------------------------------------- /Connection.OPCUA/ItemSetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.OPCUA/ItemSetupForm.Designer.cs -------------------------------------------------------------------------------- /Connection.OPCUA/ItemSetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.OPCUA/ItemSetupForm.cs -------------------------------------------------------------------------------- /Connection.OPCUA/ItemSetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.OPCUA/ItemSetupForm.resx -------------------------------------------------------------------------------- /Connection.OPCUA/OPCNodesBrowserForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.OPCUA/OPCNodesBrowserForm.Designer.cs -------------------------------------------------------------------------------- /Connection.OPCUA/OPCNodesBrowserForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.OPCUA/OPCNodesBrowserForm.cs -------------------------------------------------------------------------------- /Connection.OPCUA/OPCNodesBrowserForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.OPCUA/OPCNodesBrowserForm.resx -------------------------------------------------------------------------------- /Connection.OPCUA/Opc.Ua.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.OPCUA/Opc.Ua.Client.dll -------------------------------------------------------------------------------- /Connection.OPCUA/Opc.Ua.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.OPCUA/Opc.Ua.Core.dll -------------------------------------------------------------------------------- /Connection.OPCUA/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.OPCUA/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Connection.OPCUA/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.OPCUA/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Connection.OPCUA/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.OPCUA/Properties/Resources.resx -------------------------------------------------------------------------------- /Connection.OPCUA/Properties/licenses.licx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Connection.OPCUA/Resources/Refresh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.OPCUA/Resources/Refresh.gif -------------------------------------------------------------------------------- /Connection.S7IsoTCP/Connection.S7IsoTCP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7IsoTCP/Connection.S7IsoTCP.csproj -------------------------------------------------------------------------------- /Connection.S7IsoTCP/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7IsoTCP/Connection.cs -------------------------------------------------------------------------------- /Connection.S7IsoTCP/ConnectionSetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7IsoTCP/ConnectionSetupForm.Designer.cs -------------------------------------------------------------------------------- /Connection.S7IsoTCP/ConnectionSetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7IsoTCP/ConnectionSetupForm.cs -------------------------------------------------------------------------------- /Connection.S7IsoTCP/ConnectionSetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7IsoTCP/ConnectionSetupForm.resx -------------------------------------------------------------------------------- /Connection.S7IsoTCP/DataItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7IsoTCP/DataItem.cs -------------------------------------------------------------------------------- /Connection.S7IsoTCP/EArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7IsoTCP/EArea.cs -------------------------------------------------------------------------------- /Connection.S7IsoTCP/EConnectionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7IsoTCP/EConnectionType.cs -------------------------------------------------------------------------------- /Connection.S7IsoTCP/EWordlen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7IsoTCP/EWordlen.cs -------------------------------------------------------------------------------- /Connection.S7IsoTCP/Factory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7IsoTCP/Factory.cs -------------------------------------------------------------------------------- /Connection.S7IsoTCP/ItemSetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7IsoTCP/ItemSetupForm.Designer.cs -------------------------------------------------------------------------------- /Connection.S7IsoTCP/ItemSetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7IsoTCP/ItemSetupForm.cs -------------------------------------------------------------------------------- /Connection.S7IsoTCP/ItemSetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7IsoTCP/ItemSetupForm.resx -------------------------------------------------------------------------------- /Connection.S7IsoTCP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7IsoTCP/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Connection.S7IsoTCP/Properties/licenses.licx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Connection.S7IsoTCP/snap7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7IsoTCP/snap7.dll -------------------------------------------------------------------------------- /Connection.S7IsoTCP/snap7.net.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7IsoTCP/snap7.net.cs -------------------------------------------------------------------------------- /Connection.S7PLCSim/Connection.S7PLCSim.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7PLCSim/Connection.S7PLCSim.csproj -------------------------------------------------------------------------------- /Connection.S7PLCSim/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7PLCSim/Connection.cs -------------------------------------------------------------------------------- /Connection.S7PLCSim/ConnectionSetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7PLCSim/ConnectionSetupForm.cs -------------------------------------------------------------------------------- /Connection.S7PLCSim/ConnectionSetupForm.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7PLCSim/ConnectionSetupForm.designer.cs -------------------------------------------------------------------------------- /Connection.S7PLCSim/ConnectionSetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7PLCSim/ConnectionSetupForm.resx -------------------------------------------------------------------------------- /Connection.S7PLCSim/DataItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7PLCSim/DataItem.cs -------------------------------------------------------------------------------- /Connection.S7PLCSim/EPLCMemoryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7PLCSim/EPLCMemoryType.cs -------------------------------------------------------------------------------- /Connection.S7PLCSim/Factory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7PLCSim/Factory.cs -------------------------------------------------------------------------------- /Connection.S7PLCSim/ItemSetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7PLCSim/ItemSetupForm.Designer.cs -------------------------------------------------------------------------------- /Connection.S7PLCSim/ItemSetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7PLCSim/ItemSetupForm.cs -------------------------------------------------------------------------------- /Connection.S7PLCSim/ItemSetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7PLCSim/ItemSetupForm.resx -------------------------------------------------------------------------------- /Connection.S7PLCSim/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7PLCSim/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Connection.S7PLCSimAdv2/Connection.S7PLCSimAdv2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7PLCSimAdv2/Connection.S7PLCSimAdv2.csproj -------------------------------------------------------------------------------- /Connection.S7PLCSimAdv2/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7PLCSimAdv2/Connection.cs -------------------------------------------------------------------------------- /Connection.S7PLCSimAdv2/ConnectionSetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7PLCSimAdv2/ConnectionSetupForm.Designer.cs -------------------------------------------------------------------------------- /Connection.S7PLCSimAdv2/ConnectionSetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7PLCSimAdv2/ConnectionSetupForm.cs -------------------------------------------------------------------------------- /Connection.S7PLCSimAdv2/ConnectionSetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7PLCSimAdv2/ConnectionSetupForm.resx -------------------------------------------------------------------------------- /Connection.S7PLCSimAdv2/DataItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7PLCSimAdv2/DataItem.cs -------------------------------------------------------------------------------- /Connection.S7PLCSimAdv2/Factory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7PLCSimAdv2/Factory.cs -------------------------------------------------------------------------------- /Connection.S7PLCSimAdv2/ItemSetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7PLCSimAdv2/ItemSetupForm.Designer.cs -------------------------------------------------------------------------------- /Connection.S7PLCSimAdv2/ItemSetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7PLCSimAdv2/ItemSetupForm.cs -------------------------------------------------------------------------------- /Connection.S7PLCSimAdv2/ItemSetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7PLCSimAdv2/ItemSetupForm.resx -------------------------------------------------------------------------------- /Connection.S7PLCSimAdv2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7PLCSimAdv2/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Connection.S7PLCSimAdv2/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7PLCSimAdv2/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Connection.S7PLCSimAdv2/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7PLCSimAdv2/Properties/Resources.resx -------------------------------------------------------------------------------- /Connection.S7PLCSimAdv2/Resources/Filter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7PLCSimAdv2/Resources/Filter.gif -------------------------------------------------------------------------------- /Connection.S7PLCSimAdv2/Resources/Memory_C.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7PLCSimAdv2/Resources/Memory_C.gif -------------------------------------------------------------------------------- /Connection.S7PLCSimAdv2/Resources/Memory_DB.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7PLCSimAdv2/Resources/Memory_DB.gif -------------------------------------------------------------------------------- /Connection.S7PLCSimAdv2/Resources/Memory_I.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7PLCSimAdv2/Resources/Memory_I.gif -------------------------------------------------------------------------------- /Connection.S7PLCSimAdv2/Resources/Memory_M.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7PLCSimAdv2/Resources/Memory_M.gif -------------------------------------------------------------------------------- /Connection.S7PLCSimAdv2/Resources/Memory_Q.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7PLCSimAdv2/Resources/Memory_Q.gif -------------------------------------------------------------------------------- /Connection.S7PLCSimAdv2/Resources/Memory_T.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7PLCSimAdv2/Resources/Memory_T.gif -------------------------------------------------------------------------------- /Connection.S7PLCSimAdv2/Resources/Refresh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7PLCSimAdv2/Resources/Refresh.gif -------------------------------------------------------------------------------- /Connection.S7PLCSimAdv2/TagBrowserForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7PLCSimAdv2/TagBrowserForm.Designer.cs -------------------------------------------------------------------------------- /Connection.S7PLCSimAdv2/TagBrowserForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7PLCSimAdv2/TagBrowserForm.cs -------------------------------------------------------------------------------- /Connection.S7PLCSimAdv2/TagBrowserForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Connection.S7PLCSimAdv2/TagBrowserForm.resx -------------------------------------------------------------------------------- /Converter.Compare/Converter.Compare.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.Compare/Converter.Compare.csproj -------------------------------------------------------------------------------- /Converter.Compare/Converter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.Compare/Converter.cs -------------------------------------------------------------------------------- /Converter.Compare/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.Compare/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Converter.Compare/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.Compare/SetupForm.Designer.cs -------------------------------------------------------------------------------- /Converter.Compare/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.Compare/SetupForm.cs -------------------------------------------------------------------------------- /Converter.Compare/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.Compare/SetupForm.resx -------------------------------------------------------------------------------- /Converter.FilterExp/Converter.FilterExp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.FilterExp/Converter.FilterExp.csproj -------------------------------------------------------------------------------- /Converter.FilterExp/Converter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.FilterExp/Converter.cs -------------------------------------------------------------------------------- /Converter.FilterExp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.FilterExp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Converter.FilterExp/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.FilterExp/SetupForm.Designer.cs -------------------------------------------------------------------------------- /Converter.FilterExp/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.FilterExp/SetupForm.cs -------------------------------------------------------------------------------- /Converter.FilterExp/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.FilterExp/SetupForm.resx -------------------------------------------------------------------------------- /Converter.Inverse/Converter.Inverse.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.Inverse/Converter.Inverse.csproj -------------------------------------------------------------------------------- /Converter.Inverse/Converter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.Inverse/Converter.cs -------------------------------------------------------------------------------- /Converter.Inverse/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.Inverse/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Converter.Inverse/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.Inverse/SetupForm.Designer.cs -------------------------------------------------------------------------------- /Converter.Inverse/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.Inverse/SetupForm.cs -------------------------------------------------------------------------------- /Converter.Inverse/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.Inverse/SetupForm.resx -------------------------------------------------------------------------------- /Converter.Round/Converter.Round.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.Round/Converter.Round.csproj -------------------------------------------------------------------------------- /Converter.Round/Converter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.Round/Converter.cs -------------------------------------------------------------------------------- /Converter.Round/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.Round/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Converter.Round/Properties/licenses.licx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Converter.Round/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.Round/SetupForm.Designer.cs -------------------------------------------------------------------------------- /Converter.Round/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.Round/SetupForm.cs -------------------------------------------------------------------------------- /Converter.Round/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.Round/SetupForm.resx -------------------------------------------------------------------------------- /Converter.Scale/Converter.Scale.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.Scale/Converter.Scale.csproj -------------------------------------------------------------------------------- /Converter.Scale/Converter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.Scale/Converter.cs -------------------------------------------------------------------------------- /Converter.Scale/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.Scale/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Converter.Scale/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.Scale/SetupForm.Designer.cs -------------------------------------------------------------------------------- /Converter.Scale/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.Scale/SetupForm.cs -------------------------------------------------------------------------------- /Converter.Scale/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.Scale/SetupForm.resx -------------------------------------------------------------------------------- /Converter.ToBoolean/Converter.ToBoolean.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.ToBoolean/Converter.ToBoolean.csproj -------------------------------------------------------------------------------- /Converter.ToBoolean/Converter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.ToBoolean/Converter.cs -------------------------------------------------------------------------------- /Converter.ToBoolean/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.ToBoolean/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Converter.ToBoolean/Properties/licenses.licx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.ToBoolean/Properties/licenses.licx -------------------------------------------------------------------------------- /Converter.ToBoolean/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.ToBoolean/SetupForm.Designer.cs -------------------------------------------------------------------------------- /Converter.ToBoolean/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.ToBoolean/SetupForm.cs -------------------------------------------------------------------------------- /Converter.ToBoolean/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.ToBoolean/SetupForm.resx -------------------------------------------------------------------------------- /Converter.ToString/Converter.ToString.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.ToString/Converter.ToString.csproj -------------------------------------------------------------------------------- /Converter.ToString/Converter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.ToString/Converter.cs -------------------------------------------------------------------------------- /Converter.ToString/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.ToString/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Converter.ToString/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.ToString/SetupForm.Designer.cs -------------------------------------------------------------------------------- /Converter.ToString/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.ToString/SetupForm.cs -------------------------------------------------------------------------------- /Converter.ToString/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Converter.ToString/SetupForm.resx -------------------------------------------------------------------------------- /Process Simulator 2 OpenSource.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Process Simulator 2 OpenSource.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/README.md -------------------------------------------------------------------------------- /SimulationObject.Animation.ImageMove/Move.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Animation.ImageMove/Move.cs -------------------------------------------------------------------------------- /SimulationObject.Animation.ImageMove/OptionsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Animation.ImageMove/OptionsForm.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Animation.ImageMove/OptionsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Animation.ImageMove/OptionsForm.cs -------------------------------------------------------------------------------- /SimulationObject.Animation.ImageMove/OptionsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Animation.ImageMove/OptionsForm.resx -------------------------------------------------------------------------------- /SimulationObject.Animation.ImageMove/Panels/MovePanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Animation.ImageMove/Panels/MovePanel.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Animation.ImageMove/Panels/MovePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Animation.ImageMove/Panels/MovePanel.cs -------------------------------------------------------------------------------- /SimulationObject.Animation.ImageMove/Panels/MovePanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Animation.ImageMove/Panels/MovePanel.resx -------------------------------------------------------------------------------- /SimulationObject.Animation.ImageMove/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Animation.ImageMove/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SimulationObject.Animation.ImageMove/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Animation.ImageMove/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Animation.ImageMove/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Animation.ImageMove/Properties/Resources.resx -------------------------------------------------------------------------------- /SimulationObject.Animation.ImageMove/Properties/licenses.licx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Animation.ImageMove/Properties/licenses.licx -------------------------------------------------------------------------------- /SimulationObject.Animation.ImageMove/Resources/Options.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Animation.ImageMove/Resources/Options.gif -------------------------------------------------------------------------------- /SimulationObject.Animation.ImageMove/Resources/Size.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Animation.ImageMove/Resources/Size.gif -------------------------------------------------------------------------------- /SimulationObject.Animation.ImageMove/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Animation.ImageMove/SetupForm.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Animation.ImageMove/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Animation.ImageMove/SetupForm.cs -------------------------------------------------------------------------------- /SimulationObject.Animation.ImageMove/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Animation.ImageMove/SetupForm.resx -------------------------------------------------------------------------------- /SimulationObject.Binary.Counter/Counter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Binary.Counter/Counter.cs -------------------------------------------------------------------------------- /SimulationObject.Binary.Counter/EFront.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Binary.Counter/EFront.cs -------------------------------------------------------------------------------- /SimulationObject.Binary.Counter/Panels/CounterPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Binary.Counter/Panels/CounterPanel.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Binary.Counter/Panels/CounterPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Binary.Counter/Panels/CounterPanel.cs -------------------------------------------------------------------------------- /SimulationObject.Binary.Counter/Panels/CounterPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Binary.Counter/Panels/CounterPanel.resx -------------------------------------------------------------------------------- /SimulationObject.Binary.Counter/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Binary.Counter/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SimulationObject.Binary.Counter/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Binary.Counter/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Binary.Counter/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Binary.Counter/Properties/Resources.resx -------------------------------------------------------------------------------- /SimulationObject.Binary.Counter/Resources/FN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Binary.Counter/Resources/FN.png -------------------------------------------------------------------------------- /SimulationObject.Binary.Counter/Resources/FP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Binary.Counter/Resources/FP.png -------------------------------------------------------------------------------- /SimulationObject.Binary.Counter/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Binary.Counter/SetupForm.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Binary.Counter/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Binary.Counter/SetupForm.cs -------------------------------------------------------------------------------- /SimulationObject.Binary.Counter/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Binary.Counter/SetupForm.resx -------------------------------------------------------------------------------- /SimulationObject.Binary.Delay/Delay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Binary.Delay/Delay.cs -------------------------------------------------------------------------------- /SimulationObject.Binary.Delay/Panels/DelayPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Binary.Delay/Panels/DelayPanel.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Binary.Delay/Panels/DelayPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Binary.Delay/Panels/DelayPanel.cs -------------------------------------------------------------------------------- /SimulationObject.Binary.Delay/Panels/DelayPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Binary.Delay/Panels/DelayPanel.resx -------------------------------------------------------------------------------- /SimulationObject.Binary.Delay/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Binary.Delay/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SimulationObject.Binary.Delay/Properties/licenses.licx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SimulationObject.Binary.Delay/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Binary.Delay/SetupForm.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Binary.Delay/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Binary.Delay/SetupForm.cs -------------------------------------------------------------------------------- /SimulationObject.Binary.Delay/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Binary.Delay/SetupForm.resx -------------------------------------------------------------------------------- /SimulationObject.Binary.Delay/SimulationObject.Binary.Delay.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Binary.Delay/SimulationObject.Binary.Delay.csproj -------------------------------------------------------------------------------- /SimulationObject.Binary.Logic/EOperators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Binary.Logic/EOperators.cs -------------------------------------------------------------------------------- /SimulationObject.Binary.Logic/Logic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Binary.Logic/Logic.cs -------------------------------------------------------------------------------- /SimulationObject.Binary.Logic/Panels/LogicPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Binary.Logic/Panels/LogicPanel.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Binary.Logic/Panels/LogicPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Binary.Logic/Panels/LogicPanel.cs -------------------------------------------------------------------------------- /SimulationObject.Binary.Logic/Panels/LogicPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Binary.Logic/Panels/LogicPanel.resx -------------------------------------------------------------------------------- /SimulationObject.Binary.Logic/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Binary.Logic/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SimulationObject.Binary.Logic/Properties/licenses.licx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SimulationObject.Binary.Logic/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Binary.Logic/SetupForm.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Binary.Logic/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Binary.Logic/SetupForm.cs -------------------------------------------------------------------------------- /SimulationObject.Binary.Logic/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Binary.Logic/SetupForm.resx -------------------------------------------------------------------------------- /SimulationObject.Binary.Logic/SimulationObject.Binary.Logic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Binary.Logic/SimulationObject.Binary.Logic.csproj -------------------------------------------------------------------------------- /SimulationObject.Binary.Trigger/Panels/TriggerPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Binary.Trigger/Panels/TriggerPanel.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Binary.Trigger/Panels/TriggerPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Binary.Trigger/Panels/TriggerPanel.cs -------------------------------------------------------------------------------- /SimulationObject.Binary.Trigger/Panels/TriggerPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Binary.Trigger/Panels/TriggerPanel.resx -------------------------------------------------------------------------------- /SimulationObject.Binary.Trigger/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Binary.Trigger/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SimulationObject.Binary.Trigger/Properties/licenses.licx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SimulationObject.Binary.Trigger/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Binary.Trigger/SetupForm.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Binary.Trigger/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Binary.Trigger/SetupForm.cs -------------------------------------------------------------------------------- /SimulationObject.Binary.Trigger/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Binary.Trigger/SetupForm.resx -------------------------------------------------------------------------------- /SimulationObject.Binary.Trigger/Trigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Binary.Trigger/Trigger.cs -------------------------------------------------------------------------------- /SimulationObject.Item.ArraySplitter/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.ArraySplitter/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SimulationObject.Item.ArraySplitter/Properties/licenses.licx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SimulationObject.Item.ArraySplitter/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.ArraySplitter/SetupForm.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Item.ArraySplitter/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.ArraySplitter/SetupForm.cs -------------------------------------------------------------------------------- /SimulationObject.Item.ArraySplitter/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.ArraySplitter/SetupForm.resx -------------------------------------------------------------------------------- /SimulationObject.Item.ArraySplitter/Splitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.ArraySplitter/Splitter.cs -------------------------------------------------------------------------------- /SimulationObject.Item.BitSplitter/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.BitSplitter/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SimulationObject.Item.BitSplitter/Properties/licenses.licx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SimulationObject.Item.BitSplitter/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.BitSplitter/SetupForm.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Item.BitSplitter/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.BitSplitter/SetupForm.cs -------------------------------------------------------------------------------- /SimulationObject.Item.BitSplitter/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.BitSplitter/SetupForm.resx -------------------------------------------------------------------------------- /SimulationObject.Item.BitSplitter/Splitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.BitSplitter/Splitter.cs -------------------------------------------------------------------------------- /SimulationObject.Item.Delay/Delay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.Delay/Delay.cs -------------------------------------------------------------------------------- /SimulationObject.Item.Delay/Panels/DelayPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.Delay/Panels/DelayPanel.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Item.Delay/Panels/DelayPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.Delay/Panels/DelayPanel.cs -------------------------------------------------------------------------------- /SimulationObject.Item.Delay/Panels/DelayPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.Delay/Panels/DelayPanel.resx -------------------------------------------------------------------------------- /SimulationObject.Item.Delay/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.Delay/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SimulationObject.Item.Delay/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.Delay/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Item.Delay/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.Delay/Properties/Resources.resx -------------------------------------------------------------------------------- /SimulationObject.Item.Delay/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.Delay/SetupForm.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Item.Delay/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.Delay/SetupForm.cs -------------------------------------------------------------------------------- /SimulationObject.Item.Delay/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.Delay/SetupForm.resx -------------------------------------------------------------------------------- /SimulationObject.Item.Delay/SimulationObject.Item.Delay.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.Delay/SimulationObject.Item.Delay.csproj -------------------------------------------------------------------------------- /SimulationObject.Item.TimeLine/DelayForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.TimeLine/DelayForm.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Item.TimeLine/DelayForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.TimeLine/DelayForm.cs -------------------------------------------------------------------------------- /SimulationObject.Item.TimeLine/DelayForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.TimeLine/DelayForm.resx -------------------------------------------------------------------------------- /SimulationObject.Item.TimeLine/Panels/TimeLinePanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.TimeLine/Panels/TimeLinePanel.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Item.TimeLine/Panels/TimeLinePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.TimeLine/Panels/TimeLinePanel.cs -------------------------------------------------------------------------------- /SimulationObject.Item.TimeLine/Panels/TimeLinePanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.TimeLine/Panels/TimeLinePanel.resx -------------------------------------------------------------------------------- /SimulationObject.Item.TimeLine/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.TimeLine/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SimulationObject.Item.TimeLine/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.TimeLine/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Item.TimeLine/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.TimeLine/Properties/Resources.resx -------------------------------------------------------------------------------- /SimulationObject.Item.TimeLine/Properties/licenses.licx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SimulationObject.Item.TimeLine/ReplaceForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.TimeLine/ReplaceForm.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Item.TimeLine/ReplaceForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.TimeLine/ReplaceForm.cs -------------------------------------------------------------------------------- /SimulationObject.Item.TimeLine/ReplaceForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.TimeLine/ReplaceForm.resx -------------------------------------------------------------------------------- /SimulationObject.Item.TimeLine/Resources/Add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.TimeLine/Resources/Add.gif -------------------------------------------------------------------------------- /SimulationObject.Item.TimeLine/Resources/Clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.TimeLine/Resources/Clock.png -------------------------------------------------------------------------------- /SimulationObject.Item.TimeLine/Resources/Clone.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.TimeLine/Resources/Clone.gif -------------------------------------------------------------------------------- /SimulationObject.Item.TimeLine/Resources/Delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.TimeLine/Resources/Delete.gif -------------------------------------------------------------------------------- /SimulationObject.Item.TimeLine/Resources/Down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.TimeLine/Resources/Down.gif -------------------------------------------------------------------------------- /SimulationObject.Item.TimeLine/Resources/FindReplace.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.TimeLine/Resources/FindReplace.gif -------------------------------------------------------------------------------- /SimulationObject.Item.TimeLine/Resources/Setup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.TimeLine/Resources/Setup.gif -------------------------------------------------------------------------------- /SimulationObject.Item.TimeLine/Resources/Up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.TimeLine/Resources/Up.gif -------------------------------------------------------------------------------- /SimulationObject.Item.TimeLine/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.TimeLine/SetupForm.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Item.TimeLine/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.TimeLine/SetupForm.cs -------------------------------------------------------------------------------- /SimulationObject.Item.TimeLine/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.TimeLine/SetupForm.resx -------------------------------------------------------------------------------- /SimulationObject.Item.TimeLine/SimulationObject.Item.TimeLine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.TimeLine/SimulationObject.Item.TimeLine.csproj -------------------------------------------------------------------------------- /SimulationObject.Item.TimeLine/TimeLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.TimeLine/TimeLine.cs -------------------------------------------------------------------------------- /SimulationObject.Item.WriteToFile/Panels/WriteToFilePanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.WriteToFile/Panels/WriteToFilePanel.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Item.WriteToFile/Panels/WriteToFilePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.WriteToFile/Panels/WriteToFilePanel.cs -------------------------------------------------------------------------------- /SimulationObject.Item.WriteToFile/Panels/WriteToFilePanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.WriteToFile/Panels/WriteToFilePanel.resx -------------------------------------------------------------------------------- /SimulationObject.Item.WriteToFile/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.WriteToFile/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SimulationObject.Item.WriteToFile/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.WriteToFile/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Item.WriteToFile/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.WriteToFile/Properties/Resources.resx -------------------------------------------------------------------------------- /SimulationObject.Item.WriteToFile/Properties/licenses.licx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.WriteToFile/Properties/licenses.licx -------------------------------------------------------------------------------- /SimulationObject.Item.WriteToFile/Resources/Add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.WriteToFile/Resources/Add.gif -------------------------------------------------------------------------------- /SimulationObject.Item.WriteToFile/Resources/AddWizard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.WriteToFile/Resources/AddWizard.gif -------------------------------------------------------------------------------- /SimulationObject.Item.WriteToFile/Resources/Delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.WriteToFile/Resources/Delete.gif -------------------------------------------------------------------------------- /SimulationObject.Item.WriteToFile/Resources/Record.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.WriteToFile/Resources/Record.gif -------------------------------------------------------------------------------- /SimulationObject.Item.WriteToFile/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.WriteToFile/SetupForm.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Item.WriteToFile/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.WriteToFile/SetupForm.cs -------------------------------------------------------------------------------- /SimulationObject.Item.WriteToFile/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.WriteToFile/SetupForm.resx -------------------------------------------------------------------------------- /SimulationObject.Item.WriteToFile/WriteToFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Item.WriteToFile/WriteToFile.cs -------------------------------------------------------------------------------- /SimulationObject.Pipeline.Pump/Panels/PumpControl/PumpControlPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Pipeline.Pump/Panels/PumpControl/PumpControlPanel.cs -------------------------------------------------------------------------------- /SimulationObject.Pipeline.Pump/Panels/PumpState/PumpStatePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Pipeline.Pump/Panels/PumpState/PumpStatePanel.cs -------------------------------------------------------------------------------- /SimulationObject.Pipeline.Pump/Panels/PumpState/PumpStatePanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Pipeline.Pump/Panels/PumpState/PumpStatePanel.resx -------------------------------------------------------------------------------- /SimulationObject.Pipeline.Pump/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Pipeline.Pump/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SimulationObject.Pipeline.Pump/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Pipeline.Pump/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Pipeline.Pump/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Pipeline.Pump/Properties/Resources.resx -------------------------------------------------------------------------------- /SimulationObject.Pipeline.Pump/Pump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Pipeline.Pump/Pump.cs -------------------------------------------------------------------------------- /SimulationObject.Pipeline.Pump/Resources/Alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Pipeline.Pump/Resources/Alarm.png -------------------------------------------------------------------------------- /SimulationObject.Pipeline.Pump/Resources/Pmp_DC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Pipeline.Pump/Resources/Pmp_DC.png -------------------------------------------------------------------------------- /SimulationObject.Pipeline.Pump/Resources/Pmp_NDC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Pipeline.Pump/Resources/Pmp_NDC.png -------------------------------------------------------------------------------- /SimulationObject.Pipeline.Pump/Resources/Pmp_Off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Pipeline.Pump/Resources/Pmp_Off.png -------------------------------------------------------------------------------- /SimulationObject.Pipeline.Pump/Resources/Pmp_On.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Pipeline.Pump/Resources/Pmp_On.png -------------------------------------------------------------------------------- /SimulationObject.Pipeline.Pump/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Pipeline.Pump/SetupForm.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Pipeline.Pump/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Pipeline.Pump/SetupForm.cs -------------------------------------------------------------------------------- /SimulationObject.Pipeline.Pump/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Pipeline.Pump/SetupForm.resx -------------------------------------------------------------------------------- /SimulationObject.Pipeline.Pump/SimulationObject.Pipeline.Pump.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Pipeline.Pump/SimulationObject.Pipeline.Pump.csproj -------------------------------------------------------------------------------- /SimulationObject.Pipeline.Valve/Panels/ValveState/ValveStatePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Pipeline.Valve/Panels/ValveState/ValveStatePanel.cs -------------------------------------------------------------------------------- /SimulationObject.Pipeline.Valve/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Pipeline.Valve/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SimulationObject.Pipeline.Valve/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Pipeline.Valve/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Pipeline.Valve/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Pipeline.Valve/Properties/Resources.resx -------------------------------------------------------------------------------- /SimulationObject.Pipeline.Valve/Resources/Alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Pipeline.Valve/Resources/Alarm.png -------------------------------------------------------------------------------- /SimulationObject.Pipeline.Valve/Resources/Vlv_CL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Pipeline.Valve/Resources/Vlv_CL.png -------------------------------------------------------------------------------- /SimulationObject.Pipeline.Valve/Resources/Vlv_DC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Pipeline.Valve/Resources/Vlv_DC.png -------------------------------------------------------------------------------- /SimulationObject.Pipeline.Valve/Resources/Vlv_NDC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Pipeline.Valve/Resources/Vlv_NDC.png -------------------------------------------------------------------------------- /SimulationObject.Pipeline.Valve/Resources/Vlv_OP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Pipeline.Valve/Resources/Vlv_OP.png -------------------------------------------------------------------------------- /SimulationObject.Pipeline.Valve/Resources/Vlv_OP_CL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Pipeline.Valve/Resources/Vlv_OP_CL.png -------------------------------------------------------------------------------- /SimulationObject.Pipeline.Valve/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Pipeline.Valve/SetupForm.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Pipeline.Valve/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Pipeline.Valve/SetupForm.cs -------------------------------------------------------------------------------- /SimulationObject.Pipeline.Valve/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Pipeline.Valve/SetupForm.resx -------------------------------------------------------------------------------- /SimulationObject.Pipeline.Valve/Valve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Pipeline.Valve/Valve.cs -------------------------------------------------------------------------------- /SimulationObject.Real.Calculator/Calculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Calculator/Calculator.cs -------------------------------------------------------------------------------- /SimulationObject.Real.Calculator/Panels/CalculatorPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Calculator/Panels/CalculatorPanel.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Real.Calculator/Panels/CalculatorPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Calculator/Panels/CalculatorPanel.cs -------------------------------------------------------------------------------- /SimulationObject.Real.Calculator/Panels/CalculatorPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Calculator/Panels/CalculatorPanel.resx -------------------------------------------------------------------------------- /SimulationObject.Real.Calculator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Calculator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SimulationObject.Real.Calculator/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Calculator/SetupForm.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Real.Calculator/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Calculator/SetupForm.cs -------------------------------------------------------------------------------- /SimulationObject.Real.Calculator/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Calculator/SetupForm.resx -------------------------------------------------------------------------------- /SimulationObject.Real.Comparator/Comparator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Comparator/Comparator.cs -------------------------------------------------------------------------------- /SimulationObject.Real.Comparator/Panels/ComparatorPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Comparator/Panels/ComparatorPanel.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Real.Comparator/Panels/ComparatorPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Comparator/Panels/ComparatorPanel.cs -------------------------------------------------------------------------------- /SimulationObject.Real.Comparator/Panels/ComparatorPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Comparator/Panels/ComparatorPanel.resx -------------------------------------------------------------------------------- /SimulationObject.Real.Comparator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Comparator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SimulationObject.Real.Comparator/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Comparator/SetupForm.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Real.Comparator/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Comparator/SetupForm.cs -------------------------------------------------------------------------------- /SimulationObject.Real.Comparator/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Comparator/SetupForm.resx -------------------------------------------------------------------------------- /SimulationObject.Real.Generator/ESignals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Generator/ESignals.cs -------------------------------------------------------------------------------- /SimulationObject.Real.Generator/Generator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Generator/Generator.cs -------------------------------------------------------------------------------- /SimulationObject.Real.Generator/Panels/GeneratorPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Generator/Panels/GeneratorPanel.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Real.Generator/Panels/GeneratorPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Generator/Panels/GeneratorPanel.cs -------------------------------------------------------------------------------- /SimulationObject.Real.Generator/Panels/GeneratorPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Generator/Panels/GeneratorPanel.resx -------------------------------------------------------------------------------- /SimulationObject.Real.Generator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Generator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SimulationObject.Real.Generator/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Generator/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Real.Generator/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Generator/Properties/Resources.resx -------------------------------------------------------------------------------- /SimulationObject.Real.Generator/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Generator/SetupForm.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Real.Generator/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Generator/SetupForm.cs -------------------------------------------------------------------------------- /SimulationObject.Real.Generator/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Generator/SetupForm.resx -------------------------------------------------------------------------------- /SimulationObject.Real.Lag/Lag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Lag/Lag.cs -------------------------------------------------------------------------------- /SimulationObject.Real.Lag/Panels/LagPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Lag/Panels/LagPanel.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Real.Lag/Panels/LagPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Lag/Panels/LagPanel.cs -------------------------------------------------------------------------------- /SimulationObject.Real.Lag/Panels/LagPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Lag/Panels/LagPanel.resx -------------------------------------------------------------------------------- /SimulationObject.Real.Lag/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Lag/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SimulationObject.Real.Lag/Properties/licenses.licx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SimulationObject.Real.Lag/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Lag/SetupForm.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Real.Lag/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Lag/SetupForm.cs -------------------------------------------------------------------------------- /SimulationObject.Real.Lag/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Lag/SetupForm.resx -------------------------------------------------------------------------------- /SimulationObject.Real.Lag/SimulationObject.Real.Lag.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Lag/SimulationObject.Real.Lag.csproj -------------------------------------------------------------------------------- /SimulationObject.Real.OneOfTwo/OneOfTwo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.OneOfTwo/OneOfTwo.cs -------------------------------------------------------------------------------- /SimulationObject.Real.OneOfTwo/Panels/OneOfTwoPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.OneOfTwo/Panels/OneOfTwoPanel.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Real.OneOfTwo/Panels/OneOfTwoPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.OneOfTwo/Panels/OneOfTwoPanel.cs -------------------------------------------------------------------------------- /SimulationObject.Real.OneOfTwo/Panels/OneOfTwoPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.OneOfTwo/Panels/OneOfTwoPanel.resx -------------------------------------------------------------------------------- /SimulationObject.Real.OneOfTwo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.OneOfTwo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SimulationObject.Real.OneOfTwo/Properties/licenses.licx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.OneOfTwo/Properties/licenses.licx -------------------------------------------------------------------------------- /SimulationObject.Real.OneOfTwo/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.OneOfTwo/SetupForm.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Real.OneOfTwo/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.OneOfTwo/SetupForm.cs -------------------------------------------------------------------------------- /SimulationObject.Real.OneOfTwo/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.OneOfTwo/SetupForm.resx -------------------------------------------------------------------------------- /SimulationObject.Real.OneOfTwo/SimulationObject.Real.OneOfTwo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.OneOfTwo/SimulationObject.Real.OneOfTwo.csproj -------------------------------------------------------------------------------- /SimulationObject.Real.Scale/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Scale/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SimulationObject.Real.Scale/Properties/licenses.licx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SimulationObject.Real.Scale/ScaleReal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Scale/ScaleReal.cs -------------------------------------------------------------------------------- /SimulationObject.Real.Scale/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Scale/SetupForm.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Real.Scale/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Scale/SetupForm.cs -------------------------------------------------------------------------------- /SimulationObject.Real.Scale/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Scale/SetupForm.resx -------------------------------------------------------------------------------- /SimulationObject.Real.Scale/SimulationObject.Real.Scale.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.Scale/SimulationObject.Real.Scale.csproj -------------------------------------------------------------------------------- /SimulationObject.Real.XYDependency/AddSetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.XYDependency/AddSetupForm.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Real.XYDependency/AddSetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.XYDependency/AddSetupForm.cs -------------------------------------------------------------------------------- /SimulationObject.Real.XYDependency/AddSetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.XYDependency/AddSetupForm.resx -------------------------------------------------------------------------------- /SimulationObject.Real.XYDependency/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.XYDependency/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SimulationObject.Real.XYDependency/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.XYDependency/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Real.XYDependency/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.XYDependency/Properties/Resources.resx -------------------------------------------------------------------------------- /SimulationObject.Real.XYDependency/Resources/Add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.XYDependency/Resources/Add.gif -------------------------------------------------------------------------------- /SimulationObject.Real.XYDependency/Resources/Delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.XYDependency/Resources/Delete.gif -------------------------------------------------------------------------------- /SimulationObject.Real.XYDependency/Resources/Setup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.XYDependency/Resources/Setup.gif -------------------------------------------------------------------------------- /SimulationObject.Real.XYDependency/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.XYDependency/SetupForm.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Real.XYDependency/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.XYDependency/SetupForm.cs -------------------------------------------------------------------------------- /SimulationObject.Real.XYDependency/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.XYDependency/SetupForm.resx -------------------------------------------------------------------------------- /SimulationObject.Real.XYDependency/XYDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Real.XYDependency/XYDependency.cs -------------------------------------------------------------------------------- /SimulationObject.Robot.Conveyor/Conveyor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Robot.Conveyor/Conveyor.cs -------------------------------------------------------------------------------- /SimulationObject.Robot.Conveyor/Panels/ConveyorState/BeltTopLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Robot.Conveyor/Panels/ConveyorState/BeltTopLayout.cs -------------------------------------------------------------------------------- /SimulationObject.Robot.Conveyor/Panels/ConveyorState/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Robot.Conveyor/Panels/ConveyorState/SetupForm.cs -------------------------------------------------------------------------------- /SimulationObject.Robot.Conveyor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Robot.Conveyor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SimulationObject.Robot.Conveyor/Properties/licenses.licx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Robot.Conveyor/Properties/licenses.licx -------------------------------------------------------------------------------- /SimulationObject.Robot.Conveyor/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Robot.Conveyor/SetupForm.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Robot.Conveyor/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Robot.Conveyor/SetupForm.cs -------------------------------------------------------------------------------- /SimulationObject.Robot.Conveyor/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Robot.Conveyor/SetupForm.resx -------------------------------------------------------------------------------- /SimulationObject.Robot.SixAxis/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Robot.SixAxis/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SimulationObject.Robot.SixAxis/Properties/licenses.licx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SimulationObject.Robot.SixAxis/Robot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Robot.SixAxis/Robot.cs -------------------------------------------------------------------------------- /SimulationObject.Robot.SixAxis/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Robot.SixAxis/SetupForm.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Robot.SixAxis/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Robot.SixAxis/SetupForm.cs -------------------------------------------------------------------------------- /SimulationObject.Robot.SixAxis/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Robot.SixAxis/SetupForm.resx -------------------------------------------------------------------------------- /SimulationObject.Script.CSharp/CSharp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Script.CSharp/CSharp.cs -------------------------------------------------------------------------------- /SimulationObject.Script.CSharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Script.CSharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SimulationObject.Script.CSharp/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Script.CSharp/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Script.CSharp/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Script.CSharp/Properties/Resources.resx -------------------------------------------------------------------------------- /SimulationObject.Script.CSharpFSM/CSharpFSM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Script.CSharpFSM/CSharpFSM.cs -------------------------------------------------------------------------------- /SimulationObject.Script.CSharpFSM/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Script.CSharpFSM/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SimulationObject.Script.CSharpFSM/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Script.CSharpFSM/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Script.CSharpFSM/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Script.CSharpFSM/Properties/Resources.resx -------------------------------------------------------------------------------- /SimulationObject.Script.CSharpFSM/Resources/Add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Script.CSharpFSM/Resources/Add.gif -------------------------------------------------------------------------------- /SimulationObject.Script.CSharpFSM/Resources/Delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Script.CSharpFSM/Resources/Delete.gif -------------------------------------------------------------------------------- /SimulationObject.Script.CSharpFSM/Resources/Refresh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Script.CSharpFSM/Resources/Refresh.gif -------------------------------------------------------------------------------- /SimulationObject.Script.CSharpFSM/Resources/Rename.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Script.CSharpFSM/Resources/Rename.gif -------------------------------------------------------------------------------- /SimulationObject.Script.CSharpFSM/Resources/Setup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Script.CSharpFSM/Resources/Setup.gif -------------------------------------------------------------------------------- /SimulationObject.Script.CSharpFSM/Resources/flag-checker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Script.CSharpFSM/Resources/flag-checker.png -------------------------------------------------------------------------------- /SimulationObject.Script.CSharpFSM/Resources/flag-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Script.CSharpFSM/Resources/flag-green.png -------------------------------------------------------------------------------- /SimulationObject.Script.CSharpFSM/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Script.CSharpFSM/SetupForm.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Script.CSharpFSM/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Script.CSharpFSM/SetupForm.cs -------------------------------------------------------------------------------- /SimulationObject.Script.CSharpFSM/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Script.CSharpFSM/SetupForm.resx -------------------------------------------------------------------------------- /SimulationObject.Script.CSharpFSM/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Script.CSharpFSM/packages.config -------------------------------------------------------------------------------- /SimulationObject.Sensor.Analog/AnalogSensor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Sensor.Analog/AnalogSensor.cs -------------------------------------------------------------------------------- /SimulationObject.Sensor.Analog/BackValueFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Sensor.Analog/BackValueFilter.cs -------------------------------------------------------------------------------- /SimulationObject.Sensor.Analog/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Sensor.Analog/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SimulationObject.Sensor.Analog/Properties/licenses.licx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SimulationObject.Sensor.Analog/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Sensor.Analog/SetupForm.cs -------------------------------------------------------------------------------- /SimulationObject.Sensor.Analog/SetupForm.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Sensor.Analog/SetupForm.designer.cs -------------------------------------------------------------------------------- /SimulationObject.Sensor.Analog/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Sensor.Analog/SetupForm.resx -------------------------------------------------------------------------------- /SimulationObject.Sensor.Discrete/DiscreteSensor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Sensor.Discrete/DiscreteSensor.cs -------------------------------------------------------------------------------- /SimulationObject.Sensor.Discrete/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Sensor.Discrete/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SimulationObject.Sensor.Discrete/Properties/licenses.licx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SimulationObject.Sensor.Discrete/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Sensor.Discrete/SetupForm.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Sensor.Discrete/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Sensor.Discrete/SetupForm.cs -------------------------------------------------------------------------------- /SimulationObject.Sensor.Discrete/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Sensor.Discrete/SetupForm.resx -------------------------------------------------------------------------------- /SimulationObject.Voice.Command/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Voice.Command/Command.cs -------------------------------------------------------------------------------- /SimulationObject.Voice.Command/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Voice.Command/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SimulationObject.Voice.Command/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Voice.Command/SetupForm.Designer.cs -------------------------------------------------------------------------------- /SimulationObject.Voice.Command/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Voice.Command/SetupForm.cs -------------------------------------------------------------------------------- /SimulationObject.Voice.Command/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/SimulationObject.Voice.Command/SetupForm.resx -------------------------------------------------------------------------------- /Utils/CSharpScript/CSScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/CSharpScript/CSScript.cs -------------------------------------------------------------------------------- /Utils/CSharpScript/OptionsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/CSharpScript/OptionsForm.Designer.cs -------------------------------------------------------------------------------- /Utils/CSharpScript/OptionsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/CSharpScript/OptionsForm.cs -------------------------------------------------------------------------------- /Utils/CSharpScript/OptionsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/CSharpScript/OptionsForm.resx -------------------------------------------------------------------------------- /Utils/CSharpScript/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/CSharpScript/SetupForm.Designer.cs -------------------------------------------------------------------------------- /Utils/CSharpScript/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/CSharpScript/SetupForm.cs -------------------------------------------------------------------------------- /Utils/CSharpScript/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/CSharpScript/SetupForm.resx -------------------------------------------------------------------------------- /Utils/ChartUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/ChartUtils.cs -------------------------------------------------------------------------------- /Utils/CommunicationUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/CommunicationUtils.cs -------------------------------------------------------------------------------- /Utils/Converters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Converters.cs -------------------------------------------------------------------------------- /Utils/DialogForms/ListForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/DialogForms/ListForm.Designer.cs -------------------------------------------------------------------------------- /Utils/DialogForms/ListForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/DialogForms/ListForm.cs -------------------------------------------------------------------------------- /Utils/DialogForms/ListForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/DialogForms/ListForm.resx -------------------------------------------------------------------------------- /Utils/DialogForms/MessageForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/DialogForms/MessageForm.cs -------------------------------------------------------------------------------- /Utils/DialogForms/MessageForm.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/DialogForms/MessageForm.designer.cs -------------------------------------------------------------------------------- /Utils/DialogForms/MessageForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/DialogForms/MessageForm.resx -------------------------------------------------------------------------------- /Utils/DialogForms/QuestionForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/DialogForms/QuestionForm.cs -------------------------------------------------------------------------------- /Utils/DialogForms/QuestionForm.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/DialogForms/QuestionForm.designer.cs -------------------------------------------------------------------------------- /Utils/DialogForms/QuestionForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/DialogForms/QuestionForm.resx -------------------------------------------------------------------------------- /Utils/DialogForms/StringForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/DialogForms/StringForm.Designer.cs -------------------------------------------------------------------------------- /Utils/DialogForms/StringForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/DialogForms/StringForm.cs -------------------------------------------------------------------------------- /Utils/DialogForms/StringForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/DialogForms/StringForm.resx -------------------------------------------------------------------------------- /Utils/DialogForms/ValueForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/DialogForms/ValueForm.Designer.cs -------------------------------------------------------------------------------- /Utils/DialogForms/ValueForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/DialogForms/ValueForm.cs -------------------------------------------------------------------------------- /Utils/DialogForms/ValueForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/DialogForms/ValueForm.resx -------------------------------------------------------------------------------- /Utils/EDataFlow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/EDataFlow.cs -------------------------------------------------------------------------------- /Utils/FCTBUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/FCTBUtils.cs -------------------------------------------------------------------------------- /Utils/FiniteStateMachine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/FiniteStateMachine.cs -------------------------------------------------------------------------------- /Utils/FormUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/FormUtils.cs -------------------------------------------------------------------------------- /Utils/GridUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/GridUtils.cs -------------------------------------------------------------------------------- /Utils/LBIndustrialCtrls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/LBIndustrialCtrls.dll -------------------------------------------------------------------------------- /Utils/Logger/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Logger/Log.cs -------------------------------------------------------------------------------- /Utils/Logger/LogForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Logger/LogForm.Designer.cs -------------------------------------------------------------------------------- /Utils/Logger/LogForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Logger/LogForm.cs -------------------------------------------------------------------------------- /Utils/Logger/LogForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Logger/LogForm.resx -------------------------------------------------------------------------------- /Utils/Logger/LogTraceListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Logger/LogTraceListener.cs -------------------------------------------------------------------------------- /Utils/MiscUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/MiscUtils.cs -------------------------------------------------------------------------------- /Utils/NameValueList/Clipboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/NameValueList/Clipboard.cs -------------------------------------------------------------------------------- /Utils/NameValueList/NameValueForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/NameValueList/NameValueForm.Designer.cs -------------------------------------------------------------------------------- /Utils/NameValueList/NameValueForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/NameValueList/NameValueForm.cs -------------------------------------------------------------------------------- /Utils/NameValueList/NameValueForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/NameValueList/NameValueForm.resx -------------------------------------------------------------------------------- /Utils/NameValueList/NameValueHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/NameValueList/NameValueHolder.cs -------------------------------------------------------------------------------- /Utils/PanelForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/PanelForm.Designer.cs -------------------------------------------------------------------------------- /Utils/PanelForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/PanelForm.cs -------------------------------------------------------------------------------- /Utils/PanelForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/PanelForm.resx -------------------------------------------------------------------------------- /Utils/Panels/ArrayDoubleTrend/ArrayDoubleTrendPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/ArrayDoubleTrend/ArrayDoubleTrendPanel.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/ArrayDoubleTrend/ArrayDoubleTrendPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/ArrayDoubleTrend/ArrayDoubleTrendPanel.cs -------------------------------------------------------------------------------- /Utils/Panels/ArrayDoubleTrend/ArrayDoubleTrendPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/ArrayDoubleTrend/ArrayDoubleTrendPanel.resx -------------------------------------------------------------------------------- /Utils/Panels/ArrayDoubleTrend/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/ArrayDoubleTrend/SetupForm.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/ArrayDoubleTrend/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/ArrayDoubleTrend/SetupForm.cs -------------------------------------------------------------------------------- /Utils/Panels/ArrayDoubleTrend/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/ArrayDoubleTrend/SetupForm.resx -------------------------------------------------------------------------------- /Utils/Panels/BitmapImage/BitmapImagePanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BitmapImage/BitmapImagePanel.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/BitmapImage/BitmapImagePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BitmapImage/BitmapImagePanel.cs -------------------------------------------------------------------------------- /Utils/Panels/BitmapImage/BitmapImagePanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BitmapImage/BitmapImagePanel.resx -------------------------------------------------------------------------------- /Utils/Panels/BitmapImage/OptionsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BitmapImage/OptionsForm.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/BitmapImage/OptionsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BitmapImage/OptionsForm.cs -------------------------------------------------------------------------------- /Utils/Panels/BitmapImage/OptionsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BitmapImage/OptionsForm.resx -------------------------------------------------------------------------------- /Utils/Panels/BitmapImage/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BitmapImage/SetupForm.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/BitmapImage/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BitmapImage/SetupForm.cs -------------------------------------------------------------------------------- /Utils/Panels/BitmapImage/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BitmapImage/SetupForm.resx -------------------------------------------------------------------------------- /Utils/Panels/BooleanButton/BooleanButtonPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanButton/BooleanButtonPanel.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/BooleanButton/BooleanButtonPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanButton/BooleanButtonPanel.cs -------------------------------------------------------------------------------- /Utils/Panels/BooleanButton/BooleanButtonPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanButton/BooleanButtonPanel.resx -------------------------------------------------------------------------------- /Utils/Panels/BooleanButton/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanButton/SetupForm.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/BooleanButton/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanButton/SetupForm.cs -------------------------------------------------------------------------------- /Utils/Panels/BooleanButton/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanButton/SetupForm.resx -------------------------------------------------------------------------------- /Utils/Panels/BooleanCheckBox/BooleanCheckBoxPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanCheckBox/BooleanCheckBoxPanel.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/BooleanCheckBox/BooleanCheckBoxPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanCheckBox/BooleanCheckBoxPanel.cs -------------------------------------------------------------------------------- /Utils/Panels/BooleanCheckBox/BooleanCheckBoxPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanCheckBox/BooleanCheckBoxPanel.resx -------------------------------------------------------------------------------- /Utils/Panels/BooleanCheckBox/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanCheckBox/SetupForm.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/BooleanCheckBox/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanCheckBox/SetupForm.cs -------------------------------------------------------------------------------- /Utils/Panels/BooleanCheckBox/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanCheckBox/SetupForm.resx -------------------------------------------------------------------------------- /Utils/Panels/BooleanIndicator/BooleanIndicatorPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanIndicator/BooleanIndicatorPanel.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/BooleanIndicator/BooleanIndicatorPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanIndicator/BooleanIndicatorPanel.cs -------------------------------------------------------------------------------- /Utils/Panels/BooleanIndicator/BooleanIndicatorPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanIndicator/BooleanIndicatorPanel.resx -------------------------------------------------------------------------------- /Utils/Panels/BooleanIndicator/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanIndicator/SetupForm.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/BooleanIndicator/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanIndicator/SetupForm.cs -------------------------------------------------------------------------------- /Utils/Panels/BooleanIndicator/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanIndicator/SetupForm.resx -------------------------------------------------------------------------------- /Utils/Panels/BooleanSymbol/BooleanSymbolPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanSymbol/BooleanSymbolPanel.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/BooleanSymbol/BooleanSymbolPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanSymbol/BooleanSymbolPanel.cs -------------------------------------------------------------------------------- /Utils/Panels/BooleanSymbol/BooleanSymbolPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanSymbol/BooleanSymbolPanel.resx -------------------------------------------------------------------------------- /Utils/Panels/BooleanSymbol/ISymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanSymbol/ISymbol.cs -------------------------------------------------------------------------------- /Utils/Panels/BooleanSymbol/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanSymbol/SetupForm.cs -------------------------------------------------------------------------------- /Utils/Panels/BooleanSymbol/SetupForm.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanSymbol/SetupForm.designer.cs -------------------------------------------------------------------------------- /Utils/Panels/BooleanSymbol/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanSymbol/SetupForm.resx -------------------------------------------------------------------------------- /Utils/Panels/BooleanSymbol/SymbolEllipse/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanSymbol/SymbolEllipse/SetupForm.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/BooleanSymbol/SymbolEllipse/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanSymbol/SymbolEllipse/SetupForm.cs -------------------------------------------------------------------------------- /Utils/Panels/BooleanSymbol/SymbolEllipse/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanSymbol/SymbolEllipse/SetupForm.resx -------------------------------------------------------------------------------- /Utils/Panels/BooleanSymbol/SymbolEllipse/SymbolEllipse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanSymbol/SymbolEllipse/SymbolEllipse.cs -------------------------------------------------------------------------------- /Utils/Panels/BooleanSymbol/SymbolImage/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanSymbol/SymbolImage/SetupForm.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/BooleanSymbol/SymbolImage/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanSymbol/SymbolImage/SetupForm.cs -------------------------------------------------------------------------------- /Utils/Panels/BooleanSymbol/SymbolImage/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanSymbol/SymbolImage/SetupForm.resx -------------------------------------------------------------------------------- /Utils/Panels/BooleanSymbol/SymbolImage/SymbolImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanSymbol/SymbolImage/SymbolImage.cs -------------------------------------------------------------------------------- /Utils/Panels/BooleanSymbol/SymbolLine/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanSymbol/SymbolLine/SetupForm.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/BooleanSymbol/SymbolLine/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanSymbol/SymbolLine/SetupForm.cs -------------------------------------------------------------------------------- /Utils/Panels/BooleanSymbol/SymbolLine/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanSymbol/SymbolLine/SetupForm.resx -------------------------------------------------------------------------------- /Utils/Panels/BooleanSymbol/SymbolLine/SymbolLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanSymbol/SymbolLine/SymbolLine.cs -------------------------------------------------------------------------------- /Utils/Panels/BooleanSymbol/SymbolNone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanSymbol/SymbolNone.cs -------------------------------------------------------------------------------- /Utils/Panels/BooleanSymbol/SymbolRectangle/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanSymbol/SymbolRectangle/SetupForm.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/BooleanSymbol/SymbolRectangle/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanSymbol/SymbolRectangle/SetupForm.cs -------------------------------------------------------------------------------- /Utils/Panels/BooleanSymbol/SymbolRectangle/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanSymbol/SymbolRectangle/SetupForm.resx -------------------------------------------------------------------------------- /Utils/Panels/BooleanSymbol/SymbolRectangle/SymbolRectangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanSymbol/SymbolRectangle/SymbolRectangle.cs -------------------------------------------------------------------------------- /Utils/Panels/BooleanToggle/BooleanTogglePanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanToggle/BooleanTogglePanel.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/BooleanToggle/BooleanTogglePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanToggle/BooleanTogglePanel.cs -------------------------------------------------------------------------------- /Utils/Panels/BooleanToggle/BooleanTogglePanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanToggle/BooleanTogglePanel.resx -------------------------------------------------------------------------------- /Utils/Panels/BooleanToggle/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanToggle/SetupForm.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/BooleanToggle/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanToggle/SetupForm.cs -------------------------------------------------------------------------------- /Utils/Panels/BooleanToggle/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanToggle/SetupForm.resx -------------------------------------------------------------------------------- /Utils/Panels/BooleanTrend/BooleanTrendPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanTrend/BooleanTrendPanel.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/BooleanTrend/BooleanTrendPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanTrend/BooleanTrendPanel.cs -------------------------------------------------------------------------------- /Utils/Panels/BooleanTrend/BooleanTrendPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanTrend/BooleanTrendPanel.resx -------------------------------------------------------------------------------- /Utils/Panels/BooleanTrend/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanTrend/SetupForm.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/BooleanTrend/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanTrend/SetupForm.cs -------------------------------------------------------------------------------- /Utils/Panels/BooleanTrend/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/BooleanTrend/SetupForm.resx -------------------------------------------------------------------------------- /Utils/Panels/DoubleBar/DoubleBarPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleBar/DoubleBarPanel.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/DoubleBar/DoubleBarPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleBar/DoubleBarPanel.cs -------------------------------------------------------------------------------- /Utils/Panels/DoubleBar/DoubleBarPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleBar/DoubleBarPanel.resx -------------------------------------------------------------------------------- /Utils/Panels/DoubleBar/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleBar/SetupForm.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/DoubleBar/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleBar/SetupForm.cs -------------------------------------------------------------------------------- /Utils/Panels/DoubleBar/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleBar/SetupForm.resx -------------------------------------------------------------------------------- /Utils/Panels/DoubleEditBox/DoubleEditBoxPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleEditBox/DoubleEditBoxPanel.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/DoubleEditBox/DoubleEditBoxPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleEditBox/DoubleEditBoxPanel.cs -------------------------------------------------------------------------------- /Utils/Panels/DoubleEditBox/DoubleEditBoxPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleEditBox/DoubleEditBoxPanel.resx -------------------------------------------------------------------------------- /Utils/Panels/DoubleEditBox/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleEditBox/SetupForm.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/DoubleEditBox/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleEditBox/SetupForm.cs -------------------------------------------------------------------------------- /Utils/Panels/DoubleEditBox/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleEditBox/SetupForm.resx -------------------------------------------------------------------------------- /Utils/Panels/DoubleIndicator/DoubleIndicatorPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleIndicator/DoubleIndicatorPanel.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/DoubleIndicator/DoubleIndicatorPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleIndicator/DoubleIndicatorPanel.cs -------------------------------------------------------------------------------- /Utils/Panels/DoubleIndicator/DoubleIndicatorPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleIndicator/DoubleIndicatorPanel.resx -------------------------------------------------------------------------------- /Utils/Panels/DoubleIndicator/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleIndicator/SetupForm.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/DoubleIndicator/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleIndicator/SetupForm.cs -------------------------------------------------------------------------------- /Utils/Panels/DoubleIndicator/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleIndicator/SetupForm.resx -------------------------------------------------------------------------------- /Utils/Panels/DoubleKnob/DoubleKnobPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleKnob/DoubleKnobPanel.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/DoubleKnob/DoubleKnobPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleKnob/DoubleKnobPanel.cs -------------------------------------------------------------------------------- /Utils/Panels/DoubleKnob/DoubleKnobPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleKnob/DoubleKnobPanel.resx -------------------------------------------------------------------------------- /Utils/Panels/DoubleKnob/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleKnob/SetupForm.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/DoubleKnob/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleKnob/SetupForm.cs -------------------------------------------------------------------------------- /Utils/Panels/DoubleKnob/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleKnob/SetupForm.resx -------------------------------------------------------------------------------- /Utils/Panels/DoubleMeter/DoubleMeterPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleMeter/DoubleMeterPanel.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/DoubleMeter/DoubleMeterPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleMeter/DoubleMeterPanel.cs -------------------------------------------------------------------------------- /Utils/Panels/DoubleMeter/DoubleMeterPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleMeter/DoubleMeterPanel.resx -------------------------------------------------------------------------------- /Utils/Panels/DoubleMeter/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleMeter/SetupForm.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/DoubleMeter/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleMeter/SetupForm.cs -------------------------------------------------------------------------------- /Utils/Panels/DoubleMeter/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleMeter/SetupForm.resx -------------------------------------------------------------------------------- /Utils/Panels/DoubleSlider/DoubleSliderPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleSlider/DoubleSliderPanel.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/DoubleSlider/DoubleSliderPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleSlider/DoubleSliderPanel.cs -------------------------------------------------------------------------------- /Utils/Panels/DoubleSlider/DoubleSliderPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleSlider/DoubleSliderPanel.resx -------------------------------------------------------------------------------- /Utils/Panels/DoubleSlider/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleSlider/SetupForm.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/DoubleSlider/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleSlider/SetupForm.cs -------------------------------------------------------------------------------- /Utils/Panels/DoubleSlider/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleSlider/SetupForm.resx -------------------------------------------------------------------------------- /Utils/Panels/DoubleSlidingScale/DoubleSlidingScalePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleSlidingScale/DoubleSlidingScalePanel.cs -------------------------------------------------------------------------------- /Utils/Panels/DoubleSlidingScale/DoubleSlidingScalePanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleSlidingScale/DoubleSlidingScalePanel.resx -------------------------------------------------------------------------------- /Utils/Panels/DoubleSlidingScale/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleSlidingScale/SetupForm.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/DoubleSlidingScale/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleSlidingScale/SetupForm.cs -------------------------------------------------------------------------------- /Utils/Panels/DoubleSlidingScale/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleSlidingScale/SetupForm.resx -------------------------------------------------------------------------------- /Utils/Panels/DoubleTrend/DoubleTrendPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleTrend/DoubleTrendPanel.cs -------------------------------------------------------------------------------- /Utils/Panels/DoubleTrend/DoubleTrendPanel.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleTrend/DoubleTrendPanel.designer.cs -------------------------------------------------------------------------------- /Utils/Panels/DoubleTrend/DoubleTrendPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleTrend/DoubleTrendPanel.resx -------------------------------------------------------------------------------- /Utils/Panels/DoubleTrend/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleTrend/SetupForm.cs -------------------------------------------------------------------------------- /Utils/Panels/DoubleTrend/SetupForm.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleTrend/SetupForm.designer.cs -------------------------------------------------------------------------------- /Utils/Panels/DoubleTrend/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/DoubleTrend/SetupForm.resx -------------------------------------------------------------------------------- /Utils/Panels/ERotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/ERotation.cs -------------------------------------------------------------------------------- /Utils/Panels/GroupBox/GroupBoxPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/GroupBox/GroupBoxPanel.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/GroupBox/GroupBoxPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/GroupBox/GroupBoxPanel.cs -------------------------------------------------------------------------------- /Utils/Panels/GroupBox/GroupBoxPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/GroupBox/GroupBoxPanel.resx -------------------------------------------------------------------------------- /Utils/Panels/IPanelExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/IPanelExt.cs -------------------------------------------------------------------------------- /Utils/Panels/IRedraw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/IRedraw.cs -------------------------------------------------------------------------------- /Utils/Panels/ObjectDropDownList/DropDownListPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/ObjectDropDownList/DropDownListPanel.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/ObjectDropDownList/DropDownListPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/ObjectDropDownList/DropDownListPanel.cs -------------------------------------------------------------------------------- /Utils/Panels/ObjectDropDownList/DropDownListPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/ObjectDropDownList/DropDownListPanel.resx -------------------------------------------------------------------------------- /Utils/Panels/ObjectRadioButtonGroup/RadioButtonGroupPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/ObjectRadioButtonGroup/RadioButtonGroupPanel.cs -------------------------------------------------------------------------------- /Utils/Panels/ObjectRadioButtonGroup/RadioButtonGroupPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/ObjectRadioButtonGroup/RadioButtonGroupPanel.resx -------------------------------------------------------------------------------- /Utils/Panels/ObjectTextLabel/ObjectTextLabelPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/ObjectTextLabel/ObjectTextLabelPanel.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/ObjectTextLabel/ObjectTextLabelPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/ObjectTextLabel/ObjectTextLabelPanel.cs -------------------------------------------------------------------------------- /Utils/Panels/ObjectTextLabel/ObjectTextLabelPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/ObjectTextLabel/ObjectTextLabelPanel.resx -------------------------------------------------------------------------------- /Utils/Panels/ObjectTextLabel/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/ObjectTextLabel/SetupForm.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/ObjectTextLabel/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/ObjectTextLabel/SetupForm.cs -------------------------------------------------------------------------------- /Utils/Panels/ObjectTextLabel/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/ObjectTextLabel/SetupForm.resx -------------------------------------------------------------------------------- /Utils/Panels/StringEditBox/StringEditBoxPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/StringEditBox/StringEditBoxPanel.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/StringEditBox/StringEditBoxPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/StringEditBox/StringEditBoxPanel.cs -------------------------------------------------------------------------------- /Utils/Panels/StringEditBox/StringEditBoxPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/StringEditBox/StringEditBoxPanel.resx -------------------------------------------------------------------------------- /Utils/Panels/StringTextEditor/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/StringTextEditor/SetupForm.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/StringTextEditor/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/StringTextEditor/SetupForm.cs -------------------------------------------------------------------------------- /Utils/Panels/StringTextEditor/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/StringTextEditor/SetupForm.resx -------------------------------------------------------------------------------- /Utils/Panels/StringTextEditor/StringTextEditorPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/StringTextEditor/StringTextEditorPanel.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/StringTextEditor/StringTextEditorPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/StringTextEditor/StringTextEditorPanel.cs -------------------------------------------------------------------------------- /Utils/Panels/StringTextEditor/StringTextEditorPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/StringTextEditor/StringTextEditorPanel.resx -------------------------------------------------------------------------------- /Utils/Panels/TextLabel/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/TextLabel/SetupForm.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/TextLabel/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/TextLabel/SetupForm.cs -------------------------------------------------------------------------------- /Utils/Panels/TextLabel/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/TextLabel/SetupForm.resx -------------------------------------------------------------------------------- /Utils/Panels/TextLabel/TextLabelPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/TextLabel/TextLabelPanel.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/TextLabel/TextLabelPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/TextLabel/TextLabelPanel.cs -------------------------------------------------------------------------------- /Utils/Panels/TextLabel/TextLabelPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/TextLabel/TextLabelPanel.resx -------------------------------------------------------------------------------- /Utils/Panels/VectorImage/ElementEllipse/ElementEllipse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/VectorImage/ElementEllipse/ElementEllipse.cs -------------------------------------------------------------------------------- /Utils/Panels/VectorImage/ElementEllipse/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/VectorImage/ElementEllipse/SetupForm.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/VectorImage/ElementEllipse/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/VectorImage/ElementEllipse/SetupForm.cs -------------------------------------------------------------------------------- /Utils/Panels/VectorImage/ElementEllipse/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/VectorImage/ElementEllipse/SetupForm.resx -------------------------------------------------------------------------------- /Utils/Panels/VectorImage/ElementLine/ElementLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/VectorImage/ElementLine/ElementLine.cs -------------------------------------------------------------------------------- /Utils/Panels/VectorImage/ElementLine/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/VectorImage/ElementLine/SetupForm.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/VectorImage/ElementLine/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/VectorImage/ElementLine/SetupForm.cs -------------------------------------------------------------------------------- /Utils/Panels/VectorImage/ElementLine/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/VectorImage/ElementLine/SetupForm.resx -------------------------------------------------------------------------------- /Utils/Panels/VectorImage/ElementPolygon/ElementPolygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/VectorImage/ElementPolygon/ElementPolygon.cs -------------------------------------------------------------------------------- /Utils/Panels/VectorImage/ElementPolygon/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/VectorImage/ElementPolygon/SetupForm.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/VectorImage/ElementPolygon/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/VectorImage/ElementPolygon/SetupForm.cs -------------------------------------------------------------------------------- /Utils/Panels/VectorImage/ElementPolygon/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/VectorImage/ElementPolygon/SetupForm.resx -------------------------------------------------------------------------------- /Utils/Panels/VectorImage/ElementRectangle/ElementRectangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/VectorImage/ElementRectangle/ElementRectangle.cs -------------------------------------------------------------------------------- /Utils/Panels/VectorImage/ElementRectangle/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/VectorImage/ElementRectangle/SetupForm.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/VectorImage/ElementRectangle/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/VectorImage/ElementRectangle/SetupForm.cs -------------------------------------------------------------------------------- /Utils/Panels/VectorImage/ElementRectangle/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/VectorImage/ElementRectangle/SetupForm.resx -------------------------------------------------------------------------------- /Utils/Panels/VectorImage/ElementText/ElementText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/VectorImage/ElementText/ElementText.cs -------------------------------------------------------------------------------- /Utils/Panels/VectorImage/ElementText/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/VectorImage/ElementText/SetupForm.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/VectorImage/ElementText/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/VectorImage/ElementText/SetupForm.cs -------------------------------------------------------------------------------- /Utils/Panels/VectorImage/ElementText/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/VectorImage/ElementText/SetupForm.resx -------------------------------------------------------------------------------- /Utils/Panels/VectorImage/IVectorElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/VectorImage/IVectorElement.cs -------------------------------------------------------------------------------- /Utils/Panels/VectorImage/OptionsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/VectorImage/OptionsForm.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/VectorImage/OptionsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/VectorImage/OptionsForm.cs -------------------------------------------------------------------------------- /Utils/Panels/VectorImage/OptionsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/VectorImage/OptionsForm.resx -------------------------------------------------------------------------------- /Utils/Panels/VectorImage/SetupForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/VectorImage/SetupForm.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/VectorImage/SetupForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/VectorImage/SetupForm.cs -------------------------------------------------------------------------------- /Utils/Panels/VectorImage/SetupForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/VectorImage/SetupForm.resx -------------------------------------------------------------------------------- /Utils/Panels/VectorImage/VectorImagePanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/VectorImage/VectorImagePanel.Designer.cs -------------------------------------------------------------------------------- /Utils/Panels/VectorImage/VectorImagePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/VectorImage/VectorImagePanel.cs -------------------------------------------------------------------------------- /Utils/Panels/VectorImage/VectorImagePanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Panels/VectorImage/VectorImagePanel.resx -------------------------------------------------------------------------------- /Utils/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Utils/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Utils/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Properties/Resources.resx -------------------------------------------------------------------------------- /Utils/Properties/licenses.licx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Properties/licenses.licx -------------------------------------------------------------------------------- /Utils/RepeatItemNameChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/RepeatItemNameChecker.cs -------------------------------------------------------------------------------- /Utils/Resources/Add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/Add.gif -------------------------------------------------------------------------------- /Utils/Resources/AddWizard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/AddWizard.gif -------------------------------------------------------------------------------- /Utils/Resources/AlignBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/AlignBottom.png -------------------------------------------------------------------------------- /Utils/Resources/AlignLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/AlignLeft.png -------------------------------------------------------------------------------- /Utils/Resources/AlignRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/AlignRight.png -------------------------------------------------------------------------------- /Utils/Resources/AlignTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/AlignTop.png -------------------------------------------------------------------------------- /Utils/Resources/Arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/Arrow.gif -------------------------------------------------------------------------------- /Utils/Resources/Book.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/Book.gif -------------------------------------------------------------------------------- /Utils/Resources/BringToFront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/BringToFront.png -------------------------------------------------------------------------------- /Utils/Resources/CenterH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/CenterH.png -------------------------------------------------------------------------------- /Utils/Resources/CenterV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/CenterV.png -------------------------------------------------------------------------------- /Utils/Resources/Check.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/Check.gif -------------------------------------------------------------------------------- /Utils/Resources/Clone.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/Clone.gif -------------------------------------------------------------------------------- /Utils/Resources/Collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/Collapse.gif -------------------------------------------------------------------------------- /Utils/Resources/Copy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/Copy.gif -------------------------------------------------------------------------------- /Utils/Resources/Crosshair.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/Crosshair.gif -------------------------------------------------------------------------------- /Utils/Resources/Cut.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/Cut.gif -------------------------------------------------------------------------------- /Utils/Resources/Delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/Delete.gif -------------------------------------------------------------------------------- /Utils/Resources/Down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/Down.gif -------------------------------------------------------------------------------- /Utils/Resources/Ellipse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/Ellipse.gif -------------------------------------------------------------------------------- /Utils/Resources/Eracer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/Eracer.gif -------------------------------------------------------------------------------- /Utils/Resources/Expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/Expand.gif -------------------------------------------------------------------------------- /Utils/Resources/Filter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/Filter.gif -------------------------------------------------------------------------------- /Utils/Resources/Find.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/Find.gif -------------------------------------------------------------------------------- /Utils/Resources/FindReplace.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/FindReplace.gif -------------------------------------------------------------------------------- /Utils/Resources/FitSize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/FitSize.png -------------------------------------------------------------------------------- /Utils/Resources/Line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/Line.gif -------------------------------------------------------------------------------- /Utils/Resources/Options.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/Options.gif -------------------------------------------------------------------------------- /Utils/Resources/Paste.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/Paste.gif -------------------------------------------------------------------------------- /Utils/Resources/Pencil.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/Pencil.gif -------------------------------------------------------------------------------- /Utils/Resources/Rectangle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/Rectangle.gif -------------------------------------------------------------------------------- /Utils/Resources/Redo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/Redo.gif -------------------------------------------------------------------------------- /Utils/Resources/Refresh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/Refresh.gif -------------------------------------------------------------------------------- /Utils/Resources/ScriptTemplate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/ScriptTemplate.txt -------------------------------------------------------------------------------- /Utils/Resources/SelectAll.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/SelectAll.gif -------------------------------------------------------------------------------- /Utils/Resources/SelectAll_Items.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/SelectAll_Items.gif -------------------------------------------------------------------------------- /Utils/Resources/SelectNone_Items.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/SelectNone_Items.gif -------------------------------------------------------------------------------- /Utils/Resources/SendToBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/SendToBack.png -------------------------------------------------------------------------------- /Utils/Resources/Setup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/Setup.gif -------------------------------------------------------------------------------- /Utils/Resources/Size.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/Size.gif -------------------------------------------------------------------------------- /Utils/Resources/StayOnTop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/StayOnTop.gif -------------------------------------------------------------------------------- /Utils/Resources/Text.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/Text.gif -------------------------------------------------------------------------------- /Utils/Resources/Track.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/Track.gif -------------------------------------------------------------------------------- /Utils/Resources/Undo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/Undo.gif -------------------------------------------------------------------------------- /Utils/Resources/Up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/Up.gif -------------------------------------------------------------------------------- /Utils/Resources/VarTemplate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/VarTemplate.txt -------------------------------------------------------------------------------- /Utils/Resources/document-smiley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/document-smiley.png -------------------------------------------------------------------------------- /Utils/Resources/package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/package.png -------------------------------------------------------------------------------- /Utils/Resources/text_indent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Resources/text_indent.png -------------------------------------------------------------------------------- /Utils/Segmentation/ISegmentItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Segmentation/ISegmentItem.cs -------------------------------------------------------------------------------- /Utils/Segmentation/SegmentBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Segmentation/SegmentBuilder.cs -------------------------------------------------------------------------------- /Utils/Snapshot/AddEditRecordForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Snapshot/AddEditRecordForm.Designer.cs -------------------------------------------------------------------------------- /Utils/Snapshot/AddEditRecordForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Snapshot/AddEditRecordForm.cs -------------------------------------------------------------------------------- /Utils/Snapshot/AddEditRecordForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Snapshot/AddEditRecordForm.resx -------------------------------------------------------------------------------- /Utils/Snapshot/Snapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Snapshot/Snapshot.cs -------------------------------------------------------------------------------- /Utils/Snapshot/SnapshotRecordsManagerForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Snapshot/SnapshotRecordsManagerForm.Designer.cs -------------------------------------------------------------------------------- /Utils/Snapshot/SnapshotRecordsManagerForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Snapshot/SnapshotRecordsManagerForm.cs -------------------------------------------------------------------------------- /Utils/Snapshot/SnapshotRecordsManagerForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Snapshot/SnapshotRecordsManagerForm.resx -------------------------------------------------------------------------------- /Utils/SpecialControls/ItemEditBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/SpecialControls/ItemEditBox.Designer.cs -------------------------------------------------------------------------------- /Utils/SpecialControls/ItemEditBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/SpecialControls/ItemEditBox.cs -------------------------------------------------------------------------------- /Utils/SpecialControls/ItemEditBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/SpecialControls/ItemEditBox.resx -------------------------------------------------------------------------------- /Utils/SpecialControls/OKCancelButton.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/SpecialControls/OKCancelButton.Designer.cs -------------------------------------------------------------------------------- /Utils/SpecialControls/OKCancelButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/SpecialControls/OKCancelButton.cs -------------------------------------------------------------------------------- /Utils/SpecialControls/OKCancelButton.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/SpecialControls/OKCancelButton.resx -------------------------------------------------------------------------------- /Utils/SpecialControls/PlayPause.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/SpecialControls/PlayPause.Designer.cs -------------------------------------------------------------------------------- /Utils/SpecialControls/PlayPause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/SpecialControls/PlayPause.cs -------------------------------------------------------------------------------- /Utils/SpecialControls/PlayPause.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/SpecialControls/PlayPause.resx -------------------------------------------------------------------------------- /Utils/SpecialControls/SliderControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/SpecialControls/SliderControl.cs -------------------------------------------------------------------------------- /Utils/SpecialControls/SlidingScale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/SpecialControls/SlidingScale.cs -------------------------------------------------------------------------------- /Utils/SpecialControls/ToggleSwitch/GraphicsExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/SpecialControls/ToggleSwitch/GraphicsExtensionMethods.cs -------------------------------------------------------------------------------- /Utils/SpecialControls/ToggleSwitch/ImageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/SpecialControls/ToggleSwitch/ImageHelper.cs -------------------------------------------------------------------------------- /Utils/SpecialControls/ToggleSwitch/ToggleSwitch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/SpecialControls/ToggleSwitch/ToggleSwitch.cs -------------------------------------------------------------------------------- /Utils/SpecialControls/ValueControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/SpecialControls/ValueControl.Designer.cs -------------------------------------------------------------------------------- /Utils/SpecialControls/ValueControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/SpecialControls/ValueControl.cs -------------------------------------------------------------------------------- /Utils/SpecialControls/ValueControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/SpecialControls/ValueControl.resx -------------------------------------------------------------------------------- /Utils/SpecialControls/VerticalProgressBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/SpecialControls/VerticalProgressBar.cs -------------------------------------------------------------------------------- /Utils/StringUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/StringUtils.cs -------------------------------------------------------------------------------- /Utils/Utils.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/Utils.csproj -------------------------------------------------------------------------------- /Utils/ValueScale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/ValueScale.cs -------------------------------------------------------------------------------- /Utils/ValuesCompare.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/ValuesCompare.cs -------------------------------------------------------------------------------- /Utils/WM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/WM.cs -------------------------------------------------------------------------------- /Utils/XMLAttributeReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/XMLAttributeReader.cs -------------------------------------------------------------------------------- /Utils/XMLUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/XMLUtils.cs -------------------------------------------------------------------------------- /Utils/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexor81/Process-Simulator-2-OpenSource/HEAD/Utils/packages.config --------------------------------------------------------------------------------