PropertyToolBar.cpp
上传用户:lj3531212
上传日期:2007-06-18
资源大小:346k
文件大小:2k
源码类别:

绘图程序

开发平台:

Visual C++

  1. // PropertyToolBar.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "GraphSoft.h"
  5. #include "PropertyToolBar.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CPropertyToolBar
  13. CPropertyToolBar::CPropertyToolBar()
  14. {
  15. }
  16. CPropertyToolBar::~CPropertyToolBar()
  17. {
  18. }
  19. BEGIN_MESSAGE_MAP(CPropertyToolBar, CToolBar)
  20. //{{AFX_MSG_MAP(CPropertyToolBar)
  21. ON_COMMAND(ID_PENWIDTH_ONE, OnPenwidthOne)
  22. ON_UPDATE_COMMAND_UI(ID_PENWIDTH_ONE, OnUpdatePenwidthOne)
  23. ON_COMMAND(ID_PENWIDTH_TWO, OnPenwidthTwo)
  24. ON_UPDATE_COMMAND_UI(ID_PENWIDTH_TWO, OnUpdatePenwidthTwo)
  25. ON_COMMAND(ID_PENWIDTH_THREE, OnPenwidthThree)
  26. ON_UPDATE_COMMAND_UI(ID_PENWIDTH_THREE, OnUpdatePenwidthThree)
  27. ON_COMMAND(ID_PENWIDTH_FIVE, OnPenwidthFive)
  28. ON_UPDATE_COMMAND_UI(ID_PENWIDTH_FIVE, OnUpdatePenwidthFive)
  29. //}}AFX_MSG_MAP
  30. END_MESSAGE_MAP()
  31. /////////////////////////////////////////////////////////////////////////////
  32. // CPropertyToolBar message handlers
  33. void CPropertyToolBar::OnPenwidthOne() 
  34. {
  35. // TODO: Add your command handler code here
  36. }
  37. void CPropertyToolBar::OnUpdatePenwidthOne(CCmdUI* pCmdUI) 
  38. {
  39. // TODO: Add your command update UI handler code here
  40. }
  41. void CPropertyToolBar::OnPenwidthTwo() 
  42. {
  43. // TODO: Add your command handler code here
  44. }
  45. void CPropertyToolBar::OnUpdatePenwidthTwo(CCmdUI* pCmdUI) 
  46. {
  47. // TODO: Add your command update UI handler code here
  48. }
  49. void CPropertyToolBar::OnPenwidthThree() 
  50. {
  51. // TODO: Add your command handler code here
  52. }
  53. void CPropertyToolBar::OnUpdatePenwidthThree(CCmdUI* pCmdUI) 
  54. {
  55. // TODO: Add your command update UI handler code here
  56. }
  57. void CPropertyToolBar::OnPenwidthFive() 
  58. {
  59. // TODO: Add your command handler code here
  60. }
  61. void CPropertyToolBar::OnUpdatePenwidthFive(CCmdUI* pCmdUI) 
  62. {
  63. // TODO: Add your command update UI handler code here
  64. }