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 / mainfrm.cpp < prev    next >
C/C++ Source or Header  |  1999-10-12  |  3KB  |  138 lines

  1. // MainFrm.cpp : implementation of the CMainFrame class
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "MySqlManager.h"
  6. #include "MainFrm.h"
  7.  
  8. CMainFrame* CMainFrame::g_pMainFrame = NULL;
  9.  
  10. #ifdef _DEBUG
  11.    #define new DEBUG_NEW
  12.    #undef THIS_FILE
  13. static char THIS_FILE[] = __FILE__;
  14. #endif
  15.  
  16. /////////////////////////////////////////////////////////////////////////////
  17. // CMainFrame
  18.  
  19. IMPLEMENT_DYNAMIC(CMainFrame, CMDIFrameWnd)
  20.  
  21. BEGIN_MESSAGE_MAP(CMainFrame, CMDIFrameWnd)
  22. //{{AFX_MSG_MAP(CMainFrame)
  23. // NOTE - the ClassWizard will add and remove mapping macros here.
  24. //    DO NOT EDIT what you see in these blocks of generated code !
  25.     ON_WM_CREATE()
  26. //}}AFX_MSG_MAP
  27. END_MESSAGE_MAP()
  28.  
  29. static UINT indicators[] =
  30. {
  31.    ID_SEPARATOR,           // status line indicator
  32.    ID_INDICATOR_CAPS,
  33.    ID_INDICATOR_NUM,
  34.    ID_INDICATOR_SCRL,
  35. };
  36.  
  37. /////////////////////////////////////////////////////////////////////////////
  38. // CMainFrame construction/destruction
  39.  
  40. CMainFrame::CMainFrame()
  41. {
  42.    // TODO: add member initialization code here
  43.  
  44. }
  45.  
  46. CMainFrame::~CMainFrame()
  47. {
  48. }
  49.  
  50. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  51. {
  52.    if (CMDIFrameWnd::OnCreate(lpCreateStruct) == -1)
  53.       return -1;
  54.  
  55.    if (!m_wndToolBar.Create(this) ||
  56.        !m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
  57.    {
  58.       TRACE0("Failed to create toolbar\n");
  59.       return -1;      // fail to create
  60.    }
  61.  
  62.    if (!m_wndStatusBar.Create(this) ||
  63.        !m_wndStatusBar.SetIndicators(indicators,
  64.                                      sizeof(indicators)/sizeof(UINT)))
  65.    {
  66.       TRACE0("Failed to create status bar\n");
  67.       return -1;      // fail to create
  68.    }
  69.  
  70.    // TODO: Remove this if you don't want tool tips or a resizeable toolbar
  71.    m_wndToolBar.SetBarStyle(m_wndToolBar.GetBarStyle() |
  72.                             CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC);
  73.  
  74.    // TODO: Delete these three lines if you don't want the toolbar to
  75.    //  be dockable
  76.    m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
  77.    EnableDocking(CBRS_ALIGN_ANY);
  78.    DockControlBar(&m_wndToolBar);
  79.  
  80.    return 0;
  81. }
  82.  
  83. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
  84. {
  85.    // TODO: Modify the Window class or styles here by modifying
  86.    //  the CREATESTRUCT cs
  87.  
  88.    return CMDIFrameWnd::PreCreateWindow(cs);
  89. }
  90.  
  91. /////////////////////////////////////////////////////////////////////////////
  92. // CMainFrame diagnostics
  93.  
  94. #ifdef _DEBUG
  95. void CMainFrame::AssertValid() const
  96. {
  97.    CMDIFrameWnd::AssertValid();
  98. }
  99.  
  100. void CMainFrame::Dump(CDumpContext& dc) const
  101. {
  102.    CMDIFrameWnd::Dump(dc);
  103. }
  104.  
  105. #endif //_DEBUG
  106.  
  107. /////////////////////////////////////////////////////////////////////////////
  108. // CMainFrame message handlers
  109.  
  110. int CMainFrame::StatusMsg ( LPCSTR fmt, ... )
  111.  
  112. {
  113.  
  114.    char buf [2048];
  115.    va_list args;
  116.    va_start(args, fmt);
  117.    int ret = vsprintf(buf, fmt, args);
  118.  
  119.    if ( this != NULL )
  120.    {
  121.       static char g_StatusMsg_Buffer_TT [ 2048 ];
  122.       memcpy ( g_StatusMsg_Buffer_TT, buf, sizeof(g_StatusMsg_Buffer_TT) );
  123.       m_wndStatusBar.SetPaneText ( 0, buf );
  124.       m_wndStatusBar.UpdateWindow ();
  125.    }
  126.  
  127.    va_end(args);
  128.    return ( ret );
  129.  
  130. }
  131.  
  132.  
  133. BOOL CMainFrame::OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext)
  134. {
  135.    g_pMainFrame = this;
  136.    return CMDIFrameWnd::OnCreateClient(lpcs, pContext);
  137. }
  138.