#ifndef __ABOUT_H #define __ABOUT_H #ifndef __MASK_H #include #endif #ifndef __TREECTRL_H #include #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