SYSTEMSE.H
上传用户:zhang8947
上传日期:2007-01-08
资源大小:1910k
文件大小:1k
源码类别:

多国语言处理

开发平台:

Visual C++

  1. // systemse.h : header file
  2. //
  3. class CSystemSetSheet ;
  4. class CCommonPage:public CPropertyPage
  5. {
  6. public:
  7. CCommonPage( UINT id )  ;
  8. // Generated message map functions
  9. //{{AFX_MSG(CCommonPage)
  10. virtual BOOL OnInitDialog();
  11. //}}AFX_MSG
  12. DECLARE_MESSAGE_MAP()
  13. friend CSystemSetSheet ;
  14. } ;
  15. #include "chinesep.h"
  16. #include "hotkey.h"
  17. #include "toolbox.h"
  18. #include "system.h"
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CSystemSetSheet dialog
  21. //页式对话框类,适用于任何页式对话框
  22. class CSystemSetSheet : public CPropertySheet
  23. {
  24. // Construction
  25. public:
  26. CSystemSetSheet( LPCTSTR pszCaption ,
  27. CWnd *pParentWnd = NULL , UINT uiSelectPage=0 );
  28. int DoModal() ; //Overrides
  29. // Operations                              
  30. private:      
  31.      BOOL  CreateStandardButtons();
  32.      void  CancelToClose();
  33.      void  RecalcLayout();
  34. void  CenterWindow( CWnd* pAlternateOwner= NULL ) ;
  35. // Implementation
  36. protected:
  37. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  38. // Generated message map functions
  39. //{{AFX_MSG(CSystemSetSheet)
  40. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  41. //}}AFX_MSG
  42. virtual void OnOK(void);
  43. virtual void OnApply(void);
  44. DECLARE_MESSAGE_MAP()
  45. };