00001
00002
00003
00004
00005
00006
00007
00008
00009
00011
00012 #ifndef _COMMON_CH_CONTROL_BASE_H_
00013 #define _COMMON_CH_CONTROL_BASE_H_
00014
00015 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
00016 #pragma interface "common_ch_control_base.h"
00017 #endif
00018
00036 class CommonChControlBase: public wxPanel
00037 {
00038 DECLARE_DYNAMIC_CLASS( CommonChControlBase )
00039 public:
00041 CommonChControlBase( );
00042 CommonChControlBase( wxWindow* parent, wxWindowID id, const wxPoint& pos, const wxSize& size, long style);
00043
00044 virtual void SetMediumLabel( double value);
00045 virtual void SetOverloadBackground( const wxColor& color);
00046 virtual void SetEnable( bool enable);
00047 };
00048
00049 #endif
00050