79 lines
2.8 KiB
C++
79 lines
2.8 KiB
C++
/******************************************************************
|
|
|
|
JEDI-VCL Demo
|
|
|
|
Copyright (C) 2002 Project JEDI
|
|
|
|
Original author:
|
|
|
|
Contributor(s):
|
|
korecek: translation from Delphi to BCB
|
|
|
|
You may retrieve the latest version of this file at the JEDI-JVCL
|
|
home page, located at http://jvcl.sourceforge.net
|
|
|
|
The contents of this file are used with permission, subject to
|
|
the Mozilla Public License Version 1.1 (the "License"); you may
|
|
not use this file except in compliance with the License. You may
|
|
obtain a copy of the License at
|
|
http://www.mozilla.org/MPL/MPL-1_1Final.html
|
|
|
|
Software distributed under the License is distributed on an
|
|
"AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
implied. See the License for the specific language governing
|
|
rights and limitations under the License.
|
|
|
|
******************************************************************/
|
|
// $Id: fThread.h 10610 2006-05-19 13:35:08Z elahn $
|
|
//---------------------------------------------------------------------------
|
|
|
|
#ifndef fThreadH
|
|
#define fThreadH
|
|
//---------------------------------------------------------------------------
|
|
#include <Classes.hpp>
|
|
#include <Controls.hpp>
|
|
#include <StdCtrls.hpp>
|
|
#include <Forms.hpp>
|
|
#include "JvComponent.hpp"
|
|
#include "JvThread.hpp"
|
|
#include "JvThreadDialog.hpp"
|
|
//---------------------------------------------------------------------------
|
|
class TForm1 : public TForm
|
|
{
|
|
__published: // IDE-managed Components
|
|
TLabel *Label1;
|
|
TLabel *Label2;
|
|
TLabel *Label3;
|
|
TLabel *Label4;
|
|
TButton *Button1;
|
|
TButton *Button2;
|
|
TButton *Button3;
|
|
TButton *Button4;
|
|
TJvThread *JvThread1;
|
|
TJvThread *JvThread2;
|
|
TJvThreadSimpleDialog *JvThreadSimpleDialog1;
|
|
TJvThreadAnimateDialog *JvThreadAnimateDialog1;
|
|
void __fastcall JvThread1Execute(TObject *Sender, Pointer Params);
|
|
void __fastcall JvThread2Execute(TObject *Sender, Pointer Params);
|
|
void __fastcall Button1Click(TObject *Sender);
|
|
void __fastcall Button2Click(TObject *Sender);
|
|
void __fastcall Button3Click(TObject *Sender);
|
|
void __fastcall Button4Click(TObject *Sender);
|
|
void __fastcall FormCloseQuery(TObject *Sender, bool &CanClose);
|
|
private: // User declarations
|
|
protected:
|
|
void __fastcall enableButton1(void);
|
|
void __fastcall enableButton2(void);
|
|
public: // User declarations
|
|
int Value;
|
|
int Value2;
|
|
|
|
__fastcall TForm1(TComponent* Owner);
|
|
void __fastcall Stats1(void);
|
|
void __fastcall Stats2(void);
|
|
};
|
|
//---------------------------------------------------------------------------
|
|
extern PACKAGE TForm1 *Form1;
|
|
//---------------------------------------------------------------------------
|
|
#endif
|