home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 9 / CDACTUAL9.iso / progs / CB / DATA.Z / IMAGEWN.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-05  |  1.9 KB  |  61 lines

  1. //----------------------------------------------------------------------------
  2. #ifndef ImageWnH
  3. #define ImageWnH
  4. //----------------------------------------------------------------------------
  5. #include <Buttons.hpp>
  6. #include <ExtCtrls.hpp>
  7. #include <FileCtrl.hpp>
  8. #include <StdCtrls.hpp>
  9. #include <ComCtrls.hpp>
  10. #include <Dialogs.hpp>
  11. #include <Forms.hpp>
  12. #include <Controls.hpp>
  13. #include <Graphics.hpp>
  14. #include <Classes.hpp>
  15. #include <SysUtils.hpp>
  16. #include <Messages.hpp>
  17. #include <Windows.hpp>
  18. #include <System.hpp>
  19. //----------------------------------------------------------------------------
  20. class TImageForm : public TForm
  21. {
  22. __published:
  23.     TBevel *Bevel1;
  24.     TBevel *Bevel2;
  25.     TLabel *Label2;
  26.     TDirectoryListBox *DirectoryListBox1;
  27.     TDriveComboBox *DriveComboBox1;
  28.     TEdit *FileEdit;
  29.     TGroupBox *UpDownGroup;
  30.     TSpeedButton *SpeedButton1;
  31.     TBitBtn *BitBtn1;
  32.     TGroupBox *DisabledGrp;
  33.     TSpeedButton *SpeedButton2;
  34.     TBitBtn *BitBtn2;
  35.     TPanel *Panel1;
  36.     TImage *Image1;
  37.     TBitBtn *ViewBtn;
  38.     TFilterComboBox *FilterComboBox1;
  39.     TCheckBox *GlyphCheck;
  40.     TCheckBox *StretchCheck;
  41.     TEdit *UpDownEdit;
  42.     TUpDown *UpDown1;
  43.     TFileListBox *FileListBox1;
  44.     void __fastcall FormCreate(TObject *Sender);
  45.     void __fastcall ViewBtnClick(TObject *Sender);
  46.     void __fastcall UpDownEditChange(TObject *Sender);
  47.     void __fastcall StretchCheckClick(TObject *Sender);
  48.     void __fastcall FileEditKeyPress(TObject *Sender, Char &Key);
  49.     void __fastcall GlyphCheckClick(TObject *Sender);
  50.     void __fastcall FileListBox1Click(TObject *Sender);
  51.     
  52. public:
  53.     AnsiString FormCaption;
  54.     void __fastcall ViewAsGlyph(const AnsiString FileExt);
  55.     virtual __fastcall TImageForm(TComponent *Owner);
  56. };
  57. //----------------------------------------------------------------------------
  58. extern TImageForm *ImageForm;
  59. //----------------------------------------------------------------------------
  60. #endif    
  61.