home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / mysqlmanager / toolsqlquery.cpp < prev    next >
C/C++ Source or Header  |  1999-10-12  |  3KB  |  111 lines

  1. // ToolSqlQuery.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "MySqlManager.h"
  6. #include "ToolSqlQuery.h"
  7.  
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15.  
  16. CToolSqlQuery::CToolSqlQuery(CWnd* pParent /*=NULL*/)
  17.     : CDialog(CToolSqlQuery::IDD, pParent)
  18. {
  19.     //{{AFX_DATA_INIT(CToolSqlQuery)
  20.     m_edit = _T("");
  21.     //}}AFX_DATA_INIT
  22. }
  23.  
  24.  
  25. /////////////////////////////////////////////////////////////////////////////
  26.  
  27. void CToolSqlQuery::DoDataExchange(CDataExchange* pDX)
  28. {
  29.     CDialog::DoDataExchange(pDX);
  30.     //{{AFX_DATA_MAP(CToolSqlQuery)
  31.     DDX_Control(pDX, IDC_EDIT, m_ctl_edit);
  32.     DDX_Text(pDX, IDC_EDIT, m_edit);
  33.     //}}AFX_DATA_MAP
  34. }
  35.  
  36.  
  37. BEGIN_MESSAGE_MAP(CToolSqlQuery, CDialog)
  38.     //{{AFX_MSG_MAP(CToolSqlQuery)
  39.     ON_WM_SIZE()
  40.     ON_WM_CLOSE()
  41.     ON_COMMAND(IDM_QUERY_EXEC, OnQueryPb)
  42.     ON_COMMAND(IDM_QUERY_DATABASES, OnQueryDatabases)
  43.     //}}AFX_MSG_MAP
  44. END_MESSAGE_MAP()
  45.  
  46. /////////////////////////////////////////////////////////////////////////////
  47.  
  48. void CToolSqlQuery::SetFont(CFont* pFont, BOOL bRedraw)
  49. {
  50.     m_ctl_edit.SetFont(pFont,bRedraw);
  51.     m_ctl_edit.Invalidate();
  52.     m_ctl_edit.UpdateWindow();
  53. }
  54.  
  55. /////////////////////////////////////////////////////////////////////////////
  56.  
  57. void CToolSqlQuery::OnSize(UINT nType, int cx, int cy)
  58. {
  59.     CDialog::OnSize(nType, cx, cy);
  60.    if (IsWindow(m_ctl_edit.GetSafeHwnd()))
  61.        m_ctl_edit.SetWindowPos(NULL,20,24,cx-40,cy-48,SWP_NOZORDER | SWP_NOMOVE);
  62. }
  63.  
  64. /////////////////////////////////////////////////////////////////////////////
  65.  
  66. void CToolSqlQuery::OnCancel()
  67. {
  68. }
  69.  
  70. /////////////////////////////////////////////////////////////////////////////
  71.  
  72. void CToolSqlQuery::OnClose()
  73. {
  74. }
  75.  
  76. /////////////////////////////////////////////////////////////////////////////
  77.  
  78. void CToolSqlQuery::OnQueryPb()
  79. {
  80.    GetParent()->GetParent()->PostMessage(WM_COMMAND,IDM_QUERY_EXEC);
  81. }
  82.  
  83. /////////////////////////////////////////////////////////////////////////////
  84.  
  85. void CToolSqlQuery::OnQueryDatabases()
  86. {
  87.    GetParent()->GetParent()->PostMessage(WM_COMMAND,IDM_QUERY_DATABASES);
  88. }
  89. /////////////////////////////////////////////////////////////////////////////
  90.  
  91. BOOL CToolSqlQuery::PreTranslateMessage(MSG* pMsg)
  92. {
  93.    if (pMsg->message >= WM_KEYFIRST && pMsg->message <= WM_KEYLAST)
  94.    {
  95.       if (::TranslateAccelerator(m_hWnd, m_hAccel, pMsg))
  96.          return TRUE;
  97.    }
  98.     return CDialog::PreTranslateMessage(pMsg);
  99. }
  100.  
  101. /////////////////////////////////////////////////////////////////////////////
  102.  
  103. BOOL CToolSqlQuery::OnInitDialog()
  104. {
  105.  
  106.    CDialog::OnInitDialog();
  107.    m_hAccel = ::LoadAccelerators(AfxGetInstanceHandle(), MAKEINTRESOURCE ( IDR_MAINFRAME ));
  108.     return TRUE;  // return TRUE unless you set the focus to a control
  109.                   // EXCEPTION: OCX Property Pages should return FALSE
  110. }
  111.