Descent3/editor/IpFrame.cpp

117 lines
3.7 KiB
C++
Raw Permalink Normal View History

/*
2024-06-15 18:12:48 +00:00
* Descent 3
* Copyright (C) 2024 Parallax Software
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
// IpFrame.cpp : implementation of the CInPlaceFrame class
//
#include "stdafx.h"
#include "editor.h"
#include "IpFrame.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CInPlaceFrame
IMPLEMENT_DYNCREATE(CInPlaceFrame, COleIPFrameWnd)
BEGIN_MESSAGE_MAP(CInPlaceFrame, COleIPFrameWnd)
2024-06-15 18:12:48 +00:00
//{{AFX_MSG_MAP(CInPlaceFrame)
ON_WM_CREATE()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CInPlaceFrame construction/destruction
2024-06-15 18:12:48 +00:00
CInPlaceFrame::CInPlaceFrame() {}
2024-06-15 18:12:48 +00:00
CInPlaceFrame::~CInPlaceFrame() {}
2024-06-15 18:12:48 +00:00
int CInPlaceFrame::OnCreate(LPCREATESTRUCT lpCreateStruct) {
if (COleIPFrameWnd::OnCreate(lpCreateStruct) == -1)
return -1;
2024-06-15 18:12:48 +00:00
// CResizeBar implements in-place resizing.
if (!m_wndResizeBar.Create(this)) {
TRACE0("Failed to create resize bar\n");
return -1; // fail to create
}
2024-06-15 18:12:48 +00:00
// By default, it is a good idea to register a drop-target that does
// nothing with your frame window. This prevents drops from
// "falling through" to a container that supports drag-drop.
m_dropTarget.Register(this);
2024-06-15 18:12:48 +00:00
return 0;
}
// OnCreateControlBars is called by the framework to create control bars on the
// container application's windows. pWndFrame is the top level frame window of
// the container and is always non-NULL. pWndDoc is the doc level frame window
// and will be NULL when the container is an SDI application. A server
// application can place MFC control bars on either window.
2024-06-15 18:12:48 +00:00
BOOL CInPlaceFrame::OnCreateControlBars(CFrameWnd *pWndFrame, CFrameWnd *pWndDoc) {
// Remove this if you use pWndDoc
UNREFERENCED_PARAMETER(pWndDoc);
// Set owner to this window, so messages are delivered to correct app
m_wndToolBar.SetOwner(this);
// Create toolbar on client's frame window
if (!m_wndToolBar.Create(pWndFrame) || !m_wndToolBar.LoadToolBar(IDR_SRVR_INPLACE)) {
TRACE0("Failed to create toolbar\n");
return FALSE;
}
// TODO: Remove this if you don't want tool tips or a resizeable toolbar
m_wndToolBar.SetBarStyle(m_wndToolBar.GetBarStyle() | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC);
// TODO: Delete these three lines if you don't want the toolbar to
// be dockable
m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
pWndFrame->EnableDocking(CBRS_ALIGN_ANY);
pWndFrame->DockControlBar(&m_wndToolBar);
return TRUE;
}
2024-06-15 18:12:48 +00:00
BOOL CInPlaceFrame::PreCreateWindow(CREATESTRUCT &cs) {
// TODO: Modify the Window class or styles here by modifying
// the CREATESTRUCT cs
2024-06-15 18:12:48 +00:00
return COleIPFrameWnd::PreCreateWindow(cs);
}
/////////////////////////////////////////////////////////////////////////////
// CInPlaceFrame diagnostics
#ifdef _DEBUG
2024-06-15 18:12:48 +00:00
void CInPlaceFrame::AssertValid() const { COleIPFrameWnd::AssertValid(); }
2024-06-15 18:12:48 +00:00
void CInPlaceFrame::Dump(CDumpContext &dc) const { COleIPFrameWnd::Dump(dc); }
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CInPlaceFrame commands