Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
StarUML Evológica Plugin
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
3
Merge Requests
3
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
evologica
StarUML Evológica Plugin
Commits
473fdaef
Commit
473fdaef
authored
Mar 06, 2020
by
Lucio Sandrini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Início da implementação da interface de cadastro formulário.
parent
e1a62b33
Changes
10
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
498 additions
and
1775 deletions
+498
-1775
Curio.mnu
EvoUMLPlugin/deploy/staruml-evologica/Curio.mnu
+3
-2
CurioAddIn.lpi
EvoUMLPlugin/src/CurioAddIn.lpi
+8
-1
DelphiAddInObj.pas
EvoUMLPlugin/src/DelphiAddInObj.pas
+42
-20
cxuCadastroDefinicaoClasse.pas
EvoUMLPlugin/src/cxuCadastroDefinicaoClasse.pas
+1
-1
ituCadastrarDefinicao.lfm
EvoUMLPlugin/src/ituCadastrarDefinicao.lfm
+56
-112
ituCadastrarDefinicao.pas
EvoUMLPlugin/src/ituCadastrarDefinicao.pas
+3
-61
ituCadastrarFormulario.lfm
EvoUMLPlugin/src/ituCadastrarFormulario.lfm
+126
-105
ituCadastrarFormulario.pas
EvoUMLPlugin/src/ituCadastrarFormulario.pas
+137
-301
ituExplorerV2.dfm
EvoUMLPlugin/src/ituExplorerV2.dfm
+119
-1169
ituServiceParameters.dfm
EvoUMLPlugin/src/ituServiceParameters.dfm
+3
-3
No files found.
EvoUMLPlugin/deploy/staruml-evologica/Curio.mnu
View file @
473fdaef
...
...
@@ -10,13 +10,14 @@
</HEADER>
<BODY>
<MAINMENU>
<MAINITEM
index=
"
6
"
base=
"NEW_TOP"
caption=
"Curio"
beginGroup=
"TRUE"
>
<MAINITEM
index=
"
7
"
base=
"NEW_TOP"
caption=
"Curio"
beginGroup=
"TRUE"
>
<MAINITEM
caption=
"Generate RegisterModelMappings"
actionId=
"1"
/>
<MAINITEM
caption=
"Code Generator"
actionId=
"6"
beginGroup=
"TRUE"
/>
<MAINITEM
caption=
"Quick OQL"
actionId=
"18"
beginGroup=
"TRUE"
/>
<MAINITEM
caption=
"OQL Studio"
actionId=
"19"
/>
<MAINITEM
caption=
"Element documentation"
actionId=
"12"
beginGroup=
"TRUE"
/>
<MAINITEM
caption=
"Convert ALL XSDs to Usecase XSD"
actionId=
"14"
beginGroup=
"TRUE"
/>
<MAINITEM
caption=
"Dynamo"
actionId=
"20"
beginGroup=
"TRUE"
/>
</MAINITEM>
<MAINITEM
caption=
"Curio"
beginGroup=
"TRUE"
availableWhen=
"MODEL_SELECTED"
>
...
...
EvoUMLPlugin/src/CurioAddIn.lpi
View file @
473fdaef
...
...
@@ -192,7 +192,7 @@
<PackageName
Value=
"LCL"
/>
</Item5>
</RequiredPackages>
<Units
Count=
"3
1
"
>
<Units
Count=
"3
2
"
>
<Unit0>
<Filename
Value=
"CurioAddIn.dpr"
/>
<IsPartOfProject
Value=
"True"
/>
...
...
@@ -375,6 +375,13 @@
<Filename
Value=
"cxuCadastroDefinicaoClasse.pas"
/>
<IsPartOfProject
Value=
"True"
/>
</Unit30>
<Unit31>
<Filename
Value=
"ituCadastrarFormulario.pas"
/>
<IsPartOfProject
Value=
"True"
/>
<ComponentName
Value=
"itCadastrarFormulario"
/>
<HasResources
Value=
"True"
/>
<ResourceBaseClass
Value=
"Form"
/>
</Unit31>
</Units>
</ProjectOptions>
<CompilerOptions>
...
...
EvoUMLPlugin/src/DelphiAddInObj.pas
View file @
473fdaef
...
...
@@ -469,27 +469,22 @@ var lDynamoDef: TitCadastrarFormulario;
lCadastroDefinicaoClasseUC
:
cxCadastroDefinicaoClasse
;
lModel
:
IModel
;
lUMLPackageAux
:
IUMLPackage
;
lUMLClassAux
:
IUMLClass
;
begin
//lDynamoDef := TitCadastrarFormulario.Create(nil);
//lDynamoDef.Show;
lModel
:=
gStarUMLApp
.
SelectionManager
.
GetSelectedModelAt
(
0
);
if
lModel
.
QueryInterface
(
IUMLClass
,
lUMLClassAux
)
=
S_OK
then
begin
lUMLClassAux
:=
lModel
as
IUMLClass
;
lDynamoDef
:=
nil
;
lSession
:=
GetServiceSession
;
if
Assigned
(
lSession
)
then
begin
lModel
:=
gStarUMLApp
.
SelectionManager
.
GetSelectedModelAt
(
0
);
lCadastroDefinicaoClasseUC
:=
cxCadastroDefinicaoClasse
.
Create
(
lSession
);
try
lDynamoDef
:=
TitCadastrarFormulario
.
Create
(
nil
,
lCadastroDefinicaoClasseUC
,
Nil
);
lDynamoDef
:=
TitCadastrarFormulario
.
Create
(
nil
,
lCadastroDefinicaoClasseUC
,
lUMLClassAux
);
try
if
lModel
.
QueryInterface
(
IUMLPackage
,
lUMLPackageAux
)
=
S_OK
then
begin
lDynamoDef
.
ClassPackage
:=
lModel
as
IUMLPackage
;
end
;
lDynamoDef
.
Show
;
//if lDynamoDef.ShowModal = mrok then
// gStarUMLApp.SelectInModelExplorer(lCadClasse.UMLClass);
if
lDynamoDef
.
ShowModal
=
mrok
then
gStarUMLApp
.
SelectInModelExplorer
(
lDynamoDef
.
UMLClass
);
finally
lDynamoDef
.
Free
;
end
;
...
...
@@ -497,6 +492,33 @@ begin
lCadastroDefinicaoClasseUC
.
Free
;
end
;
end
;
end
else
raise
Exception
.
Create
(
'This option is avaliable only for classes.'
);
//lDynamoDef := nil;
//lSession := GetServiceSession;
//if Assigned(lSession) then
//begin
// lModel := gStarUMLApp.SelectionManager.GetSelectedModelAt(0);
//
// lCadastroDefinicaoClasseUC := cxCadastroDefinicaoClasse.Create(lSession);
// try
// lDynamoDef := TitCadastrarFormulario.Create(nil, lCadastroDefinicaoClasseUC, Nil);
// try
// if lModel.QueryInterface(IUMLPackage, lUMLPackageAux) = S_OK then
// begin
// lDynamoDef.ClassPackage := lModel as IUMLPackage;
// end;
// lDynamoDef.ShowModal;
// //if lDynamoDef.ShowModal = mrok then
// // gStarUMLApp.SelectInModelExplorer(lCadClasse.UMLClass);
// finally
// lDynamoDef.Free;
// end;
// finally
// lCadastroDefinicaoClasseUC.Free;
// end;
//end;
end
;
...
...
EvoUMLPlugin/src/cxuCadastroDefinicaoClasse.pas
View file @
473fdaef
...
...
@@ -26,7 +26,7 @@ procedure cxCadastroDefinicaoClasse.rmObtemContexto(piField: utField; const piRe
var
lRequestMessage
:
mxRequestMessage
;
lResponseMessage
:
mxAnswerMessage
;
begin
lRequestMessage
:=
self
.
NewRequest
(
'RM_OBTE
M
_CONTEXTO'
,
piField
);
lRequestMessage
:=
self
.
NewRequest
(
'RM_OBTE
R
_CONTEXTO'
,
piField
);
try
lResponseMessage
:=
self
.
Session
.
SendRequest
(
lRequestMessage
);
try
...
...
EvoUMLPlugin/src/ituCadastrarDefinicao.lfm
View file @
473fdaef
object itCadastrarDefinicao: TitCadastrarDefinicao
Left =
0
Height =
240
Top =
0
Width =
320
ClientHeight =
240
ClientWidth =
320
Left =
398
Height =
323
Top =
166
Width =
817
ClientHeight =
323
ClientWidth =
817
LCLVersion = '2.1.0.0'
object pnPrincipal: TPanel
Left = 0
Height =
589
Height =
312
Top = 0
Width =
993
ClientHeight =
589
ClientWidth =
993
Width =
809
ClientHeight =
312
ClientWidth =
809
Color = 15855852
ParentColor = False
TabOrder = 0
object lblClasses: TLabel
Left =
350
Left =
144
Height = 18
Top =
192
Top =
48
Width = 132
Caption = 'CLASSES DO SISTEMA:'
Font.Color = clWindowText
...
...
@@ -30,50 +30,11 @@ object itCadastrarDefinicao: TitCadastrarDefinicao
ParentFont = False
end
object lblUC: TLabel
Left =
345
Left =
544
Height = 18
Top = 120
Width = 157
Caption = 'CÓDIGO DO CASO DE USO:'
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Trebuchet MS'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object lblClasseDoSistema: TLabel
Left = 329
Height = 18
Top = 430
Width = 189
Caption = 'ADICIONAR CLASSE AO SISTEMA'
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Trebuchet MS'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object lblCodigoDaClasse: TLabel
Left = 368
Height = 18
Top = 502
Width = 114
Caption = 'CÓDIGO DA CLASSE'
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Trebuchet MS'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object lblConexao: TLabel
Left = 54
Height = 18
Top = 30
Width = 132
Caption = 'STRING DE CONEXÃO:'
Top = 48
Width = 92
Caption = 'CASOS DE USO:'
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Trebuchet MS'
...
...
@@ -81,17 +42,10 @@ object itCadastrarDefinicao: TitCadastrarDefinicao
ParentColor = False
ParentFont = False
end
object edtUC: TEdit
Left = 254
Height = 23
Top = 144
Width = 360
TabOrder = 0
end
object lvClass: TListView
Left =
254
Height = 17
4
Top =
216
Left =
32
Height = 17
0
Top =
72
Width = 360
Columns = <
item
...
...
@@ -99,66 +53,48 @@ object itCadastrarDefinicao: TitCadastrarDefinicao
Width = 356
end>
ColumnClick = False
Font.Color = clWindowText
Font.Height = -11
Font.CharSet = ANSI_CHARSET
Font.Color = clBlack
Font.Height = -12
Font.Name = 'Trebuchet MS'
Font.Pitch = fpVariable
Font.Quality = fqDraft
GridLines = True
HideSelection = False
ParentFont = False
ParentShowHint = False
ReadOnly = True
RowSelect = True
TabOrder =
1
TabOrder =
0
ViewStyle = vsReport
end
object
edtAddClass: TEdit
Left =
25
4
Height =
23
Top =
454
object
ListView1: TListView
Left =
42
4
Height =
170
Top =
72
Width = 360
TabOrder = 2
end
object chkManual: TCheckBox
Left = 638
Height = 22
Top = 488
Width = 165
Caption = 'Adicionar Manualmente'
Font.Color = clWindowText
Font.Height = -13
Columns = <
item
Caption = 'NOME'
Width = 356
end>
ColumnClick = False
Font.CharSet = ANSI_CHARSET
Font.Name = 'Trebuchet MS'
Font.Style = [fsBold]
OnClick = chkManualClick
Font.Pitch = fpVariable
Font.Quality = fqDraft
GridLines = True
ParentFont = False
TabOrder = 3
TabOrder = 1
ViewStyle = vsReport
end
object edtCodigoDaClasse: TEdit
Left = 254
Height = 23
Top = 526
Width = 360
TabOrder = 4
end
object btnConectar: TButton
Left = 838
Height = 25
Top = 54
Width = 105
Caption = 'OBTER CLASSES'
OnClick = btnConectarClick
TabOrder = 5
end
object edtConexao: TEdit
Left = 54
Height = 26
Top = 54
Width = 750
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Trebuchet MS'
ParentFont = False
TabOrder = 6
Text = 'ServerName=localhost;portNumber=7777;systemCode=38;username=administrador;password='
object btnCancel: TButton
Left = 648
Height = 33
Top = 264
Width = 136
Caption = 'CANCELAR'
TabOrder = 2
end
end
object pnMenuSuperior: TPanel
...
...
@@ -226,4 +162,12 @@ object itCadastrarDefinicao: TitCadastrarDefinicao
Width = 993
TabOrder = 2
end
object btnSave: TButton
Left = 504
Height = 33
Top = 264
Width = 136
Caption = 'SALVAR'
TabOrder = 3
end
end
EvoUMLPlugin/src/ituCadastrarDefinicao.pas
View file @
473fdaef
...
...
@@ -14,20 +14,14 @@ type
{ TitCadastrarDefinicao }
TitCadastrarDefinicao
=
class
(
TForm
)
btnCancel
:
TButton
;
btnSave
:
TButton
;
FlowPanel1
:
TFlowPanel
;
jvGradientSuperior
:
TPanel
;
lblClasses
:
TLabel
;
lblUC
:
TLabel
;
edtUC
:
TEdit
;
ListView1
:
TListView
;
lvClass
:
TListView
;
edtAddClass
:
TEdit
;
chkManual
:
TCheckBox
;
lblClasseDoSistema
:
TLabel
;
edtCodigoDaClasse
:
TEdit
;
lblCodigoDaClasse
:
TLabel
;
btnConectar
:
TButton
;
edtConexao
:
TEdit
;
lblConexao
:
TLabel
;
pnDivisor
:
TPanel
;
pnMenuSuperior
:
TPanel
;
pnPrincipal
:
TPanel
;
...
...
@@ -37,8 +31,6 @@ type
sbSair
:
TSpeedButton
;
sbSalvar
:
TSpeedButton
;
procedure
FormShow
(
Sender
:
TObject
);
procedure
chkManualClick
(
Sender
:
TObject
);
procedure
btnConectarClick
(
Sender
:
TObject
);
...
...
@@ -63,61 +55,11 @@ begin
edtConexao
.
ReadOnly
:=
False
;
btnConectar
.
Enabled
:=
True
;
edtAddClass
.
Enabled
:=
False
;
edtCodigoDaClasse
.
Enabled
:=
False
;
end
;
procedure
TitCadastrarDefinicao
.
btnConectarClick
(
Sender
:
TObject
);
//var
// lRequest : acRequest;
begin
inherited
;
//
// itCadastrarDefinicao(self.Controller).NewRequest('RM_OBTER_CLASSES', itCadastrarDefinicao(Self.Controller).SendToInterface).Post;
// Self.Enabled := False;
// Screen.Cursor := crHourGlass;
// lRequest := itCadastrarDefinicao(self.Controller).NewRequest('RM_OBTER_CLASSES', itCadastrarDefinicao(Self.Controller).SendToInterface);
// lRequest.Message.RootField.AddAttribute('stringConnection').AsString := edtConexao.Text;
// lRequest.Post;
end
;
procedure
TitCadastrarDefinicao
.
chkManualClick
(
Sender
:
TObject
);
begin
inherited
;
if
chkManual
.
Checked
=
True
then
begin
lvClass
.
Enabled
:=
False
;
lvClass
.
ReadOnly
:=
True
;
edtAddClass
.
Enabled
:=
True
;
edtCodigoDaClasse
.
Enabled
:=
True
;
btnConectar
.
Enabled
:=
False
;
edtConexao
.
Enabled
:=
False
;
end
else
begin
lvClass
.
Enabled
:=
True
;
lvClass
.
ReadOnly
:=
True
;
edtAddClass
.
Enabled
:=
False
;
edtAddClass
.
Clear
;
edtCodigoDaClasse
.
Enabled
:=
False
;
edtCodigoDaClasse
.
Clear
;
// btnConectar.Enabled := True;
edtConexao
.
Enabled
:=
True
;
end
;
end
;
...
...
EvoUMLPlugin/src/ituCadastrarFormulario.lfm
View file @
473fdaef
object itCadastrarFormulario: TitCadastrarFormulario
Left =
463
Height = 5
50
Top = 2
56
Width =
1000
ClientHeight = 5
50
ClientWidth =
1000
Left =
356
Height = 5
11
Top = 2
18
Width =
948
ClientHeight = 5
11
ClientWidth =
948
LCLVersion = '2.1.0.0'
object scrlbxTudo: TScrollBox
Left = 0
Height =
908
Height =
869
Top = 0
Width = 1
718
HorzScrollBar.Page = 9
75
Width = 1
666
HorzScrollBar.Page = 9
31
HorzScrollBar.Tracking = True
VertScrollBar.Page = 49
8
VertScrollBar.Page = 49
0
VertScrollBar.Tracking = True
Anchors = [akTop, akLeft, akRight, akBottom]
BorderStyle = bsNone
ClientHeight =
908
ClientWidth = 1
718
ClientHeight =
869
ClientWidth = 1
666
TabOrder = 0
object Panel1: TPanel
Left = 0
Height =
908
Height =
869
Top = 0
Width = 1
718
Width = 1
666
Align = alClient
ClientHeight =
908
ClientWidth = 1
718
ClientHeight =
869
ClientWidth = 1
666
TabOrder = 0
object edtCampo: TEdit
Left =
447
Left =
104
Height = 23
Top =
95
Top =
448
Width = 142
AutoSize = False
OnKeyPress = edtCampoKeyPress
TabOrder = 0
end
object btnCancelar: TButton
Left =
6
85
Left =
7
85
Height = 49
Top = 44
8
Top = 44
0
Width = 145
Caption = 'CANCELAR'
OnClick = btnCancelarClick
TabOrder = 1
end
object btnSalvar: TButton
Left =
52
1
Left =
64
1
Height = 49
Top = 44
8
Top = 44
0
Width = 145
Caption = 'SALVAR'
OnClick = btnSalvarClick
...
...
@@ -60,24 +60,28 @@ object itCadastrarFormulario: TitCadastrarFormulario
Left = 16
Height = 300
Top = 130
Width = 6
50
Width = 6
04
Checkboxes = True
Columns = <
item
Caption = 'Nome'
Width = 350
Width = 180
end
item
Caption = 'Display Nome'
Width = 180
end
item
Caption = 'Obrigatório'
Width =
10
0
Width =
8
0
end
item
Caption = 'ID'
Width =
10
0
Width =
8
0
end
item
Caption = 'Tipo'
Width =
10
0
Width =
8
0
end>
ColumnClick = False
GridLines = True
...
...
@@ -89,20 +93,6 @@ object itCadastrarFormulario: TitCadastrarFormulario
OnClick = lvCamposClick
OnSelectItem = lvCamposSelectItem
end
object lstAtributos: TValueListEditor
Left = 685
Height = 145
Top = 285
Width = 289
FixedCols = 0
RowCount = 2
TabOrder = 4
OnValidate = lstAtributosValidate
ColWidths = (
144
141
)
end
object edtCodigo: TEdit
Left = 74
Height = 23
...
...
@@ -110,48 +100,20 @@ object itCadastrarFormulario: TitCadastrarFormulario
Width = 143
AutoSize = False
Enabled = False
TabOrder = 5
end
object chkRequerido: TCheckBox
Left = 684
Height = 22
Top = 188
Width = 96
Caption = 'OBRIGATÓRIO'
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Trebuchet MS'
OnClick = chkRequeridoClick
ParentFont = False
TabOrder = 6
end
object cbbTipo: TComboBox
Left = 685
Height = 24
Hint = 'Tipo'
Top = 255
Width = 145
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Trebuchet MS'
ItemHeight = 16
OnChange = cbbTipoChange
ParentFont = False
Style = csDropDownList
TabOrder = 7
TabOrder = 4
end
object btnAdd: TSpeedButton
Left =
596
Left =
253
Height = 25
Top =
95
Top =
448
Width = 70
Caption = 'Adicionar'
OnClick = btnAddClick
end
object lblNovoCampo: TLabel
Left =
360
Left =
16
Height = 18
Top =
100
Top =
451
Width = 81
Caption = 'NOVO CAMPO:'
Font.Color = clWindowText
...
...
@@ -160,14 +122,6 @@ object itCadastrarFormulario: TitCadastrarFormulario
ParentColor = False
ParentFont = False
end
object btnUp: TSpeedButton
Left = 685
Height = 25
Top = 149
Width = 70
Caption = 'Sobe'
OnClick = btnUpClick
end
object lblCodigo: TLabel
Left = 16
Height = 18
...
...
@@ -194,20 +148,34 @@ object itCadastrarFormulario: TitCadastrarFormulario
ParentColor = False
ParentFont = False
end
object lbl
Ordem
: TLabel
Left =
684
object lbl
ClasseName
: TLabel
Left =
88
Height = 18
Top =
130
Width =
43
Caption = '
ORDEM:
'
Top =
24
Width =
65
Caption = '
ClassName
'
Font.Color = clWindowText
Font.Height = -12
Font.Height = -13
Font.Name = 'Trebuchet MS'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object lblClassIDO: TLabel
Left = 192
Height = 18
Top = 24
Width = 52
Caption = 'ClassIDO'
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Trebuchet MS'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object lblTipoAtributo: TLabel
Left = 6
84
Left = 6
41
Height = 18
Top = 234
Width = 98
...
...
@@ -218,37 +186,90 @@ object itCadastrarFormulario: TitCadastrarFormulario
ParentColor = False
ParentFont = False
end
object cbbTipo: TComboBox
Left = 641
Height = 24
Hint = 'Tipo'
Top = 255
Width = 145
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Trebuchet MS'
ItemHeight = 16
OnChange = cbbTipoChange
ParentFont = False
Style = csDropDownList
TabOrder = 5
end
object lstAtributos: TValueListEditor
Left = 641
Height = 145
Top = 285
Width = 289
FixedCols = 0
RowCount = 2
TabOrder = 6
OnValidate = lstAtributosValidate
ColWidths = (
144
141
)
end
object btnUp: TSpeedButton
Left = 641
Height = 25
Top = 196
Width = 70
Caption = 'Sobe'
OnClick = btnUpClick
end
object btnDown: TSpeedButton
Left = 7
60
Left = 7
18
Height = 25
Top = 1
49
Top = 1
96
Width = 70
Caption = 'Desce'
OnClick = btnDownClick
end
object lbl
ClasseName
: TLabel
Left =
88
object lbl
Ordem
: TLabel
Left =
641
Height = 18
Top =
24
Width =
65
Caption = '
ClassName
'
Top =
175
Width =
43
Caption = '
ORDEM:
'
Font.Color = clWindowText
Font.Height = -1
3
Font.Height = -1
2
Font.Name = 'Trebuchet MS'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object lblClassIDO: TLabel
Left = 192
object rbNao: TRadioButton
Left = 866
Height = 19
Top = 199
Width = 42
Caption = 'Não'
OnChange = rbNaoChange
TabOrder = 7
end
object rbSim: TRadioButton
Left = 820
Height = 19
Top = 199
Width = 40
Caption = 'Sim'
OnChange = rbSimChange
TabOrder = 8
end
object lblObrigatorio: TLabel
Left = 820
Height = 18
Top =
24
Width =
52
Caption = '
ClassIDO
'
Top =
175
Width =
79
Caption = '
OBRIGATÓRIO:
'
Font.Color = clWindowText
Font.Height = -1
3
Font.Height = -1
2
Font.Name = 'Trebuchet MS'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
...
...
EvoUMLPlugin/src/ituCadastrarFormulario.pas
View file @
473fdaef
This diff is collapsed.
Click to expand it.
EvoUMLPlugin/src/ituExplorerV2.dfm
View file @
473fdaef
This diff is collapsed.
Click to expand it.
EvoUMLPlugin/src/ituServiceParameters.dfm
View file @
473fdaef
object itServiceParameters: TitServiceParameters
Left =
2317
Left =
795
Height = 333
Top =
486
Top =
334
Width = 314
BorderStyle = bsDialog
Caption = 'Propriedades do Serviço'
...
...
@@ -9,7 +9,7 @@ object itServiceParameters: TitServiceParameters
ClientWidth = 314
ParentFont = True
Position = poScreenCenter
LCLVersion = '2.
0.2
.0'
LCLVersion = '2.
1.0
.0'
object Panel2: TPanel
Left = 0
Height = 284
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment