This commit is contained in:
parent
68b6716e0d
commit
59484b9b75
6 changed files with 155 additions and 85 deletions
|
@ -5,6 +5,7 @@
|
|||
#include "MapEdit.h"
|
||||
|
||||
#include "MainFrm.h"
|
||||
#include "ExToolBar.h"
|
||||
|
||||
#ifdef _DEBUG
|
||||
#define new DEBUG_NEW
|
||||
|
@ -49,18 +50,7 @@ int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
|
|||
if (CMDIFrameWnd::OnCreate(lpCreateStruct) == -1) return -1;
|
||||
EnableDocking(CBRS_ALIGN_ANY);
|
||||
|
||||
// ToolBar
|
||||
|
||||
if (!m_wndToolBar.CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP | CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) || !m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
|
||||
{
|
||||
TRACE0("Failed to create toolbar\n");
|
||||
return -1; // fail to create
|
||||
}
|
||||
m_wndToolBar.SetWindowText("ToolBar");
|
||||
m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
|
||||
DockControlBar(&m_wndToolBar);
|
||||
|
||||
|
||||
/*
|
||||
// TileBar
|
||||
if (!m_wndTileBar.Create(this,IDD_TILEBAR,(CBRS_TOP | CBRS_SIZE_DYNAMIC | CBRS_FLOAT_MULTI ),IDD_TILEBAR))
|
||||
{
|
||||
|
@ -71,7 +61,7 @@ int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
|
|||
m_wndTileBar.EnableDocking( CBRS_ALIGN_TOP);
|
||||
m_wndTileBar.SetWindowText("TileBar");
|
||||
DockControlBar(&m_wndTileBar);
|
||||
|
||||
*/
|
||||
|
||||
// Status Bar
|
||||
if (!m_wndStatusBar.Create(this) || !m_wndStatusBar.SetIndicators(indicators,sizeof(indicators)/sizeof(UINT)))
|
||||
|
@ -90,6 +80,50 @@ int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
|
|||
m_wndLayerBar.EnableDocking( CBRS_ALIGN_ANY);
|
||||
m_wndLayerBar.SetWindowText("Layer");
|
||||
DockControlBar(&m_wndLayerBar);
|
||||
|
||||
// ToolBar (plus extra code for extra controls!!)
|
||||
if (!m_wndToolBar.CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP | CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) || !m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
|
||||
{
|
||||
TRACE0("Failed to create toolbar\n");
|
||||
return -1; // fail to create
|
||||
}
|
||||
m_wndToolBar.SetWindowText("ToolBar");
|
||||
m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
|
||||
DockControlBar(&m_wndToolBar);
|
||||
|
||||
#define SNAP_WIDTH 80 //the width of the combo box
|
||||
|
||||
//set up the ComboBox control as a snap mode select box
|
||||
//
|
||||
//First get the index of the placeholder's position in the toolbar
|
||||
int index = 0;
|
||||
RECT rect;
|
||||
while (m_wndToolBar.GetItemID(index)!=ID_TOOLBAR_COMBO) index++;
|
||||
|
||||
//next convert that button to a seperator and get its position
|
||||
m_wndToolBar.SetButtonInfo(index, ID_TOOLBAR_COMBO, TBBS_SEPARATOR, SNAP_WIDTH);
|
||||
m_wndToolBar.GetItemRect(index, &rect);
|
||||
|
||||
//expand the rectangle to allow the combo box room to drop down
|
||||
rect.top+=2;
|
||||
rect.bottom += 200;
|
||||
|
||||
// then .Create the combo box and show it
|
||||
if (!m_wndToolBar.m_Combo.Create(WS_CHILD|WS_VISIBLE | CBS_AUTOHSCROLL | CBS_DROPDOWNLIST | CBS_HASSTRINGS ,rect, &m_wndToolBar, IDC_TOOLBAR_COMBO))
|
||||
{
|
||||
TRACE0("Failed to create combo-box\n");
|
||||
return FALSE;
|
||||
}
|
||||
m_wndToolBar.m_Combo.SetFont(m_wndToolBar.GetFont()); // Set to nice font (not playskool font!!)
|
||||
m_wndToolBar.m_Combo.ShowWindow(SW_SHOW);
|
||||
|
||||
//fill the combo box
|
||||
m_wndToolBar.m_Combo.AddString("SNAP OFF");
|
||||
m_wndToolBar.m_Combo.AddString("SNAP GRID");
|
||||
m_wndToolBar.m_Combo.AddString("SNAP RASTER");
|
||||
m_wndToolBar.m_Combo.AddString("SNAP VERTEX");
|
||||
m_wndToolBar.m_Combo.AddString("SNAP LINE");
|
||||
m_wndToolBar.m_Combo.SetCurSel(0);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue