guy 89d8a61d76 Patch level : 10.0 500
Files correlati     : ba0
Ricompilazione Demo : [ ]
Commento            :
Ripristinato comportamento error_box


git-svn-id: svn://10.65.10.50/trunk@19574 c028cbd2-c16b-5b4b-a496-9718f37d4682
2009-11-04 14:49:29 +00:00

34 lines
572 B
C++
Executable File

#ifndef __ABOUT_H
#define __ABOUT_H
#ifndef __MASK_H
#include <mask.h>
#endif
#ifndef __TREECTRL_H
#include <treectrl.h>
#endif
class TProperty_sheet : public TObject
{
bool _power;
TWindow* _ps;
protected:
void freeze(bool f);
public:
void add_cat(const char* prompt);
void add_prop(const char* prompt, const char* value);
void add_prop(const char* prompt, long value);
void set_read_only(bool ro = true);
KEY run();
TProperty_sheet(const char* title = "", int width = 78, int height = 20);
virtual ~TProperty_sheet();
};
void about();
#endif