Dwsim / data /DWSIM.Interfaces /IExtender.vb
introvoyz041's picture
Migrated from GitHub
b1b3bae verified
' DWSIM - Extender Interface definitions
' Copyright 2020-2022 Daniel Wagner O. de Medeiros
'
' This file is part of DWSIM.
'
' DWSIM is free software: you can redistribute it and/or modify
' it under the terms of the GNU General Public License as published by
' the Free Software Foundation, either version 3 of the License, or
' (at your option) any later version.
'
' DWSIM is distributed in the hope that it will be useful,
' but WITHOUT ANY WARRANTY; without even the implied warranty of
' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
' GNU General Public License for more details.
'
' You should have received a copy of the GNU General Public License
' along with DWSIM. If not, see <http://www.gnu.org/licenses/>.
''' <summary>
'''
''' </summary>
Public Interface IExtenderCollection
ReadOnly Property ID As String
ReadOnly Property Description As String
ReadOnly Property DisplayText As String
ReadOnly Property Category As Enums.ExtenderCategory
ReadOnly Property Level As Enums.ExtenderLevel
ReadOnly Property Collection As List(Of IExtender)
End Interface
Public Interface IExtenderCollection2
ReadOnly Property InsertAtPosition As Integer
Sub SetMenuItem(menuitem As Object)
End Interface
Public Interface IExtender
ReadOnly Property ID As String
Sub SetMainWindow(mainwindow As System.Windows.Forms.Form)
Sub SetFlowsheet(form As IFlowsheet)
ReadOnly Property DisplayText As String
ReadOnly Property DisplayImage As System.Drawing.Bitmap
ReadOnly Property InsertAtPosition As Integer
Sub Run()
End Interface
Public Interface IExtender2
Sub SetMenuItem(menuitem As Object)
End Interface
Public Interface IExtender3
Sub ReleaseResources()
End Interface
Public Interface IExtender4
Sub SetParameter(pname As String, pvalue As Object)
End Interface
Public Interface IExtender5
Property LoadInAutomationMode As Boolean
End Interface