-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathUnitAddonsControl.h
More file actions
60 lines (55 loc) · 2.72 KB
/
Copy pathUnitAddonsControl.h
File metadata and controls
60 lines (55 loc) · 2.72 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*
╔══╦╗╔╗╔╦══╗╔══╗╔══╗ ╔══╦══╦════╦╗╔╗ ╔╗─╔══╦╗╔╦╗─╔╦══╦╗╔╦═══╦═══╗
║╔═╣║║║║║╔╗║║╔═╝╚╗╔╝ ║╔═╩╗╔╩═╗╔═╣║║║ ║║─║╔╗║║║║╚═╝║╔═╣║║║╔══╣╔═╗║
║╚═╣║║║║║╚╝╚╣╚═╗─║║ ║╚═╗║║──║║─║╚╝║ ║║─║╚╝║║║║╔╗─║║─║╚╝║╚══╣╚═╝║
╚═╗║║║║║║╔═╗║╔═╝─║║ ╚═╗║║║──║║─║╔╗║ ║║─║╔╗║║║║║╚╗║║─║╔╗║╔══╣╔╗╔╝
╔═╝║╚╝╚╝║╚═╝║║──╔╝╚╗ ╔═╝╠╝╚╗─║║─║║║║ ║╚═╣║║║╚╝║║─║║╚═╣║║║╚══╣║║║
╚══╩═╝╚═╩═══╩╝──╚══╝ ╚══╩══╝─╚╝─╚╝╚╝ ╚══╩╝╚╩══╩╝─╚╩══╩╝╚╩═══╩╝╚╝
Created by FOXente (Aradam)
License GPL-3.0
*/
#ifndef UnitAddonsControlH
#define UnitAddonsControlH
#include <System.Classes.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
#include <Vcl.Forms.hpp>
#include "sListBox.hpp"
#include "sBitBtn.hpp"
#include "sLabel.hpp"
#include <Vcl.Buttons.hpp>
#include "acImage.hpp"
#include <Vcl.ExtCtrls.hpp>
#include <Vcl.Graphics.hpp>
class TFormAddonsControl : public TForm
{
__published : // IDE-managed Components
TsListBox *sListBoxAvailabledAddons;
TsListBox *sListBoxSelectedAddons;
TsLabel *sLabelAvailabledAddons;
TsLabel *sLabelSelectedAddons;
TsBitBtn *sBitBtnSelect;
TsBitBtn *sBitBtnUnselect;
TsBitBtn *sBitBtnOpenExplorer;
TsImage *sImageMiniScreen;
TsLabel *sLabelMapName;
TsLabel *sLabelMapInfo;
TsBitBtn *sBitBtnPrevious;
TsBitBtn *sBitBtnZoom;
TsBitBtn *sBitBtnNext;
void __fastcall FormShow (TObject *Sender);
void __fastcall sListBoxesClick (TObject *Sender);
void __fastcall sBitBtnPreviousClick (TObject *Sender);
void __fastcall sBitBtnNextClick (TObject *Sender);
void __fastcall sBitBtnZoomClick (TObject *Sender);
void __fastcall sBitBtnUnselectClick (TObject *Sender);
void __fastcall sBitBtnSelectClick (TObject *Sender);
void __fastcall sBitBtnOpenExplorerClick(TObject *Sender);
private : // User declarations
public : // User declarations
__fastcall TFormAddonsControl (TComponent* Owner);
};
extern PACKAGE TFormAddonsControl *FormAddonsControl;
extern PACKAGE TsListBox *LastObject;
extern PACKAGE int CurScreenIndex;
#endif