7be186e709
Files correlati : ba0 ba1 Ricompilazione Demo : [ ] Commento : Aggiunto supporto per nuovo stile di menu: un applauso per il nuovo Outlook Fashion Style! git-svn-id: svn://10.65.10.50/trunk@16067 c028cbd2-c16b-5b4b-a496-9718f37d4682
30 lines
553 B
C++
Executable File
30 lines
553 B
C++
Executable File
#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
|