00001 00032 #ifndef LL_PANEL_LCD_H 00033 #define LL_PANEL_LCD_H 00034 00035 #include "llpanel.h" 00036 00037 class LLCheckBoxCtrl; 00038 00039 00040 class LLPanelLCD : public LLPanel 00041 { 00042 public: 00043 LLPanelLCD(); 00044 virtual ~LLPanelLCD(); 00045 00046 virtual BOOL postBuild(); 00047 virtual void refresh(); 00048 void apply(); 00049 void cancel(); 00050 00051 protected: 00052 S32 mLCDDestination; 00053 BOOL mDisplayChat; 00054 BOOL mDisplayRegion; 00055 BOOL mDisplayDebug; 00056 BOOL mDisplayDebugConsole; 00057 BOOL mDisplayLinden; 00058 BOOL mDisplayIM; 00059 00060 }; 00061 00062 #endif