30 lines
553 B
C
30 lines
553 B
C
|
#ifndef __BA0103_H
|
||
|
#define __BA0103_H
|
||
|
|
||
|
#ifndef TMenu_tree
|
||
|
#include "ba0102.h"
|
||
|
#endif
|
||
|
|
||
|
#ifndef __EXECP_H
|
||
|
#include <execp.h>
|
||
|
#endif
|
||
|
|
||
|
///////////////////////////////////////////////////////////
|
||
|
// TOutlook_mask
|
||
|
///////////////////////////////////////////////////////////
|
||
|
|
||
|
class TOutlook_mask : public TSpidey_mask
|
||
|
{
|
||
|
TMenu_tree _tree;
|
||
|
|
||
|
protected:
|
||
|
virtual bool on_field_event(TOperable_field& o, TField_event e, long jolly);
|
||
|
enum { DLG_TREE = 101, DLG_LOOK = 102, DLG_MAIN = 103 };
|
||
|
|
||
|
public:
|
||
|
TOutlook_mask(TMenu& menu);
|
||
|
~TOutlook_mask();
|
||
|
};
|
||
|
|
||
|
#endif
|