imgapp.~h

来自「jpeg 2D DCT transformation project」· ~H 代码 · 共 59 行

~H
59
字号
//---------------------------------------------------------------------------

#ifndef imgAppH
#define imgAppH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ComCtrls.hpp>
#include <ExtCtrls.hpp>

// Naglowek biblioteki zarzadzania modulem USB
#include "FTD2XX.h"
#include <Dialogs.hpp>
//---------------------------------------------------------------------------
class TForm1 : public TForm
{
__published:	// IDE-managed Components
   TStatusBar *StatusBar1;
   TGroupBox *GroupBox2;
   TLabel *Label7;
   TLabel *Label8;
   TLabel *Label9;
   TOpenDialog *OpenDialog1;
        TButton *Button5;
        TButton *Button6;
        TButton *Button1;
    TTimer *Timer1;
    TProgressBar *ProgressBar1;
   //void __fastcall Button2Click(TObject *Sender);
   //void __fastcall Memo1KeyPress(TObject *Sender, char &Key);
   //void __fastcall Button4Click(TObject *Sender);
        void __fastcall Button5Click(TObject *Sender);
        void __fastcall Button6Click(TObject *Sender);
        void __fastcall Button1Click(TObject *Sender);
        void __fastcall FormCreate(TObject *Sender);
    void __fastcall Timer1Timer(TObject *Sender);
private:	// User declarations
public:		// User declarations
   __fastcall TForm1(TComponent* Owner);
   void TForm1::send_bmp();
   void TForm1::read_bmp();
   // Zmienne zarzadzania modulem USB
   FT_STATUS ftStatus;
   FT_HANDLE ftHandle;
   DWORD numDevs;
   DWORD DevNum;
   DWORD devIndex;

   DWORD SendCounter;
   DWORD ReadCounter;

};
//---------------------------------------------------------------------------
extern PACKAGE TForm1 *Form1;
//---------------------------------------------------------------------------
#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?