DlgMain.h
上传用户:gnaf34
上传日期:2022-04-22
资源大小:1657k
文件大小:2k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. /*
  2.  * DlgMain.h
  3.  *
  4.  * Header file
  5.  *
  6.  * Copyright (c) ITEC-Ohio, 2002.
  7.  *
  8.  * The contents of this file are subject to the Mozilla Public License
  9.  * Version 1.0 (the "License"); you may not use this file except in
  10.  * compliance with the License. You may obtain a copy of the License at
  11.  * http://www.mozilla.org/MPL/
  12.  *
  13.  * Software distributed under the License is distributed on an "AS IS"
  14.  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
  15.  * the License for the specific language governing rights and limitations
  16.  * under the License.
  17.  *
  18.  * The Original Code is Open H323 Library available at http://www.openh323.org
  19.  * The Initial Developer of the Original Code is Equivalence Pty. Ltd.
  20.  *
  21.  */
  22. #if !defined(AFX_DLGMAIN_H__8635E7A5_EF55_4033_88E8_0DD553A2E295__INCLUDED_)
  23. #define AFX_DLGMAIN_H__8635E7A5_EF55_4033_88E8_0DD553A2E295__INCLUDED_
  24. #if _MSC_VER > 1000
  25. #pragma once
  26. #endif // _MSC_VER > 1000
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CDlgMain dialog
  29. class CDlgMain : public CDialog
  30. {
  31. // Construction
  32. public:
  33. void AppendString(CString str);
  34. CDlgMain(CWnd* pParent = NULL);   // standard constructor
  35. // Dialog Data
  36. //{{AFX_DATA(CDlgMain)
  37. enum { IDD = IDD_DIALOG_MAIN };
  38. CEdit m_Console;
  39. //}}AFX_DATA
  40. // Overrides
  41. // ClassWizard generated virtual function overrides
  42. //{{AFX_VIRTUAL(CDlgMain)
  43. protected:
  44. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  45. //}}AFX_VIRTUAL
  46. // Implementation
  47. protected:
  48. //Add color to the console edit box- black background and green text
  49. CBrush m_blackbrush;
  50. COLORREF m_blackcolor,m_textcolor;
  51. // Generated message map functions
  52. //{{AFX_MSG(CDlgMain)
  53. virtual BOOL OnInitDialog();
  54. afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
  55. afx_msg void OnPaint();
  56. //}}AFX_MSG
  57. DECLARE_MESSAGE_MAP()
  58. };
  59. //{{AFX_INSERT_LOCATION}}
  60. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  61. #endif // !defined(AFX_DLGMAIN_H__8635E7A5_EF55_4033_88E8_0DD553A2E295__INCLUDED_)