Click here to Skip to main content
15,896,912 members
Articles / Programming Languages / C++

HexEdit - Window Binary File Editor

Rate me:
Please Sign up or sign in to vote.
4.96/5 (137 votes)
17 Oct 2012MIT45 min read 497.6K   22.4K   321  
Open-source hex editor with powerful binary templates
// GenDockablePane.cpp : implementation file
//
// Copyright (c) 2011 by Andrew W. Phillips.
//
// This file is distributed under the MIT license, which basically says
// you can do what you want with it but I take no responsibility for bugs.
// See http://www.opensource.org/licenses/mit-license.php for full details.
//

#include "stdafx.h"
#include "GenDockablePane.h"

// CGenPaneFrameWnd
// This is a kludge to get access to protected members of CPaneFrameWnd

class CGenPaneFrameWnd : public CPaneFrameWnd
{
public:
	//BOOL IsRolled() { return m_bRolledUp; }
	void Unroll()
	{
		if (!m_bRolledUp) return;

		//// Save current mouse location
		//CPoint ptSaved;
		//GetCursorPos(&ptSaved);

		// Get frames window location
		CRect rct;
		GetWindowRect(rct);

		// Try to move the mouse over the "pin" button (right end of title bar)
		// (We need to move the mouse over the window so it stays unrolled and we may as well move
		// it over the "pin" button to draw the users attention to it and allow them to click it.)
		int distRight = 32;
		if (m_lstCaptionButtons.GetCount() > 0)
		{
			// The first (right most) button is normally the close button so skip its width
			POSITION pos = m_lstCaptionButtons.GetHeadPosition();
			CMFCCaptionButton* pBtn = (CMFCCaptionButton*) m_lstCaptionButtons.GetNext(pos);
			distRight = pBtn->GetRect().Width() + 16;
		}
		// Set mouse position over the window so OnCheckRollState() unrolls it
		SetCursorPos(rct.left + rct.Width() - distRight, rct.top + rct.Height()/2);
		OnCheckRollState();

		//// Restore mouse position
		//SetCursorPos(ptSaved.x, ptSaved.y);
	}
};

// CGenDockablePane

IMPLEMENT_DYNAMIC(CGenDockablePane, CDockablePane)

CGenDockablePane::CGenDockablePane() : m_pNestedWnd(NULL)
{
}

CGenDockablePane::~CGenDockablePane()
{
}

BEGIN_MESSAGE_MAP(CGenDockablePane, CDockablePane)
	ON_WM_CREATE()
	ON_WM_SIZE()
	ON_WM_SETFOCUS()
END_MESSAGE_MAP()

// Window manipulation

void CGenDockablePane::ShowAndUnroll()
{
	if (!IsWindowVisible())
		ShowPane(TRUE, FALSE, TRUE);

	CPaneFrameWnd * pFrm;
	if ((pFrm = DYNAMIC_DOWNCAST(CPaneFrameWnd, GetParentMiniFrame())) != NULL)
	{
		((CGenPaneFrameWnd *)pFrm)->Unroll();
	}

	SetFocus();
}

void CGenDockablePane::Float(bool bShow /* = true */)
{
	CRect rct;
	GetWindowRect(&rct);
	FloatPane(rct, DM_UNKNOWN, bShow);
}

CSize CGenDockablePane::GetDefaultSize()
{
	CSize sz;
	GetMinSize(sz);
	sz.cx += 8;
	sz.cy += GetCaptionHeight() + 8;
	return sz;
}

// Return default size of frame window containing the window when floating.
CSize CGenDockablePane::GetFrameSize()
{
	CSize sz = GetDefaultSize();
	CWnd* pParent = GetParent();
	ASSERT(pParent != NULL && pParent->IsKindOf(RUNTIME_CLASS(CPaneFrameWnd)));
	if (pParent != NULL)
	{
		// If floating add NC area of parent (frame) window
		CRect wndRect, cliRect;
		pParent->GetWindowRect(&wndRect);
		pParent->GetClientRect(&cliRect);
		sz.cx += wndRect.Width() - cliRect.Width();
		sz.cy += wndRect.Height() - cliRect.Height();
	}

	return sz;
}

// Message handlers

int CGenDockablePane::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
	if (CDockablePane::OnCreate(lpCreateStruct) == -1)
		return -1;
	return 0;
}

void CGenDockablePane::InitialUpdate(CWnd *pWnd)
{
	m_pNestedWnd = pWnd;

	CRect rct;
	m_pNestedWnd->GetWindowRect(&rct);
	SetMinSize(rct.Size());
	m_recentDockInfo.m_recentSliderInfo.m_rectDockedRect = rct;

	AdjustLayout();
}


void CGenDockablePane::OnSize(UINT nType, int cx, int cy)
{
	CDockablePane::OnSize(nType, cx, cy);
    if (m_pNestedWnd != NULL)
		AdjustLayout();
}

void CGenDockablePane::OnSetFocus(CWnd* pOldWnd)
{
	ASSERT(m_pNestedWnd != NULL);
	CDockablePane::OnSetFocus(pOldWnd);
	m_pNestedWnd->SetFocus();
}

// Private methods

void CGenDockablePane::AdjustLayout()
{
	ASSERT(m_pNestedWnd != NULL);
	if (GetSafeHwnd() == NULL)
		return;

	CRect rct;
	GetClientRect(rct);
	m_pNestedWnd->SetWindowPos(NULL,
		                 rct.left, rct.top,
						 rct.Width(), rct.Height(),
		                 SWP_NOACTIVATE | SWP_NOZORDER);
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The MIT License


Written By
Australia Australia
Andrew has a BSc (1983) from Sydney University in Computer Science and Mathematics. Andrew began programming professionally in C in 1984 and has since used many languages but mainly C, C++, and C#.

Andrew has a particular interest in STL, .Net, and Agile Development. He has written articles on STL for technical journals such as the C/C++ User's Journal.

In 1997 Andrew began using MFC and released the source code for a Windows binary file editor called HexEdit, which was downloaded more than 1 million times. From 2001 there was a shareware version of HexEdit (later called HexEdit Pro). HexEdit has been updated to uses the new MFC (based on BCG) and is once more open source.

Comments and Discussions