testtreedlg.cpp
上传用户:meggie0806
上传日期:2007-01-02
资源大小:87k
文件大小:2k
源码类别:

ListView/ListBox

开发平台:

Visual C++

  1. // TestTreeDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "SuperGrid.h"
  5. #include "TestTreeDlg.h"
  6. #include "NewItem.h"
  7. #include "SuperGridCtrl.h"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CTestTreeDlg dialog
  15. CTestTreeDlg::CTestTreeDlg(CWnd* pParent /*=NULL*/)
  16. : CDialog(CTestTreeDlg::IDD, pParent)
  17. {
  18. //{{AFX_DATA_INIT(CTestTreeDlg)
  19. //}}AFX_DATA_INIT
  20. }
  21. void CTestTreeDlg::DoDataExchange(CDataExchange* pDX)
  22. {
  23. CDialog::DoDataExchange(pDX);
  24. //{{AFX_DATA_MAP(CTestTreeDlg)
  25. DDX_Control(pDX, IDC_STATIC_FRAME, m_Frame);
  26. //}}AFX_DATA_MAP
  27. }
  28. BEGIN_MESSAGE_MAP(CTestTreeDlg, CDialog)
  29. //{{AFX_MSG_MAP(CTestTreeDlg)
  30. ON_BN_CLICKED(IDC_BUTTON_INSERT, OnButtonInsert)
  31. ON_WM_CREATE()
  32. //}}AFX_MSG_MAP
  33. END_MESSAGE_MAP()
  34. /////////////////////////////////////////////////////////////////////////////
  35. // CTestTreeDlg message handlers
  36. BOOL CTestTreeDlg::OnInitDialog() 
  37. {
  38. CDialog::OnInitDialog();
  39. CRect rc;
  40. m_Frame.GetWindowRect(rc);
  41. ScreenToClient(rc);
  42. m_Frame.ShowWindow(SW_HIDE);
  43. if(m_List.GetSafeHwnd())
  44. m_List.MoveWindow(rc);
  45. return TRUE;  
  46.               
  47. }
  48. void CTestTreeDlg::OnButtonInsert() 
  49. {
  50. int nIndex = m_List.GetSelectedItem();
  51. if(nIndex!=-1)
  52. {
  53. CNewItem dlg;
  54. if(dlg.DoModal()==IDOK)
  55. m_List.HowToInsertItemsAfterTheGridHasBeenInitialized(nIndex, dlg.m_strItem);
  56. }
  57. }
  58. int CTestTreeDlg::OnCreate(LPCREATESTRUCT lpCreateStruct) 
  59. {
  60. if (CDialog::OnCreate(lpCreateStruct) == -1)
  61. return -1;
  62. m_List.Create(WS_CHILD | WS_VISIBLE | WS_TABSTOP, CRect(0,0,0,0),this,0x1001);
  63. m_List.InitializeGrid();
  64. m_List.SetExtendedStyle(0);
  65. m_List.ModifyStyleEx(0,WS_EX_CLIENTEDGE);
  66. return 0;
  67. }