forked from AlbertBall/railway-dot-exe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ActionsDueUnit.h
36 lines (33 loc) · 1.33 KB
/
ActionsDueUnit.h
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
//---------------------------------------------------------------------------
#ifndef ActionsDueUnitH
#define ActionsDueUnitH
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
#include <Vcl.Forms.hpp>
#include <Vcl.ExtCtrls.hpp>
#include <windows.h> //needed for 64 bit compilation
//---------------------------------------------------------------------------
class TActionsDueForm : public TForm
{
__published: // IDE-managed Components
TPanel *ActionsDuePanel;
TLabel *ActionsDuePanelLabel;
TListBox *ActionsDueListBox;
void __fastcall FormCreate(TObject *Sender);
void __fastcall ActionsDueListBoxMouseDown(TObject *Sender, TMouseButton Button,
TShiftState Shift, int X, int Y);
void __fastcall ActionsDueListBoxMouseUp(TObject *Sender, TMouseButton Button,
TShiftState Shift, int X, int Y);
private: // User declarations
public: // User declarations
//variables
bool ActionsDueListBoxRightMouseButtonDown;
//functions
__fastcall TActionsDueForm(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TActionsDueForm *ActionsDueForm;
//---------------------------------------------------------------------------
#endif