PPageSubStyle.h
上传用户:tangyu_668
上传日期:2014-02-27
资源大小:678k
文件大小:3k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. /* 
  2.  * Copyright (C) 2003-2006 Gabest
  3.  * http://www.gabest.org
  4.  *
  5.  *  This Program is free software; you can redistribute it and/or modify
  6.  *  it under the terms of the GNU General Public License as published by
  7.  *  the Free Software Foundation; either version 2, or (at your option)
  8.  *  any later version.
  9.  *   
  10.  *  This Program is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13.  *  GNU General Public License for more details.
  14.  *   
  15.  *  You should have received a copy of the GNU General Public License
  16.  *  along with GNU Make; see the file COPYING.  If not, write to
  17.  *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 
  18.  *  http://www.gnu.org/copyleft/gpl.html
  19.  *
  20.  */
  21. #pragma once
  22. #include "PPageBase.h"
  23. #include "....subtitlesSTS.h"
  24. class CColorStatic : public CStatic
  25. {
  26. // DECLARE_DYNAMIC(CColorStatic)
  27. COLORREF* m_pColor;
  28. public:
  29. CColorStatic(CWnd* pParent = NULL) : m_pColor(NULL) {}
  30. virtual ~CColorStatic() {}
  31. void SetColorPtr(COLORREF* pColor) {m_pColor = pColor;}
  32. // DECLARE_MESSAGE_MAP()
  33. protected:
  34. virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct)
  35. {
  36. CRect r;
  37. GetClientRect(r);
  38. CDC::FromHandle(lpDrawItemStruct->hDC)->FillSolidRect(r, m_pColor ? *m_pColor : ::GetSysColor(COLOR_BTNFACE));
  39. }
  40. };
  41. // CPPageSubStyle dialog
  42. class CPPageSubStyle : public CPPageBase
  43. {
  44. DECLARE_DYNAMIC(CPPageSubStyle)
  45. private:
  46. CString m_title;
  47. STSStyle m_stss;
  48. bool m_fUseDefaultStyle;
  49. void AskColor(int i);
  50. public:
  51. CPPageSubStyle();
  52. virtual ~CPPageSubStyle();
  53. void InitStyle(CString title, STSStyle& stss);
  54. void GetStyle(STSStyle& stss) {stss = m_stss;}
  55. // Dialog Data
  56. enum { IDD = IDD_PPAGESUBSTYLE };
  57. CButton m_font;
  58. int m_iCharset;
  59. CComboBox m_charset;
  60. int m_spacing;
  61. CSpinButtonCtrl m_spacingspin;
  62. int m_angle;
  63. CSpinButtonCtrl m_anglespin;
  64. int m_scalex;
  65. CSpinButtonCtrl m_scalexspin;
  66. int m_scaley;
  67. CSpinButtonCtrl m_scaleyspin;
  68. int m_borderstyle;
  69. int m_borderwidth;
  70. CSpinButtonCtrl m_borderwidthspin;
  71. int m_shadowdepth;
  72. CSpinButtonCtrl m_shadowdepthspin;
  73. int m_screenalignment;
  74. CRect m_margin;
  75. CSpinButtonCtrl m_marginleftspin;
  76. CSpinButtonCtrl m_marginrightspin;
  77. CSpinButtonCtrl m_margintopspin;
  78. CSpinButtonCtrl m_marginbottomspin;
  79. CColorStatic m_color[4];
  80. int m_alpha[4];
  81. CSliderCtrl m_alphasliders[4];
  82. BOOL m_linkalphasliders;
  83. BOOL m_relativeTo;
  84. protected:
  85. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  86. virtual BOOL OnInitDialog();
  87. virtual BOOL OnApply();
  88. DECLARE_MESSAGE_MAP()
  89. afx_msg void OnBnClickedButton1();
  90. afx_msg void OnStnClickedColorpri();
  91. afx_msg void OnStnClickedColorsec();
  92. afx_msg void OnStnClickedColoroutl();
  93. afx_msg void OnStnClickedColorshad();
  94. afx_msg void OnBnClickedCheck1();
  95. afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
  96. public:
  97. };