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
		
			
				
	
	
		
			34 lines
		
	
	
		
			572 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			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
 |