c6b1ca245f
Files correlati : ba0 ba1 Ricompilazione Demo : [ ] Commento : Corretta gestione menu e barre in programmi manutenzione git-svn-id: svn://10.65.10.50/trunk@16743 c028cbd2-c16b-5b4b-a496-9718f37d4682
32 lines
624 B
C++
Executable File
32 lines
624 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;
|
|
int _icon[16];
|
|
|
|
protected:
|
|
virtual bool on_field_event(TOperable_field& o, TField_event e, long jolly);
|
|
short add_page(const TString& caption);
|
|
void set_page_caption(short page, const TString& caption, int icon);
|
|
|
|
public:
|
|
TOutlook_mask(TMenu& menu);
|
|
~TOutlook_mask();
|
|
};
|
|
|
|
#endif
|