home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / borland / cb / setup / cbuilder / data.z / IMAGEWN.H < prev    next >
C/C++ Source or Header  |  1997-02-28  |  2KB  |  66 lines

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