campo-sirio/sc/sc2201.h
angelo aa24496cc3 Aggiunta la stampa scadenzario. Non che sia finita, anzi...
git-svn-id: svn://10.65.10.50/trunk@2121 c028cbd2-c16b-5b4b-a496-9718f37d4682
1995-11-09 16:27:05 +00:00

33 lines
658 B
C++
Executable File

#ifndef __RELATION_H
#include <relation.h>
#endif
#ifndef __UTILITY_H
#include <utility.h>
#endif
#ifndef __EXPR_H
#include <expr.h>
#endif
#ifndef __SHEET_H
#include <sheet.h>
#endif
class TCursor_sheet_RecNo : public TCursor_sheet
{
TBit_array _recnos;
protected:
virtual bool on_key(KEY k);
public:
TCursor_sheet_RecNo(TCursor * cursor, const char* fields,
const char * title, const char * head, byte buttons = 0);
virtual ~TCursor_sheet_RecNo() {}
bool rec_checked(TRecnotype n) { return _recnos[n]; }
void rec_check(TRecnotype n, bool on = TRUE) ;
void rec_uncheck(TRecnotype n) { rec_check(n,FALSE); }
};