StyleEditorDialog.h
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:3k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. /* 
  2.  * Copyright (C) 2003-2005 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 "resource.h"
  23. #include "afxwin.h"
  24. #include "afxcmn.h"
  25. #include "......subtitlesSTS.h"
  26. // CColorStatic dialog
  27. class CColorStatic : public CStatic
  28. {
  29. DECLARE_DYNAMIC(CColorStatic)
  30. COLORREF* m_pColor;
  31. public:
  32. CColorStatic(CWnd* pParent = NULL) : m_pColor(NULL) {}
  33. virtual ~CColorStatic() {}
  34. void SetColorPtr(COLORREF* pColor) {m_pColor = pColor;}
  35. DECLARE_MESSAGE_MAP()
  36. protected:
  37. virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct)
  38. {
  39. CRect r;
  40. GetClientRect(r);
  41. CDC::FromHandle(lpDrawItemStruct->hDC)->FillSolidRect(r, m_pColor ? *m_pColor : ::GetSysColor(COLOR_BTNFACE));
  42. }
  43. };
  44. // CStyleEditorDialog dialog
  45. class CStyleEditorDialog : public CDialog
  46. {
  47. DECLARE_DYNAMIC(CStyleEditorDialog)
  48. CString m_title;
  49. CWnd* m_pParent;
  50. void UpdateControlData(bool fSave);
  51. void AskColor(int i);
  52. public:
  53. CStyleEditorDialog(CString title, STSStyle* pstss, CWnd* pParent = NULL);   // standard constructor
  54. virtual ~CStyleEditorDialog();
  55. // Dialog Data
  56. enum { IDD = IDD_STYLEDIALOG };
  57. STSStyle m_stss;
  58. protected:
  59. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  60. virtual BOOL OnInitDialog();
  61. virtual void OnOK();
  62. DECLARE_MESSAGE_MAP()
  63. public:
  64. CButton m_font;
  65. int m_iCharset;
  66. CComboBox m_charset;
  67. int m_spacing;
  68. CSpinButtonCtrl m_spacingspin;
  69. int m_angle;
  70. CSpinButtonCtrl m_anglespin;
  71. int m_scalex;
  72. CSpinButtonCtrl m_scalexspin;
  73. int m_scaley;
  74. CSpinButtonCtrl m_scaleyspin;
  75. int m_borderstyle;
  76. int m_borderwidth;
  77. CSpinButtonCtrl m_borderwidthspin;
  78. int m_shadowdepth;
  79. CSpinButtonCtrl m_shadowdepthspin;
  80. int m_screenalignment;
  81. CRect m_margin;
  82. CSpinButtonCtrl m_marginleftspin;
  83. CSpinButtonCtrl m_marginrightspin;
  84. CSpinButtonCtrl m_margintopspin;
  85. CSpinButtonCtrl m_marginbottomspin;
  86. CColorStatic m_color[4];
  87. int m_alpha[4];
  88. CSliderCtrl m_alphasliders[4];
  89. BOOL m_linkalphasliders;
  90. afx_msg void OnBnClickedButton1();
  91. afx_msg void OnStnClickedColorpri();
  92. afx_msg void OnStnClickedColorsec();
  93. afx_msg void OnStnClickedColoroutl();
  94. afx_msg void OnStnClickedColorshad();
  95. afx_msg void OnBnClickedCheck1();
  96. afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
  97. };