OptionsQuickPaste.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. #if !defined(AFX_OPTIONSQUICKPASTE_H__69465009_2717_4BD5_BFFC_8CD537732050__INCLUDED_)
  2. #define AFX_OPTIONSQUICKPASTE_H__69465009_2717_4BD5_BFFC_8CD537732050__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // OptionsQuickPaste.h : header file
  7. #include "NumberEdit.h"
  8. #include "OptionsSheet.h"
  9. #include "afxwin.h"
  10. //
  11. /////////////////////////////////////////////////////////////////////////////
  12. // COptionsQuickPaste dialog
  13. class COptionsQuickPaste : public CPropertyPage
  14. {
  15. DECLARE_DYNCREATE(COptionsQuickPaste)
  16. // Construction
  17. public:
  18. COptionsQuickPaste();
  19. ~COptionsQuickPaste();
  20. // Dialog Data
  21. //{{AFX_DATA(COptionsQuickPaste)
  22. enum { IDD = IDD_OPTIONS_QUICK_PASTE };
  23. CButton m_EnsureEntireWindowVisible;
  24. CButton m_ShowAllInMainList;
  25. CButton m_FindAsYouType;
  26. CButton m_btDrawRTF;
  27. CButton m_btShowThumbnails;
  28. CButton m_btDefaultButton;
  29. CButton m_btFont;
  30. CButton m_btShowText;
  31. CNumberEdit m_eLinesPerRow;
  32. CNumberEdit m_eTransparencyPercent;
  33. CButton m_btEnableTransparency;
  34. CButton m_btDescShowLeadingWhiteSpace;
  35. //}}AFX_DATA
  36. // Overrides
  37. // ClassWizard generate virtual function overrides
  38. //{{AFX_VIRTUAL(COptionsQuickPaste)
  39. public:
  40. virtual BOOL OnApply();
  41. protected:
  42. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  43. //}}AFX_VIRTUAL
  44. protected:
  45. COptionsSheet *m_pParent;
  46. CFont m_Font;
  47. LOGFONT m_LogFont;
  48. CString m_csTitle;
  49. void FillThemes();
  50. // Implementation
  51. protected:
  52. // Generated message map functions
  53. //{{AFX_MSG(COptionsQuickPaste)
  54. virtual BOOL OnInitDialog();
  55. afx_msg void OnButtonFont();
  56. afx_msg void OnButtonDefaultFault();
  57. //}}AFX_MSG
  58. DECLARE_MESSAGE_MAP()
  59. public:
  60. CButton m_PromptForDelete;
  61. CButton m_elevatedPrivileges;
  62. CButton m_showInTaskBar;
  63. CComboBox m_cbTheme;
  64. afx_msg void OnBnClickedButtonTheme();
  65. CButton m_alwaysShowScrollBar;
  66. CEdit m_diffPathEditBox;
  67. afx_msg void OnBnClickedButtonDiffBrowse();
  68. };
  69. //{{AFX_INSERT_LOCATION}}
  70. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  71. #endif // !defined(AFX_OPTIONSQUICKPASTE_H__69465009_2717_4BD5_BFFC_8CD537732050__INCLUDED_)