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
messageF.h
Go to the documentation of this file.
1 
2 #ifndef messageFH
3 #define messageFH
4 
5 #include <Classes.hpp>
6 #include <Controls.hpp>
7 #include <StdCtrls.hpp>
8 #include <Forms.hpp>
9 #include <ExtCtrls.hpp>
10 #include <Graphics.hpp>
11 
12 class TfrmMessage : public TForm
13 {
14 __published: // IDE-managed Components
15  TTimer *tmrAnimate;
16  TPanel *pnlMain;
17  TImage *imgIcon;
18  TMemo *memMessage;
19  TMemo *memTitle;
20  void __fastcall FormShow(TObject *Sender);
21  void __fastcall tmrAnimateTimer(TObject *Sender);
22  void __fastcall FormActivate(TObject *Sender);
23 private: // User declarations
24  int StartCount;
25 public: // User declarations
26 virtual __fastcall TfrmMessage(TComponent* Owner);
27 };
28 
29 extern PACKAGE TfrmMessage *frmMessage;
30 
31 #endif