home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
ool.zip
/
OOL
/
include
/
xbar.h
< prev
next >
Wrap
C/C++ Source or Header
|
1997-03-09
|
1KB
|
28 lines
#ifndef __OOL_XBAR_H__
#define __OOL_XBAR_H__
/*===========================================================================*/
/* OOL ------------------- the Open Object Library ------------- OS/2 Beta 1 */
/*===========================================================================*/
/* class: XBar */
/* derived from: XChart */
/* last update: 12/96 */
/* programmed by: Stefan von Brauk (sbrauk@gwdg.de) */
/*===========================================================================*/
#include "XChart.h"
#include "XBox.h"
class _export_ XBar: public XChart
{
XBox ** box;
public:
XBar( const XWindow * w, const XRect*, const LONG id, const LONG st = 0, const char* t = NULL);
void Calculate( void );
void GetItemColor( const USHORT index, XColor * );
void SetItemColor( const USHORT index, const XColor *);
void SetItemCount( const USHORT count );
};
#endif