File size: 2,010 Bytes
b1b3bae
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
'    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