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

多媒体编程

开发平台:

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. // PPageSubStyle.cpp : implementation file
  22. //
  23. #include "stdafx.h"
  24. #include <math.h>
  25. #include "mplayerc.h"
  26. #include "MainFrm.h"
  27. #include "PPageSubStyle.h"
  28. // CColorStatic
  29. //IMPLEMENT_DYNAMIC(CColorStatic, CStatic)
  30. //BEGIN_MESSAGE_MAP(CColorStatic, CStatic)
  31. //END_MESSAGE_MAP()
  32. // CPPageSubStyle dialog
  33. IMPLEMENT_DYNAMIC(CPPageSubStyle, CPPageBase)
  34. CPPageSubStyle::CPPageSubStyle()
  35. : CPPageBase(CPPageSubStyle::IDD, CPPageSubStyle::IDD)
  36. , m_iCharset(0)
  37. , m_spacing(0)
  38. , m_angle(0)
  39. , m_scalex(0)
  40. , m_scaley(0)
  41. , m_borderstyle(0)
  42. , m_borderwidth(0)
  43. , m_shadowdepth(0)
  44. , m_screenalignment(0)
  45. , m_margin(0,0,0,0)
  46. , m_linkalphasliders(FALSE)
  47. , m_relativeTo(FALSE)
  48. {
  49. m_stss = AfxGetAppSettings().subdefstyle;
  50. m_fUseDefaultStyle = true;
  51. }
  52. CPPageSubStyle::~CPPageSubStyle()
  53. {
  54. }
  55. void CPPageSubStyle::InitStyle(CString title, STSStyle& stss)
  56. {
  57. m_pPSP->pszTitle = (m_title = title);
  58. m_psp.dwFlags |= PSP_USETITLE;
  59. m_stss = stss; 
  60. m_fUseDefaultStyle = false;
  61. }
  62. void CPPageSubStyle::AskColor(int i)
  63. {
  64. CColorDialog dlg(m_stss.colors[i]);
  65. dlg.m_cc.Flags |= CC_FULLOPEN;
  66. if(dlg.DoModal() == IDOK)
  67. {
  68. m_stss.colors[i] = dlg.m_cc.rgbResult;
  69. m_color[i].Invalidate();
  70. }
  71. }
  72. void CPPageSubStyle::DoDataExchange(CDataExchange* pDX)
  73. {
  74. CPPageBase::DoDataExchange(pDX);
  75. DDX_Control(pDX, IDC_BUTTON1, m_font);
  76. DDX_CBIndex(pDX, IDC_COMBO1, m_iCharset);
  77. DDX_Control(pDX, IDC_COMBO1, m_charset);
  78. DDX_Text(pDX, IDC_EDIT3, m_spacing);
  79. DDX_Control(pDX, IDC_SPIN3, m_spacingspin);
  80. DDX_Text(pDX, IDC_EDIT4, m_angle);
  81. DDX_Control(pDX, IDC_SPIN10, m_anglespin);
  82. DDX_Text(pDX, IDC_EDIT5, m_scalex);
  83. DDX_Control(pDX, IDC_SPIN4, m_scalexspin);
  84. DDX_Text(pDX, IDC_EDIT6, m_scaley);
  85. DDX_Control(pDX, IDC_SPIN5, m_scaleyspin);
  86. DDX_Radio(pDX, IDC_RADIO1, m_borderstyle);
  87. DDX_Text(pDX, IDC_EDIT1, m_borderwidth);
  88. DDX_Control(pDX, IDC_SPIN1, m_borderwidthspin);
  89. DDX_Text(pDX, IDC_EDIT2, m_shadowdepth);
  90. DDX_Control(pDX, IDC_SPIN2, m_shadowdepthspin);
  91. DDX_Radio(pDX, IDC_RADIO3, m_screenalignment);
  92. DDX_Text(pDX, IDC_EDIT7, m_margin.left);
  93. DDX_Control(pDX, IDC_SPIN6, m_marginleftspin);
  94. DDX_Text(pDX, IDC_EDIT8, m_margin.right);
  95. DDX_Control(pDX, IDC_SPIN7, m_marginrightspin);
  96. DDX_Text(pDX, IDC_EDIT9, m_margin.top);
  97. DDX_Control(pDX, IDC_SPIN8, m_margintopspin);
  98. DDX_Text(pDX, IDC_EDIT10, m_margin.bottom);
  99. DDX_Control(pDX, IDC_SPIN9, m_marginbottomspin);
  100. DDX_Control(pDX, IDC_COLORPRI, m_color[0]);
  101. DDX_Control(pDX, IDC_COLORSEC, m_color[1]);
  102. DDX_Control(pDX, IDC_COLOROUTL, m_color[2]);
  103. DDX_Control(pDX, IDC_COLORSHAD, m_color[3]);
  104. DDX_Slider(pDX, IDC_SLIDER1, m_alpha[0]);
  105. DDX_Slider(pDX, IDC_SLIDER2, m_alpha[1]);
  106. DDX_Slider(pDX, IDC_SLIDER3, m_alpha[2]);
  107. DDX_Slider(pDX, IDC_SLIDER4, m_alpha[3]);
  108. DDX_Control(pDX, IDC_SLIDER1, m_alphasliders[0]);
  109. DDX_Control(pDX, IDC_SLIDER2, m_alphasliders[1]);
  110. DDX_Control(pDX, IDC_SLIDER3, m_alphasliders[2]);
  111. DDX_Control(pDX, IDC_SLIDER4, m_alphasliders[3]);
  112. DDX_Check(pDX, IDC_CHECK1, m_linkalphasliders);
  113. DDX_Check(pDX, IDC_CHECK_RELATIVETO, m_relativeTo);
  114. }
  115. BEGIN_MESSAGE_MAP(CPPageSubStyle, CPPageBase)
  116. ON_BN_CLICKED(IDC_BUTTON1, OnBnClickedButton1)
  117. ON_STN_CLICKED(IDC_COLORPRI, OnStnClickedColorpri)
  118. ON_STN_CLICKED(IDC_COLORSEC, OnStnClickedColorsec)
  119. ON_STN_CLICKED(IDC_COLOROUTL, OnStnClickedColoroutl)
  120. ON_STN_CLICKED(IDC_COLORSHAD, OnStnClickedColorshad)
  121. ON_BN_CLICKED(IDC_CHECK1, OnBnClickedCheck1)
  122. ON_WM_HSCROLL()
  123. END_MESSAGE_MAP()
  124. // CPPageSubStyle message handlers
  125. BOOL CPPageSubStyle::OnInitDialog()
  126. {
  127. __super::OnInitDialog();
  128. m_font.SetWindowText(m_stss.fontName);
  129. m_iCharset = -1;
  130. for(int i = 0; i < CharSetLen; i++)
  131. {
  132. CString str;
  133. str.Format(_T("%s (%d)"), CharSetNames[i], CharSetList[i]);
  134. m_charset.AddString(str);
  135. m_charset.SetItemData(i, CharSetList[i]);
  136. if(m_stss.charSet == CharSetList[i]) m_iCharset = i;
  137. }
  138. // TODO: allow floats in these edit boxes
  139. m_spacing = (int)m_stss.fontSpacing;
  140. m_spacingspin.SetRange32(-10000, 10000);
  141. while(m_stss.fontAngleZ < 0) m_stss.fontAngleZ += 360;
  142. m_angle = (int)fmod(m_stss.fontAngleZ, 360);
  143. m_anglespin.SetRange32(0, 359);
  144. m_scalex = (int)m_stss.fontScaleX;
  145. m_scalexspin.SetRange32(-10000, 10000);
  146. m_scaley = (int)m_stss.fontScaleY;
  147. m_scaleyspin.SetRange32(-10000, 10000);
  148. m_borderstyle = m_stss.borderStyle;
  149. m_borderwidth = (int)m_stss.outlineWidth;
  150. m_borderwidthspin.SetRange32(0, 10000);
  151. m_shadowdepth = (int)m_stss.shadowDepth;
  152. m_shadowdepthspin.SetRange32(0, 10000);
  153. m_screenalignment = m_stss.scrAlignment-1;
  154. m_margin = m_stss.marginRect;
  155. m_marginleftspin.SetRange32(-10000, 10000);
  156. m_marginrightspin.SetRange32(-10000, 10000);
  157. m_margintopspin.SetRange32(-10000, 10000);
  158. m_marginbottomspin.SetRange32(-10000, 10000);
  159. m_relativeTo = m_stss.relativeTo;
  160. for(int i = 0; i < 4; i++)
  161. {
  162. m_color[i].SetColorPtr(&m_stss.colors[i]);
  163. m_alpha[i] = 255-m_stss.alpha[i];
  164. m_alphasliders[i].SetRange(0, 255);
  165. }
  166. m_linkalphasliders = FALSE;
  167. UpdateData(FALSE);
  168. CreateToolTip();
  169. return TRUE;  // return TRUE unless you set the focus to a control
  170. // EXCEPTION: OCX Property Pages should return FALSE
  171. }
  172. BOOL CPPageSubStyle::OnApply()
  173. {
  174. UpdateData();
  175. if(m_iCharset >= 0) m_stss.charSet = m_charset.GetItemData(m_iCharset);
  176. m_stss.fontSpacing = m_spacing;
  177. m_stss.fontAngleZ = m_angle;
  178. m_stss.fontScaleX = m_scalex;
  179. m_stss.fontScaleY = m_scaley;
  180. m_stss.borderStyle = m_borderstyle;
  181. m_stss.outlineWidth = m_borderwidth;
  182. m_stss.shadowDepth = m_shadowdepth;
  183. m_stss.scrAlignment = m_screenalignment+1;
  184. m_stss.marginRect = m_margin;
  185. m_stss.relativeTo = m_relativeTo;
  186. for(int i = 0; i < 4; i++) m_stss.alpha[i] = 255-m_alpha[i];
  187. if(m_fUseDefaultStyle)
  188. {
  189. STSStyle& stss = AfxGetAppSettings().subdefstyle;
  190. if(!(stss == m_stss))
  191. {
  192. stss = m_stss;
  193. if(CMainFrame* pFrame = dynamic_cast<CMainFrame*>(AfxGetMainWnd()))
  194. pFrame->UpdateSubtitle(true);
  195. }
  196. }
  197. return __super::OnApply();
  198. }
  199. void CPPageSubStyle::OnBnClickedButton1()
  200. {
  201. LOGFONT lf;
  202. lf <<= m_stss;
  203. CFontDialog dlg(&lf, CF_SCREENFONTS|CF_INITTOLOGFONTSTRUCT|CF_FORCEFONTEXIST|CF_SCALABLEONLY|CF_EFFECTS);
  204. if(dlg.DoModal() == IDOK)
  205. {
  206. CString str(lf.lfFaceName);
  207. if(str.GetLength() > 16) str = str.Left(14) + _T("...");
  208. m_font.SetWindowText(str);
  209. for(int i = 0, j = m_charset.GetCount(); i < j; i++)
  210. {
  211. if(m_charset.GetItemData(i) == lf.lfCharSet)
  212. {
  213. m_charset.SetCurSel(i);
  214. break;
  215. }
  216. }
  217. m_stss = lf;
  218. SetModified();
  219. }
  220. }
  221. void CPPageSubStyle::OnStnClickedColorpri()
  222. {
  223. AskColor(0);
  224. }
  225. void CPPageSubStyle::OnStnClickedColorsec()
  226. {
  227. AskColor(1);
  228. }
  229. void CPPageSubStyle::OnStnClickedColoroutl()
  230. {
  231. AskColor(2);
  232. }
  233. void CPPageSubStyle::OnStnClickedColorshad()
  234. {
  235. AskColor(3);
  236. }
  237. void CPPageSubStyle::OnBnClickedCheck1()
  238. {
  239. UpdateData();
  240. int avg = 0;
  241. for(int i = 0; i < 4; i++) avg += m_alphasliders[i].GetPos();
  242. avg /= 4;
  243. for(int i = 0; i < 4; i++) m_alphasliders[i].SetPos(avg);
  244. SetModified();
  245. }
  246. void CPPageSubStyle::OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar)
  247. {
  248. if(m_linkalphasliders && pScrollBar)
  249. {
  250. int pos = ((CSliderCtrl*)pScrollBar)->GetPos();
  251. for(int i = 0; i < 4; i++) m_alphasliders[i].SetPos(pos);
  252. }
  253. SetModified();
  254. __super::OnHScroll(nSBCode, nPos, pScrollBar);
  255. }