home *** CD-ROM | disk | FTP | other *** search
/ Prima Shareware 3 / DuCom_Prima-Shareware-3_cd1.bin / PROGRAMO / C / MRCE / DOCKTEST.ZIP / MAINFRM.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1995-12-12  |  6.0 KB  |  241 lines

  1. // mainfrm.cpp : implementation of the CMainFrame class
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "docktest.h"
  6. #include "mainfrm.h"
  7.  
  8. #ifdef _DEBUG
  9. #undef THIS_FILE
  10. static char BASED_CODE THIS_FILE[] = __FILE__;
  11. #endif
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CMainFrame
  15.  
  16. IMPLEMENT_DYNAMIC(CMainFrame, MainFrameParent)
  17.  
  18. BEGIN_MESSAGE_MAP(CMainFrame, MainFrameParent)
  19.     //{{AFX_MSG_MAP(CMainFrame)
  20.     ON_WM_CREATE()
  21.     ON_COMMAND(ID_VIEW_TILEDOCKBARS, OnViewTiledockbars)
  22.     ON_COMMAND(ID_ArrangeBottomLeft, OnArrangeBottomLeft)
  23.     ON_COMMAND(ID_ArrangeBottomRight, OnArrangeBottomRight)
  24.     ON_COMMAND(ID_ArrangeTopLeft, OnArrangeTopLeft)
  25.     ON_COMMAND(ID_ArrangeTopRight, OnArrangeTopRight)
  26.     ON_WM_CLOSE()
  27.     //}}AFX_MSG_MAP
  28.  
  29.     // standard on/off control bar handlers for View menu. 
  30.     ON_UPDATE_COMMAND_UI(ID_SIZEDLGBAR, OnUpdateControlBarMenu)
  31.     ON_COMMAND_EX(ID_SIZEDLGBAR, OnBarCheck)
  32.     
  33.     ON_UPDATE_COMMAND_UI(ID_FIXEDDLGBAR, OnUpdateControlBarMenu)
  34.     ON_COMMAND_EX(ID_FIXEDDLGBAR, OnBarCheck)
  35.     
  36.     ON_UPDATE_COMMAND_UI(ID_LISTBOXBAR, OnUpdateControlBarMenu)
  37.     ON_COMMAND_EX(ID_LISTBOXBAR, OnBarCheck)
  38.     
  39.     ON_UPDATE_COMMAND_UI(ID_SIZETOOLBAR, OnUpdateControlBarMenu)
  40.     ON_COMMAND_EX(ID_SIZETOOLBAR, OnBarCheck)
  41. END_MESSAGE_MAP()
  42.  
  43. /////////////////////////////////////////////////////////////////////////////
  44. // arrays of IDs used to initialize control bars
  45.     
  46. // toolbar buttons - IDs are command buttons
  47. static UINT BASED_CODE buttons[] =
  48. {
  49.     // same order as in the bitmap 'toolbar.bmp'
  50.     ID_FILE_NEW,
  51.     ID_FILE_OPEN,
  52.     ID_FILE_SAVE,
  53.         ID_SEPARATOR,
  54.     ID_EDIT_CUT,
  55.     ID_EDIT_COPY,
  56.     ID_EDIT_PASTE,
  57.         ID_SEPARATOR,
  58.     ID_FILE_PRINT,
  59.     ID_APP_ABOUT,
  60. };
  61.  
  62. static UINT BASED_CODE allbuttons[] =
  63. {
  64.     // same order as in the bitmap 'toolbar.bmp'
  65.     ID_FILE_NEW,
  66.     ID_FILE_OPEN,
  67.     ID_FILE_SAVE,
  68.     ID_EDIT_CUT,
  69.     ID_EDIT_COPY,
  70.     ID_EDIT_PASTE,
  71.     ID_FILE_PRINT,
  72.     ID_APP_ABOUT,
  73. };
  74.  
  75. static UINT BASED_CODE indicators[] =
  76. {
  77.     ID_SEPARATOR,           // status line indicator
  78.     ID_INDICATOR_CAPS,
  79.     ID_INDICATOR_NUM,
  80.     ID_INDICATOR_SCRL,
  81. };
  82.  
  83. /////////////////////////////////////////////////////////////////////////////
  84. // CMainFrame construction/destruction
  85.  
  86. CMainFrame::CMainFrame() 
  87. {
  88.     m_BarCount = 0;
  89. }
  90.  
  91. CMainFrame::~CMainFrame()
  92. {
  93. }
  94.  
  95. int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
  96. {
  97.     if (CMDIFrameWnd::OnCreate(lpCreateStruct) == -1)
  98.         return -1;
  99.     
  100.     //     Uncommenting the line below will result in the toolbar having configuration.
  101.     //     This function specifies the command ID's of the button images in the bitmap.
  102.     //     The following SetButtons() then specifies which buttons are actually present
  103.     m_wndToolBar.SetBitmapIds(allbuttons, sizeof(allbuttons)/sizeof(UINT));
  104.     
  105.  
  106.     // Note: there is very little difference to what you'd see from standard AppWizard code.
  107.     // The toolbar is created in the same way...just that it's a CMRCSizeToolBar, instead of
  108.     // a CToolBar
  109.     
  110.     if (!m_wndToolBar.Create(this, WS_CHILD | WS_VISIBLE | CBRS_TOP, ID_SIZETOOLBAR) ||
  111.         !m_wndToolBar.LoadBitmap(IDR_MAINFRAME) ||
  112.         !m_wndToolBar.SetButtons(buttons, sizeof(buttons)/sizeof(UINT)))
  113.     {
  114.         TRACE0("Failed to create toolbar\n");
  115.         return -1;      // fail to create
  116.     } 
  117.  
  118.     if (!m_wndFixedToolBar.Create(this, WS_CHILD | WS_VISIBLE | CBRS_TOP | CBRS_SIZE_DYNAMIC) ||
  119.         !m_wndFixedToolBar.LoadBitmap(IDR_MAINFRAME) ||
  120.         !m_wndFixedToolBar.SetButtons(buttons, sizeof(buttons)/sizeof(UINT)))
  121.     {
  122.         TRACE0("Failed to create toolbar\n");
  123.         return -1;      // fail to create
  124.     } 
  125.  
  126.  
  127.     if (!m_wndStatusBar.Create(this) ||
  128.         !m_wndStatusBar.SetIndicators(indicators,
  129.           sizeof(indicators)/sizeof(UINT)))
  130.     {
  131.         TRACE0("Failed to create status bar\n");
  132.         return -1;      // fail to create
  133.     }
  134.  
  135.     // TODO: Delete these three lines if you don't want the toolbar to
  136.     //  be dockable
  137.     
  138.     EnableDocking(CBRS_ALIGN_ANY);
  139.     m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
  140.     DockControlBar(&m_wndToolBar);
  141.     m_wndFixedToolBar.EnableDocking(CBRS_ALIGN_ANY);
  142.     DockControlBar(&m_wndFixedToolBar);
  143.     
  144.     // This is a sizeable dialog bar...
  145.     if (!m_DlgBar.Create(this, IDD_DIALOGBAR, CBRS_TOP, ID_SIZEDLGBAR))   
  146.     {
  147.         TRACE0("Failed to create dialog bar\n");
  148.         return -1;      
  149.     } 
  150.     m_DlgBar.EnableDocking(CBRS_ALIGN_ANY);
  151.     DockControlBar(&m_DlgBar);
  152.  
  153.  
  154.     // This is a sizeable dialog bar.. that includes gadget resizing
  155.     m_SizeDlgBar.SetSizeDockStyle(SZBARF_STDMOUSECLICKS | SZBARF_DLGAUTOSIZE);
  156.     if (!m_SizeDlgBar.Create(this, IDD_DIALOGBAR2, CBRS_TOP, ID_FIXEDDLGBAR))   
  157.     {
  158.         TRACE0("Failed to create dialog bar\n");
  159.         return -1;      
  160.     } 
  161.     m_SizeDlgBar.EnableDocking(CBRS_ALIGN_ANY);
  162.     DockControlBar(&m_SizeDlgBar);
  163.  
  164.  
  165.     //LoadSizeBarState("DocktestBars");
  166.     RecalcLayout();
  167.  
  168.     // This is a list box that is added dynamically. You can have almost any number of these...
  169.  
  170.     if (!m_SizeListBar.Create(this, "size bar", ID_LISTBOXBAR)) 
  171.     {
  172.         TRACE0("Failed to create list box bar\n");
  173.         return -1;      
  174.     } 
  175.             
  176.     m_SizeListBar.EnableDocking(CBRS_ALIGN_ANY);
  177.     DockControlBar(&m_SizeListBar);
  178.  
  179.     return 0;
  180. }
  181.  
  182. /////////////////////////////////////////////////////////////////////////////
  183. // CMainFrame diagnostics
  184.  
  185. #ifdef _DEBUG
  186. void CMainFrame::AssertValid() const
  187. {
  188.     CMDIFrameWnd::AssertValid();
  189. }
  190.  
  191. void CMainFrame::Dump(CDumpContext& dc) const
  192. {
  193.     CMDIFrameWnd::Dump(dc);
  194. }
  195.  
  196. #endif //_DEBUG
  197.  
  198. /////////////////////////////////////////////////////////////////////////////
  199. // CMainFrame message handlers
  200.  
  201. void CMainFrame::OnViewTiledockbars() 
  202. {
  203.       TileDockedBars();
  204.     RecalcLayout();
  205. }
  206.  
  207.  
  208. void CMainFrame::OnArrangeBottomLeft() 
  209. {
  210.     ArrangeFloatingBars(CBRS_ARRANGE_BOTTOMLEFT);
  211. }
  212.  
  213.  
  214. void CMainFrame::OnArrangeBottomRight() 
  215. {
  216.     ArrangeFloatingBars(CBRS_ARRANGE_BOTTOMRIGHT);
  217. }
  218.  
  219.  
  220. void CMainFrame::OnArrangeTopLeft() 
  221. {
  222.     ArrangeFloatingBars(CBRS_ARRANGE_TOPLEFT);
  223. }
  224.  
  225.  
  226. void CMainFrame::OnArrangeTopRight() 
  227. {
  228.     ArrangeFloatingBars(CBRS_ARRANGE_TOPRIGHT);
  229. }
  230.  
  231.  
  232.  
  233.  
  234. void CMainFrame::OnClose() 
  235. {
  236.     // TODO: Add your message handler code here and/or call default
  237.     // DestroyDynamicBars();
  238.     SaveSizeBarState("DocktestBars");
  239.     MainFrameParent::OnClose();
  240. }
  241.