home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1998 May
/
Pcwk5b98.iso
/
Borland
/
Cplus45
/
BC45
/
GDIDEMO.PAK
/
ARTY.H
< prev
next >
Wrap
C/C++ Source or Header
|
1995-08-29
|
1KB
|
39 lines
//----------------------------------------------------------------------------
// ObjectWindows - (C) Copyright 1991, 1993 by Borland International
// Arty demo window object header
//----------------------------------------------------------------------------
#ifndef __ARTY_H
#define __ARTY_H
#include "demobase.h"
class _EXPCLASS TList;
class _EXPCLASS TStatic;
class TArtyWindow : public TBaseDemoWindow {
public:
TArtyWindow();
~TArtyWindow();
void TimerTick();
protected:
void EvLButtonDown(UINT modKeys, TPoint& point);
void EvRButtonDown(UINT modKeys, TPoint& point);
void EvSize(UINT, TSize& size);
void Paint(TDC& dc, BOOL erase, TRect& rect);
private:
TList* List;
TList* BigLineList;
TList* IconicLineList;
int TextHeight;
BOOL Iconized;
BOOL Paused;
TStatic* StaticControl;
DECLARE_RESPONSE_TABLE(TArtyWindow);
DECLARE_CASTABLE;
};
#endif