home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Windoware
/
WINDOWARE_1_6.iso
/
source
/
lvswin31
/
lvspick.hpp
< prev
next >
Wrap
C/C++ Source or Header
|
1992-02-03
|
872b
|
39 lines
/*
* LVS Windows
* The Window Class System
*
* Copyright 1991 (c), Lake View Software
* 4321 Harborough Rd.
* Columbus, OH 43220
* All rights reserved.
*/
// Window Pick list class
#ifndef LVSPICK_HPP
#define LVSPICK_HPP
#include "LVSwin.HPP"
class WinPick:public WinObj
{
protected:
char **pick_list;
int count;
int bar_attr;
int pointer,cursor;
void up ();
void down ();
void mouse_routine (int y, int x);
unsigned char bor_char (int y, int x, unsigned char &);
public:
WinPick ();
~WinPick ();
void prompt (char **list,int num=-1);
int read (int start = 0);
int set_barattr (int attr); // returns old value
};
#endif