-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathuFPrincipal.pas
148 lines (131 loc) · 4.44 KB
/
uFPrincipal.pas
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
//---------------------------------------------------------------------------//
// Projeto: integraEsus
// Sistema de integrador com ESUS para gestão de dados do programa PrevineBrasil
//
// Direitos Autorais Reservados (c) 2023 Marcelo M. Gonçalves
//
// Você pode obter a última versão desse arquivo no GitHub
// URL: https://github.com/marcelomgoncalves/integradorESUS
//
// Este sistema é software livre; você pode redistribuí-la e/ou modificá-la
// sob os termos da Licença Pública Geral Menor do GNU conforme publicada pela
// Free Software Foundation; tanto a versão 2.1 da Licença, ou (a seu critério)
// qualquer versão posterior.
//
// Este sistema é distribuída na expectativa de que seja útil, porém, SEM
// NENHUMA GARANTIA; nem mesmo a garantia implícita de COMERCIABILIDADE OU
// ADEQUAÇÃO A UMA FINALIDADE ESPECÍFICA. Consulte a Licença Pública Geral
// Menor do GNU para mais detalhes.
//
// Você deve ter recebido uma cópia da Licença Pública Geral Menor do GNU junto
// com esta biblioteca; se não, escreva para a Free Software Foundation, Inc.,
// no endereço 59 Temple Street, Suite 330, Boston, MA 02111-1307 USA.
// Você também pode obter uma copia da licença em:
// http://www.opensource.org/licenses/lgpl-license.php
//
// Marcelo M. Gonçalves - marcelomgoncalves@gmail.com
//---------------------------------------------------------------------------//
unit uFPrincipal;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, System.ImageList, Vcl.ImgList,
cxImageList, cxGraphics, Vcl.ComCtrls, Vcl.ToolWin, Vcl.ExtCtrls, Vcl.Buttons;
type
TFPrincipal = class(TForm)
ToolBar1: TToolBar;
ToolButton1: TToolButton;
ToolButton2: TToolButton;
ToolButton4: TToolButton;
ToolButton5: TToolButton;
ToolButton3: TToolButton;
cxImageList1: TcxImageList;
StatusBar1: TStatusBar;
Panel1: TPanel;
Panel2: TPanel;
Panel3: TPanel;
Panel4: TPanel;
Panel5: TPanel;
GridPanel1: TGridPanel;
SpeedButton1: TSpeedButton;
SpeedButton2: TSpeedButton;
SpeedButton3: TSpeedButton;
SpeedButton4: TSpeedButton;
procedure ToolButton3Click(Sender: TObject);
procedure ToolButton4Click(Sender: TObject);
procedure ToolButton1Click(Sender: TObject);
procedure FormClose(Sender: TObject; var Action: TCloseAction);
procedure SpeedButton2Click(Sender: TObject);
procedure SpeedButton1Click(Sender: TObject);
procedure SpeedButton3Click(Sender: TObject);
procedure SpeedButton4Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
Const
arqConfig = 'CONFIG.INI';
var
FPrincipal: TFPrincipal;
implementation
{$R *.dfm}
uses ABOUT, uFrmConfig, uDM, uFCidadao, uFGestantesInd1, uMenuIndicadores,
uMenuCovid19, uMenuGerarIndicadores;
procedure TFPrincipal.FormClose(Sender: TObject; var Action: TCloseAction);
begin
if Assigned(objConfiguracao) then
freeAndNil(objConfiguracao);
end;
procedure TFPrincipal.SpeedButton1Click(Sender: TObject);
begin
{ FGestantesInd1:=TFGestantesInd1.Create(self);
FGestantesInd1.Showmodal;
FGestantesInd1.free;
}
FMenuIndicadores:=TFMenuIndicadores.Create(self);
FMenuIndicadores.ShowModal;
FMenuIndicadores.free;
end;
procedure TFPrincipal.SpeedButton2Click(Sender: TObject);
begin
FCidadao:=TFCidadao.Create(self);
FCidadao.Showmodal;
FCidadao.free;
end;
procedure TFPrincipal.SpeedButton3Click(Sender: TObject);
begin
FMenuCovid19:=TFMenuCovid19.Create(self);
FMenuCovid19.ShowModal;
FMenuCovid19.free;
end;
procedure TFPrincipal.SpeedButton4Click(Sender: TObject);
begin
FMenuGerarIndicadores:=TFMenuGerarIndicadores.Create(self);
FMenuGerarIndicadores.ShowModal;
FMenuGerarIndicadores.free;
end;
procedure TFPrincipal.ToolButton1Click(Sender: TObject);
begin
try
frmConfig:=TFrmConfig.create(self);
frmConfig.ShowModal;
finally
FreeAndNil(frmConfig);
end;
end;
procedure TFPrincipal.ToolButton3Click(Sender: TObject);
begin
if Application.MessageBox('Você deseja sair do sistema ?','Atenção',MB_ICONQUESTION + MB_YESNO + MB_DEFBUTTON2) = IDYES then
close;
end;
procedure TFPrincipal.ToolButton4Click(Sender: TObject);
begin
try
frmaboutbox:=TFrmAboutBox.Create(self);
frmaboutbox.showModal;
finally
FreeAndNil(frmAboutBox);
end;
end;
end.