home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / database / extbind / modeldlg.cpp < prev    next >
C/C++ Source or Header  |  1998-03-26  |  8KB  |  279 lines

  1. // modeldlg.cpp : implementation file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. #include "stdafx.h"
  14. #include "extbind.h"
  15. #include "nwinddlg.h"
  16. #include "modeldlg.h"
  17.  
  18. #ifdef _DEBUG
  19. #define new DEBUG_NEW
  20. #undef THIS_FILE
  21. static char BASED_CODE THIS_FILE[] = __FILE__;
  22. #endif
  23.  
  24. /////////////////////////////////////////////////////////////////////////////
  25. // CAboutDlg dialog used for App About
  26.  
  27. class CAboutDlg : public CDialog
  28. {
  29. public:
  30.     CAboutDlg();
  31.  
  32. // Dialog Data
  33.     //{{AFX_DATA(CAboutDlg)
  34.     enum { IDD = IDD_ABOUTBOX };
  35.     //}}AFX_DATA
  36.  
  37. // Implementation
  38. protected:
  39.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  40.     //{{AFX_MSG(CAboutDlg)
  41.     //}}AFX_MSG
  42.     DECLARE_MESSAGE_MAP()
  43. };
  44.  
  45. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  46. {
  47.     //{{AFX_DATA_INIT(CAboutDlg)
  48.     //}}AFX_DATA_INIT
  49. }
  50.  
  51. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  52. {
  53.     CDialog::DoDataExchange(pDX);
  54.     //{{AFX_DATA_MAP(CAboutDlg)
  55.     //}}AFX_DATA_MAP
  56. }
  57.  
  58. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  59.     //{{AFX_MSG_MAP(CAboutDlg)
  60.         // No message handlers
  61.     //}}AFX_MSG_MAP
  62. END_MESSAGE_MAP()
  63.  
  64. /////////////////////////////////////////////////////////////////////////////
  65. // CMainDlg dialog
  66.  
  67. CMainDlg::CMainDlg(CWnd* pParent /*=NULL*/)
  68.     : CDialog(CMainDlg::IDD, pParent)
  69. {
  70.     //{{AFX_DATA_INIT(CMainDlg)
  71.         // NOTE: the ClassWizard will add member initialization here
  72.     //}}AFX_DATA_INIT
  73.     // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  74.     m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  75.     m_pNWind = NULL;
  76. }
  77.  
  78. void CMainDlg::DoDataExchange(CDataExchange* pDX)
  79. {
  80.     CDialog::DoDataExchange(pDX);
  81.     //{{AFX_DATA_MAP(CMainDlg)
  82.         // NOTE: the ClassWizard will add DDX and DDV calls here
  83.     //}}AFX_DATA_MAP
  84. }
  85.  
  86. BEGIN_MESSAGE_MAP(CMainDlg, CDialog)
  87.     //{{AFX_MSG_MAP(CMainDlg)
  88.     ON_WM_SYSCOMMAND()
  89.     ON_WM_PAINT()
  90.     ON_WM_QUERYDRAGICON()
  91.     ON_BN_CLICKED(IDC_ADDPUB, OnAddpub)
  92.     //}}AFX_MSG_MAP
  93. END_MESSAGE_MAP()
  94.  
  95. /////////////////////////////////////////////////////////////////////////////
  96. // CMainDlg message handlers
  97.  
  98. BOOL CMainDlg::OnInitDialog()
  99. {
  100.     CDialog::OnInitDialog(  );
  101.  
  102.     // Add "About..." menu item to system menu.
  103.  
  104.     // IDM_ABOUTBOX must be in the system command range.
  105.     ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  106.     ASSERT(IDM_ABOUTBOX < 0xF000);
  107.  
  108.     CMenu* pSysMenu = GetSystemMenu(FALSE);
  109.     CString strAboutMenu;
  110.     strAboutMenu.LoadString(IDS_ABOUTBOX);
  111.     if (!strAboutMenu.IsEmpty())
  112.     {
  113.         pSysMenu->AppendMenu(MF_SEPARATOR);
  114.         pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  115.     }
  116.  
  117.     // Set the icon for this dialog.  The framework does this automatically
  118.     //  when the application's main window is not a dialog
  119.     SetIcon(m_hIcon, TRUE);         // Set big icon
  120.     SetIcon(m_hIcon, FALSE);        // Set small icon
  121.  
  122.     // create the DBGrid control & connect it to IDC_RDCPUBS
  123.     RECT r;
  124.     GetClientRect(&r);
  125.     r.bottom-=100;
  126.     r.top=r.bottom-170; // nearly the bottom of the dialog
  127.     r.left+=10;r.right-=10; // some margins to look better
  128.     m_pGrid.Create(_T("Pubs Employees table"),WS_VISIBLE | WS_CHILD,
  129.     r,this,IDC_GRIDPUBS);
  130.     LPUNKNOWN pCursor=GetDlgItem(IDC_RDCPUBS)->GetDSCCursor();
  131.     ASSERT(pCursor!=NULL);
  132.     m_pGrid.SetDataSource(pCursor); //bind the grid
  133.     m_pGrid.BindProperty(0x9,GetDlgItem(IDC_RDCPUBS));
  134.     //  create the RDC for NorthWind Employee table
  135.     // to be bound when the Northwind dialog comes up in CNwindDialog::OnInitDialog()
  136.     GetClientRect(&r);
  137.     r.top+=5;
  138.     r.bottom=r.top+30;
  139.     r.right-=10; // some margins to look better
  140.     r.left=r.right-140; // lenght of the control
  141.     m_pDSC.Create(_T("NorthWind"),WS_VISIBLE | WS_CHILD,
  142.     r,this,IDC_RDCNWIND);
  143.     m_pDSC.SetDataSourceName(_T("NorthWind"));
  144.     m_pDSC.SetSql(_T("SELECT FirstName, LastName, BirthDate, HireDate from Employees"));
  145.     m_pDSC.SetUserName(_T("admin"));
  146.     m_pDSC.SetPassword(_T(""));
  147.     m_pDSC.SetCursorDriver(2);
  148.  
  149.     return TRUE;  // return TRUE  unless you set the focus to a control
  150. }
  151.  
  152. void CMainDlg::OnSysCommand(UINT nID, LPARAM lParam)
  153. {
  154.     if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  155.     {
  156.         CAboutDlg dlgAbout;
  157.         dlgAbout.DoModal();
  158.     }
  159.     else
  160.     {
  161.         CDialog::OnSysCommand(nID, lParam);
  162.     }
  163. }
  164.  
  165. // If you add a minimize button to your dialog, you will need the code below
  166. //  to draw the icon.  For MFC applications using the document/view model,
  167. //  this is automatically done for you by the framework.
  168.  
  169. void CMainDlg::OnPaint()
  170. {
  171.     if (IsIconic())
  172.     {
  173.         CPaintDC dc(this); // device context for painting
  174.  
  175.         SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  176.  
  177.         // Center icon in client rectangle
  178.         int cxIcon = GetSystemMetrics(SM_CXICON);
  179.         int cyIcon = GetSystemMetrics(SM_CYICON);
  180.         CRect rect;
  181.         GetClientRect(&rect);
  182.         int x = (rect.Width() - cxIcon + 1) / 2;
  183.         int y = (rect.Height() - cyIcon + 1) / 2;
  184.  
  185.         // Draw the icon
  186.         dc.DrawIcon(x, y, m_hIcon);
  187.     }
  188.     else
  189.     {
  190.         CDialog::OnPaint();
  191.     }
  192. }
  193.  
  194. // The system calls this to obtain the cursor to display while the user drags
  195. //  the minimized window.
  196. HCURSOR CMainDlg::OnQueryDragIcon()
  197. {
  198.     return (HCURSOR) m_hIcon;
  199. }
  200.  
  201. void CMainDlg::OnOK()
  202. {
  203.     // if our northwind dialog isn't already up, create it and display it
  204.     // otherwise, just set focus to it
  205.  
  206.     if (m_pNWind == NULL)
  207.     {
  208.         m_pNWind = new CNwindDialog(this);
  209.         if (m_pNWind->Create() == TRUE)
  210.             GetDlgItem(IDOK)->EnableWindow(FALSE);
  211.     }
  212.     else
  213.         m_pNWind->SetActiveWindow();
  214. }
  215.  
  216.  
  217. void CMainDlg::OnAddpub()
  218. {
  219.     CString name;
  220.     CMSMask* p_maskedit;
  221.  
  222.     p_maskedit=(CMSMask*) GetDlgItem(IDC_MASKEDBOX2); // retrieve the OCX control with first name
  223.     ASSERT(p_maskedit!=NULL);
  224.     if (p_maskedit==NULL)
  225.         return;
  226.     name=p_maskedit->GetText();
  227.     p_maskedit=(CMSMask*) GetDlgItem(IDC_MASKEDBOX3); // retrieve the OCX control with last name
  228.     ASSERT(p_maskedit!=NULL);
  229.     if (p_maskedit==NULL)
  230.         return;
  231.     name=_T("Pubs:") + name + _T(" ") + p_maskedit->GetText();
  232.     CListBox* pList = (CListBox*) GetDlgItem(IDC_LIST);
  233.     ASSERT(pList != NULL);
  234.     if (pList != NULL)
  235.         pList->AddString(name);
  236. }
  237.  
  238.  
  239. void CMainDlg::BoxDone()
  240. {
  241.     // this function is called by the northwind dialog as it terminates
  242.     // just reset our pushbutton to be enabled again.
  243.     // I _don't_ delete the MFC CDialog object because the dialog's own
  244.     // code will do that.
  245.  
  246.     m_pNWind = NULL;
  247.     // don't delete m_pNWind; !
  248.     GetDlgItem(IDOK)->EnableWindow();
  249. }
  250.  
  251. BEGIN_EVENTSINK_MAP(CMainDlg, CDialog)
  252.     ON_PROPNOTIFY_RANGE(CMainDlg, IDC_MASKEDBOX2, IDC_MASKEDBOX4, MASKDISPID_TEXT, OnRequestEdit, OnChanged)
  253.     ON_DSCNOTIFY(CMainDlg, IDC_RDCNWIND, OnDSCNotifyNwind)
  254.     ON_DSCNOTIFY(CMainDlg, IDC_RDCPUBS, OnDSCNotifyPubs)
  255. END_EVENTSINK_MAP()
  256.  
  257. BOOL CMainDlg::OnRequestEdit(UINT nCtl, BOOL* pBool)
  258. {   //this handler is never called in optimistic DataBinding architecture supplied by MFC
  259.     return TRUE;
  260. }
  261.  
  262. BOOL CMainDlg::OnChanged(UINT nCtl)
  263. {
  264.     // process the notification from nCtl control
  265.     return TRUE;
  266. }
  267.  
  268. BOOL CMainDlg::OnDSCNotifyNwind(DSCSTATE nState, DSCREASON nReason, BOOL* pBool)
  269. {
  270.     // process the notification from RDC NorthWind
  271.     return TRUE;
  272. }
  273.  
  274. BOOL CMainDlg::OnDSCNotifyPubs(DSCSTATE nState, DSCREASON nReason, BOOL* pBool)
  275. {
  276.     // process the notification from RDC Pubs
  277.     return TRUE;
  278. }
  279.