| | |
| | | private: |
| | | void InitSystemLogManager(); |
| | | void FillSystemLogManager(); |
| | | CFont* GetOrCreateFont(int nFontSize); |
| | | void UpdatePageInfo(); |
| | | void SetDefaultFont(); |
| | | void AdjustControls(int nWidth, int nHeight); |
| | | void AdjustControls(float dScaleX, float dScaleY); |
| | | void AdjustControlFont(CWnd* pWnd, int nWidth, int nHeight); |
| | | void AdjustComboBoxStyle(CComboBox& comboBox); |
| | | void AdjustDateTimeCtrlStyle(CDateTimeCtrl& dateTimeCtrl); |
| | |
| | | int m_nInitialHeight; // 初始高度 |
| | | int m_nCurrentPage; // 当前页码 |
| | | int m_nTotalPages; // 总页数 |
| | | std::map<int, CFont*> m_mapFonts; // 管理字体的容器,键为字体大小 |
| | | std::map<int, CRect> m_mapCtrlLayouts; // 存储控件的初始布局信息 |
| | | std::map<int, CFont*> m_mapFonts; // 管理字体的容器,键为字体大小 |
| | | |
| | | private: |
| | | CComboBox m_comboType; |
| | |
| | | public: |
| | | virtual BOOL OnInitDialog(); |
| | | afx_msg void OnSize(UINT nType, int cx, int cy); |
| | | afx_msg void OnGetMinMaxInfo(MINMAXINFO* lpMMI); |
| | | afx_msg void OnBnClickedButtonSearch(); |
| | | afx_msg void OnBnClickedButtonPrevPage(); |
| | | afx_msg void OnBnClickedButtonNextPage(); |