-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPlayerWindowUnit.h
More file actions
69 lines (65 loc) · 2.29 KB
/
PlayerWindowUnit.h
File metadata and controls
69 lines (65 loc) · 2.29 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
61
62
63
64
65
66
67
68
69
//---------------------------------------------------------------------------
#ifndef PlayerWindowUnitH
#define PlayerWindowUnitH
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
#include <Vcl.Forms.hpp>
#include <Vcl.Dialogs.hpp>
#include <Vcl.Samples.Spin.hpp>
#include <Vcl.ComCtrls.hpp>
#include <Vcl.ExtCtrls.hpp>
#include "PlayerFrameUnit.h"
#include <Vcl.Buttons.hpp>
//---------------------------------------------------------------------------
class TMainForm : public TForm
{
__published: // IDE-managed Components
TOpenDialog *OpenDialog1;
TSpinEdit *PlayerAreaFormsSpinEdit;
TLabel *Label1;
TPageControl *PageControl1;
TPanel *BottomPanel;
TButton *PrevBtn;
TButton *NextBtn;
TButton *StopBtn;
TButton *ClearBtn;
TButton *PlayModeNormalBtn;
TButton *PlayModeLoopBtn;
TButton *PlayModeRepeatBtn;
TButton *PauseBtn;
TTrackBar *TrackBar;
TListBox *PlayListBox;
TPanel *TimePanel;
TStatusBar *StatusBar1;
TEdit *NewPlayListItemEdit;
TSpeedButton *OpenSpeedButton;
TSpeedButton *AddSpeedButton;
TLabel *Label2;
void __fastcall FormCreate(TObject *Sender);
void __fastcall FormDestroy(TObject *Sender);
void __fastcall PlayerAreaFormsSpinEditEnter(TObject *Sender);
void __fastcall PlayModeLoopBtnClick(TObject *Sender);
void __fastcall PlayModeNormalBtnClick(TObject *Sender);
void __fastcall PlayModeRepeatBtnClick(TObject *Sender);
void __fastcall PlayListBoxClick(TObject *Sender);
void __fastcall NextBtnClick(TObject *Sender);
void __fastcall PauseBtnClick(TObject *Sender);
void __fastcall PrevBtnClick(TObject *Sender);
void __fastcall StopBtnClick(TObject *Sender);
void __fastcall TrackBarChange(TObject *Sender);
void __fastcall OpenSpeedButtonClick(TObject *Sender);
void __fastcall AddSpeedButtonClick(TObject *Sender);
void __fastcall ClearBtnClick(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TMainForm(TComponent* Owner);
TTabSheet **PlayerAreaTabSheets;
TPlayerFrame **PlayerAreaFrames;
int PlayerAreaFormsNum;
};
//---------------------------------------------------------------------------
extern PACKAGE TMainForm *MainForm;
//---------------------------------------------------------------------------
#endif