Ch7_6Commands.cpp
上传用户:rundaa
上传日期:2009-05-24
资源大小:44k
文件大小:1k
源码类别:

CAD

开发平台:

Visual C++

  1. /////////////////////////////////////////////
  2. // ObjectARX defined commands
  3. #include "StdAfx.h"
  4. #include "StdArx.h"
  5. extern CWindoTypeDlg *g_pWindoTypeDlg;
  6. extern CAcToolBar  *g_pAcToolBar;
  7. // This is command 'WINDO'
  8. void windo()
  9. {
  10. // TODO: Implement the command
  11. CAcModuleResourceOverride resOverride;
  12. g_pWindoTypeDlg = new CWindoTypeDlg(acedGetAcadFrame());
  13. g_pWindoTypeDlg->Create(IDD_WINDOTYPE, acedGetAcadFrame());
  14. g_pWindoTypeDlg->CenterWindow();
  15. g_pWindoTypeDlg->ShowWindow(SW_SHOW);
  16. if(g_pAcToolBar != NULL && g_pAcToolBar->IsWindowVisible())
  17. {
  18. ((CButton*) g_pWindoTypeDlg->GetDlgItem(IDC_CHK_VISTB))->SetCheck(1);
  19. }
  20. }