/** * @file UICmdMsgView.h * @brief Server UIFramework¿¡¼­ »ç¿ëÇÏ´Â List, InfoÄÁÆ®·Ñ * @remarks * @author °­µ¿¸í(edith2580@gmail.com) * @date 2009-05-09 */ #pragma once namespace NaveServer { class UICmdMsgView { public: UICmdMsgView(); ~UICmdMsgView(); public: #define MAX_MSGLIST 1024 #define MAX_MSGSTRING 1024 #define INFO_HEIGHT 200 #define ID_INFO 201 #define ID_MSGVIEW 202 static HWND s_hInfoWnd; // ¸®½ºÆ® static HWND s_hListWnd; // ¸®½ºÆ® static HWND InitMsgView( HWND hParent, HFONT hFont ); static VOID ClrarMsgView( void ); static VOID UpdateInfo(WCHAR* strInfo); static VOID ResizeLog( HWND hParent ); // ListView ÀÔ·Â. static LRESULT OnVkeyToItem( HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam ); }; }