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