Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
1.3 KiB

4 years ago
  1. /************************************************************************
  2. * *
  3. * PAGECOMP.H *
  4. * *
  5. * Copyright (C) Microsoft Corporation 1995 *
  6. * All Rights reserved. *
  7. * *
  8. ************************************************************************/
  9. #ifndef _HPJ_DOC
  10. #include "hpjdoc.h"
  11. #endif
  12. #ifndef __CPROP_H__
  13. #include "prop.h"
  14. #include "optionpg.h"
  15. #endif
  16. class CPageCompress : public COptionsPage
  17. {
  18. public:
  19. CPageCompress(COptions* pcoption);
  20. protected:
  21. virtual void DoDataExchange(CDataExchange* pDX);
  22. virtual BOOL OnInitDialog();
  23. void InitControls(void);
  24. COptions* pcopt;
  25. RECT m_rcCustom;
  26. RECT m_rcGroup;
  27. // The following sections are ClassWizard maintained
  28. public:
  29. //{{AFX_DATA(CPageCompress)
  30. enum { IDD = IDD_PAGE_COMPRESSION };
  31. BOOL m_fUseOldPhrase;
  32. BOOL m_fOldPhrase;
  33. BOOL m_fTextHall;
  34. BOOL m_fTextPhrase;
  35. BOOL m_fTextZeck;
  36. //}}AFX_DATA
  37. protected:
  38. // Generated message map functions
  39. //{{AFX_MSG(CPageCompress)
  40. afx_msg void OnCompressionTxtHall();
  41. afx_msg void OnCompressionTxtPhrase();
  42. afx_msg void OnMaxCompression();
  43. afx_msg void OnNoCompression();
  44. afx_msg void OnCustomize();
  45. //}}AFX_MSG
  46. DECLARE_MESSAGE_MAP()
  47. LRESULT OnContextMenu(WPARAM wParam, LPARAM lParam);
  48. LRESULT OnHelp(WPARAM wParam, LPARAM lParam);
  49. void OnPaint();
  50. };