home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1998 May
/
Pcwk5b98.iso
/
Borland
/
Cplus45
/
BC45
/
OWLBWCC.PAK
/
BSTATBMP.H
< prev
next >
Wrap
C/C++ Source or Header
|
1995-08-29
|
943b
|
34 lines
//----------------------------------------------------------------------------
// ObjectWindows - (C) Copyright 1991, 1993 by Borland International
// Defines class TBStaticBmp. This is a static control that draws
// a bitmap
//----------------------------------------------------------------------------
#ifndef __BSTATBMP_H
#define __BSTATBMP_H
#ifndef __CONTROL_H
#include <owl\control.h>
#endif
//
// class TBStaticBmp
// ----- -----------
//
class TBStaticBmp : public TControl {
public:
TBStaticBmp(TWindow* parent,
int id,
const char far* text,
int x, int y, int w, int h,
TModule* module = 0);
TBStaticBmp(TWindow* parent, int resourceId, TModule* module = 0);
protected:
char far* GetClassName();
DECLARE_STREAMABLE_FROM_BASE(, TBStaticBmp, TControl);
};
#endif //__BSTATBMP_H