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

多媒体编程

开发平台:

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