home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------------------------------------
- // Borland C++Builder
- // Copyright (c) 1987, 1998 Inprise Corporation. All Rights Reserved.
- //---------------------------------------------------------------------------
- //---------------------------------------------------------------------------
- #ifndef mainH
- #define mainH
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- #include <Controls.hpp>
- #include <StdCtrls.hpp>
- #include <Forms.hpp>
- #include "TrayComp.h"
- #include <Menus.hpp>
- #include <ImgList.hpp>
- #include "CSPIN.h"
- #include <ComCtrls.hpp>
- //---------------------------------------------------------------------------
- class TForm1 : public TForm
- {
- __published: // IDE-managed Components
- TTrayComp *TrayComp1;
- TCheckBox *HideCheck;
- TCheckBox *VisibleCheck;
- TPopupMenu *PopupMenu1;
- TMenuItem *Restore1;
- TMenuItem *N1;
- TMenuItem *Exit1;
- TImageList *ImageList1;
- TCheckBox *AnimateCheck;
- TUpDown *IntervalUpDown;
- TStaticText *IntervalText;
- void __fastcall HideCheckClick(TObject *Sender);
- void __fastcall VisibleCheckClick(TObject *Sender);
- void __fastcall Restore1Click(TObject *Sender);
- void __fastcall Exit1Click(TObject *Sender);
- void __fastcall AnimateCheckClick(TObject *Sender);
-
-
-
- void __fastcall IntervalUpDownClick(TObject *Sender,
- TUDBtnType Button);
- private: // User declarations
- public: // User declarations
- __fastcall TForm1(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TForm1 *Form1;
- //---------------------------------------------------------------------------
- #endif
-