RichEdDlg.cpp
上传用户:niucheng
上传日期:2007-01-02
资源大小:56k
文件大小:7k
源码类别:

RichEdit

开发平台:

Visual C++

  1. // RichEdDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "RichEd.h"
  5. #include "RichEdDlg.h"
  6. #include "GetFontNameDlg.h"
  7. #include "GetFontSizeDlg.h"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CRichEdDlg dialog
  15. CRichEdDlg::CRichEdDlg(CWnd* pParent /*=NULL*/)
  16. : CDialog(CRichEdDlg::IDD, pParent)
  17. {
  18. //{{AFX_DATA_INIT(CRichEdDlg)
  19. m_sEdit = _T("");
  20. //}}AFX_DATA_INIT
  21. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  22. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  23. }
  24. void CRichEdDlg::DoDataExchange(CDataExchange* pDX)
  25. {
  26. CDialog::DoDataExchange(pDX);
  27. //{{AFX_DATA_MAP(CRichEdDlg)
  28. DDX_Control(pDX, IDC_COMBO, m_combo);
  29. DDX_Control(pDX, IDC_RICHEDIT, m_richedit);
  30. DDX_Text(pDX, IDC_EDIT, m_sEdit);
  31. //}}AFX_DATA_MAP
  32. }
  33. BEGIN_MESSAGE_MAP(CRichEdDlg, CDialog)
  34. //{{AFX_MSG_MAP(CRichEdDlg)
  35. ON_WM_PAINT()
  36. ON_WM_QUERYDRAGICON()
  37. ON_BN_CLICKED(IDEXECUTE, OnExecute)
  38. //}}AFX_MSG_MAP
  39. END_MESSAGE_MAP()
  40. /////////////////////////////////////////////////////////////////////////////
  41. // CRichEdDlg message handlers
  42. BOOL CRichEdDlg::OnInitDialog()
  43. {
  44. CDialog::OnInitDialog();
  45. // Set the icon for this dialog.  The framework does this automatically
  46. //  when the application's main window is not a dialog
  47. SetIcon(m_hIcon, TRUE); // Set big icon
  48. SetIcon(m_hIcon, FALSE); // Set small icon
  49. // TODO: Add extra initialization here
  50. // Fill up the combo box.
  51. m_combo.AddString("SetRTF()");
  52. m_combo.AddString("GetRTF()");
  53. m_combo.AddString("------------");
  54. m_combo.AddString("SetSelectionBold()");
  55. m_combo.AddString("SetSelectionItalic()");
  56. m_combo.AddString("SetSelectionUnderlined()");
  57. m_combo.AddString("------------");
  58. m_combo.AddString("SelectionIsBold()");
  59. m_combo.AddString("SelectionIsItalic()");
  60. m_combo.AddString("SelectionIsUnderlined()");
  61. m_combo.AddString("------------");
  62. m_combo.AddString("SetParagraphLeft()");
  63. m_combo.AddString("SetParagraphCenter()");
  64. m_combo.AddString("SetParagraphRight()");
  65. m_combo.AddString("------------");
  66. m_combo.AddString("ParagraphIsLeft()");
  67. m_combo.AddString("ParagraphIsCentered()");
  68. m_combo.AddString("ParagraphIsRight()");
  69. m_combo.AddString("------------");
  70. m_combo.AddString("SetParagraphBulleted()");
  71. m_combo.AddString("ParagraphIsBulleted()");
  72. m_combo.AddString("------------");
  73. m_combo.AddString("SelectColor()");
  74. m_combo.AddString("------------");
  75. m_combo.AddString("SetFontName()");
  76. m_combo.AddString("SetFontSize()");
  77. m_combo.AddString("GetSelectionFontName()");
  78. m_combo.AddString("GetSelectionFontSize()");
  79. return TRUE;  // return TRUE  unless you set the focus to a control
  80. }
  81. // If you add a minimize button to your dialog, you will need the code below
  82. //  to draw the icon.  For MFC applications using the document/view model,
  83. //  this is automatically done for you by the framework.
  84. void CRichEdDlg::OnPaint() 
  85. {
  86. if (IsIconic())
  87. {
  88. CPaintDC dc(this); // device context for painting
  89. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  90. // Center icon in client rectangle
  91. int cxIcon = GetSystemMetrics(SM_CXICON);
  92. int cyIcon = GetSystemMetrics(SM_CYICON);
  93. CRect rect;
  94. GetClientRect(&rect);
  95. int x = (rect.Width() - cxIcon + 1) / 2;
  96. int y = (rect.Height() - cyIcon + 1) / 2;
  97. // Draw the icon
  98. dc.DrawIcon(x, y, m_hIcon);
  99. }
  100. else
  101. {
  102. CDialog::OnPaint();
  103. }
  104. }
  105. // The system calls this to obtain the cursor to display while the user drags
  106. //  the minimized window.
  107. HCURSOR CRichEdDlg::OnQueryDragIcon()
  108. {
  109. return (HCURSOR) m_hIcon;
  110. }
  111. void CRichEdDlg::OnExecute() 
  112. {
  113. // TODO: Add your control notification handler code here
  114. UpdateData(true);
  115. CString sCmd = "";
  116. m_combo.GetWindowText(sCmd); // Get the selected string from the combo box.
  117. // Do what they want.
  118. if (sCmd == "SetRTF()")
  119. {
  120. m_richedit.SetRTF(m_sEdit); // Set the richedit's text w/ the text of sEdit.
  121. // sEdit should have an RTF string, otherwise it won't work.
  122. }
  123. else if (sCmd == "GetRTF()")
  124. {
  125. m_sEdit = m_richedit.GetRTF();
  126. }
  127. else if (sCmd == "SelectionIsBold()")
  128. {
  129. if (m_richedit.SelectionIsBold())
  130. MessageBox("true");
  131. else
  132. MessageBox("false");
  133. }
  134. else if (sCmd == "SelectionIsItalic()")
  135. {
  136. if (m_richedit.SelectionIsItalic())
  137. MessageBox("true");
  138. else
  139. MessageBox("false");
  140. }
  141. else if (sCmd == "SelectionIsUnderlined()")
  142. {
  143. if (m_richedit.SelectionIsUnderlined())
  144. MessageBox("true");
  145. else
  146. MessageBox("false");
  147. }
  148. else if (sCmd == "SetSelectionBold()")
  149. m_richedit.SetSelectionBold();
  150. else if (sCmd == "SetSelectionItalic()")
  151. m_richedit.SetSelectionItalic();
  152. else if (sCmd == "SetSelectionUnderlined()")
  153. m_richedit.SetSelectionUnderlined();
  154. else if (sCmd == "SetParagraphLeft()")
  155. m_richedit.SetParagraphLeft();
  156. else if (sCmd == "SetParagraphCenter()")
  157. m_richedit.SetParagraphCenter();
  158. else if (sCmd == "SetParagraphRight()")
  159. m_richedit.SetParagraphRight();
  160. else if (sCmd == "ParagraphIsLeft()")
  161. {
  162. if (m_richedit.ParagraphIsLeft())
  163. MessageBox("true");
  164. else
  165. MessageBox("false");
  166. }
  167. else if (sCmd == "ParagraphIsRight()")
  168. {
  169. if (m_richedit.ParagraphIsRight())
  170. MessageBox("true");
  171. else
  172. MessageBox("false");
  173. }
  174. else if (sCmd == "ParagraphIsCentered()")
  175. {
  176. if (m_richedit.ParagraphIsCentered())
  177. MessageBox("true");
  178. else
  179. MessageBox("false");
  180. }
  181. else if (sCmd == "SetParagraphBulleted()")
  182. m_richedit.SetParagraphBulleted();
  183. else if (sCmd == "ParagraphIsBulleted()")
  184. {
  185. if (m_richedit.ParagraphIsBulleted())
  186. MessageBox("true");
  187. else
  188. MessageBox("false");
  189. }
  190. else if (sCmd == "SelectColor()")
  191. m_richedit.SelectColor();
  192. else if (sCmd == "SetFontName()")
  193. {
  194. CGetFontNameDlg dlg;
  195. CStringArray saFontList;
  196. m_richedit.GetSystemFonts(saFontList);
  197. dlg.m_psaFontList = &saFontList; // give the dialog our font list.
  198. int r = dlg.DoModal();
  199. if (r == IDCANCEL)
  200. return;
  201. m_richedit.SetFontName(dlg.m_sFontName); //otherwise set the font name.
  202. }
  203. else if (sCmd == "SetFontSize()")
  204. {
  205. CGetFontSizeDlg dlg;
  206. int r = dlg.DoModal(); // Get the size from the user.
  207. if (r == IDCANCEL)
  208. return;
  209. m_richedit.SetFontSize(dlg.m_nFontSize);
  210. }
  211. else if (sCmd == "GetSelectionFontName()")
  212. MessageBox(m_richedit.GetSelectionFontName());
  213. else if (sCmd == "GetSelectionFontSize()")
  214. {
  215. char num[2];
  216. ltoa(m_richedit.GetSelectionFontSize(), num, 10);
  217. MessageBox(num);
  218. }
  219. m_richedit.SetFocus();
  220. UpdateData(false);
  221. }