This repository was archived by the owner on Sep 16, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCodigo.h
More file actions
44 lines (41 loc) · 1.34 KB
/
Codigo.h
File metadata and controls
44 lines (41 loc) · 1.34 KB
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
//---------------------------------------------------------------------------
#ifndef CodigoH
#define CodigoH
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <FMX.Controls.hpp>
#include <FMX.Forms.hpp>
#include <FMX.Layouts.hpp>
#include <FMX.Memo.hpp>
#include <FMX.Types.hpp>
#include <FMX.Objects.hpp>
#include <FMX.StdCtrls.hpp>
#include <FMX.TabControl.hpp>
//---------------------------------------------------------------------------
class TfrmCodigo : public TForm
{
__published: // IDE-managed Components
TMemo *mmCodigo;
TRectangle *bmPrincipal;
TSpeedButton *btAlterar;
TLine *Linha1;
TSpeedButton *btVerificar;
TLine *Linha2;
TSpeedButton *btEstilo;
TTabControl *SelecAba;
TTabItem *abaCodigo;
TTabItem *abaEstilo;
TMemo *mmEstilo;
void __fastcall FormCreate(TObject *Sender);
void __fastcall FormShow(TObject *Sender);
void __fastcall mmCodigoChange(TObject *Sender);
void __fastcall btAlterarClick(TObject *Sender);
void __fastcall FormActivate(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TfrmCodigo(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TfrmCodigo *frmCodigo;
//---------------------------------------------------------------------------
#endif