Click here to Skip to main content
15,896,726 members
Articles / Desktop Programming / MFC

Enhancements of Matthew R. Millers COptionTree

Rate me:
Please Sign up or sign in to vote.
4.76/5 (15 votes)
26 Apr 2006CPOL3 min read 120.5K   2.6K   58  
This article demonstrates an enhanced version of Matthew R. Millers Option Tree
// COptionTree
//
// License
// -------
// This code is provided "as is" with no expressed or implied warranty.
// 
// You may use this code in a commercial product with or without acknowledgement.
// However you may not sell this code or any modification of this code, this includes 
// commercial libraries and anything else for profit.
//
// I would appreciate a notification of any bugs or bug fixes to help the control grow.
//
// History:
// --------
//	See License.txt for full history information.
//
//
// Copyright (c) 1999-2002 
// ComputerSmarts.net 
// mattrmiller@computersmarts.net

#include "stdafx.h"
#include "OptionTreeIPAddressEdit.h"

// Added Headers
#include "OptionTree.h"
#include ".\optiontreeipaddressedit.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#endif

/////////////////////////////////////////////////////////////////////////////
// COptionTreeIPAddressEdit

COptionTreeIPAddressEdit::COptionTreeIPAddressEdit()
{
	// Initialize variables
	m_wndNotify = NULL;
}

COptionTreeIPAddressEdit::~COptionTreeIPAddressEdit()
{
}


BEGIN_MESSAGE_MAP(COptionTreeIPAddressEdit, CEdit)
	//{{AFX_MSG_MAP(COptionTreeIPAddressEdit)
	ON_WM_KILLFOCUS()
	ON_CONTROL_REFLECT(EN_MAXTEXT, OnMaxText)
	ON_WM_KEYDOWN()
	//}}AFX_MSG_MAP
  ON_CONTROL_REFLECT(EN_CHANGE, OnEnChange)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// COptionTreeIPAddressEdit message handlers

void COptionTreeIPAddressEdit::OnKillFocus(CWnd* pNewWnd) 
{
	// Notify user
	if (IsWindow(m_wndNotify))
	{
		::SendMessage(m_wndNotify, OT_IPADDRESS_KILLFOCUS, (WPARAM) pNewWnd, NULL); 
	}

	CEdit::OnKillFocus(pNewWnd);	
}

void COptionTreeIPAddressEdit::SetNotifyWnd(HWND hWnd)
{
	// Save window
	m_wndNotify = hWnd;
}

void COptionTreeIPAddressEdit::OnMaxText() 
{
	// Notify user
	if (IsWindow(m_wndNotify))
	{
		::SendMessage(m_wndNotify, OT_IPADDRESS_NEXTEDIT, (WPARAM) this, NULL); 
	}	
}

void COptionTreeIPAddressEdit::OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags) 
{
	// If return is pressed and not multiline, commit
	if (IsWindow(GetSafeHwnd()))
	{
		if (nChar == _T('.'))
		{
			// -- Notify user
			if (IsWindow(m_wndNotify))
			{
				::SendMessage(m_wndNotify, OT_IPADDRESS_NEXTEDIT, (WPARAM) this, NULL); 
			}
		}
	}
	
	CEdit::OnKeyDown(nChar, nRepCnt, nFlags);
}
BOOL COptionTreeIPAddressEdit::PreTranslateMessage(MSG* pMsg)
{
  if (pMsg->message == WM_KEYDOWN && (pMsg->wParam == VK_RETURN || pMsg->wParam == VK_ESCAPE))
  {
    ::SendMessage(m_wndNotify, OT_IPADDRESS_KILLFOCUS, (WPARAM) 1, NULL); 
  }
  return CEdit::PreTranslateMessage(pMsg);
}

void COptionTreeIPAddressEdit::OnEnChange()
{
  // TODO:  If this is a RICHEDIT control, the control will not
  // send this notification unless you override the CEdit::OnInitDialog()
  // function and call CRichEditCtrl().SetEventMask()
  // with the ENM_CHANGE flag ORed into the mask.
  ::SendMessage(m_wndNotify, OT_TEXTCHANGED, (WPARAM) 1, NULL); 
}

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 Code Project Open License (CPOL)


Written By
Web Developer
Germany Germany
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions