The Winamp Remote Control suite
a remote control client and plugin for Winamp 2.x, 5.x
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
CommandF.h
Go to the documentation of this file.
1 
2 #ifndef CommandFH
3 #define CommandFH
4 
5 #include <Classes.hpp>
6 #include <Controls.hpp>
7 #include <StdCtrls.hpp>
8 #include <Forms.hpp>
9 #include <ComCtrls.hpp>
10 #include <ToolWin.hpp>
11 
12 class TfrmCommands : public TForm
13 {
14 __published: // IDE-managed Components
15  TToolBar *tbCommands;
16  TToolButton *tbtnPrevious;
17  TToolButton *tbtnPlay;
18  TToolButton *tbtnPause;
19  TToolButton *tbtnStop;
20  TToolButton *tbtnNext;
21  void __fastcall FormShow(TObject *Sender);
22  void __fastcall FormCreate(TObject *Sender);
23  void __fastcall FormDestroy(TObject *Sender);
24 private: // User declarations
25 public: // User declarations
26  __fastcall TfrmCommands(TComponent* Owner);
27 };
28 
29 extern PACKAGE TfrmCommands *frmCommands;
30 
31 #endif