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

ToDoList Add-on

Rate me:
Please Sign up or sign in to vote.
4.69/5 (6 votes)
20 Apr 2002CPOL3 min read 242.4K   2.9K   57  
A Visual Studio add-in to help navigate to TODO:, TASK: etc comments, as well as showing STL containers in debug mode such as std::string, std::list etc
#include "stdafx.h"
#include "dlg_resize.h"

/////////////////////////////////////////////////////////////////////////
// default constructor

CResizeControl::CResizeControl( void ) 
  : m_hParent( NULL )
  , m_hControl( NULL )
  , m_bLeftAnchor( false )
  , m_bRightAnchor( false )
  , m_bTopAnchor( false )
  , m_bBottomAnchor( false )
{
};

//////////////////////////////////////////////////////////////////////////
// constructor init members by control window handler and align type

CResizeControl::CResizeControl( HWND hControl, long Align )
  : m_hParent( NULL )
  , m_hControl( NULL )
  , m_bLeftAnchor( false )
  , m_bRightAnchor( false )
  , m_bTopAnchor( false )
  , m_bBottomAnchor( false )
{
  SetControl( hControl );
  SetAlign( Align );
};

//////////////////////////////////////////////////////////////////////////
// constructor init members by control window handler and align type

CResizeControl::CResizeControl( HWND hParent, int CtrlID, long Align )
  : m_hParent( NULL )
  , m_hControl( NULL )
  , m_bLeftAnchor( false )
  , m_bRightAnchor( false )
  , m_bTopAnchor( false )
  , m_bBottomAnchor( false )
{
  SetControl( hParent, CtrlID );
  SetAlign( Align );
};

//////////////////////////////////////////////////////////////////////////
// Function store in class members all needed to resize info

void CResizeControl::SetControl( HWND hControl )
{
  m_hControl = hControl;
  m_hParent = ::GetParent( m_hControl );
  
  RECT  tRect;
  POINT tPoint;
  ::GetWindowRect( m_hControl, &tRect );
  ::GetClientRect( m_hParent, &m_tParent );
  
  // Get client coordinates (left, top)
  tPoint.x = tRect.left;
  tPoint.y = tRect.top;
  ::ScreenToClient( m_hParent, &tPoint );
  m_tClient.left = tPoint.x;
  m_tClient.top = tPoint.y;
  
  // Get client coordinates (right, bottom)
  tPoint.x = tRect.right;
  tPoint.y = tRect.bottom;
  ::ScreenToClient( m_hParent, &tPoint );
  m_tClient.right = tPoint.x;
  m_tClient.bottom = tPoint.y;
};


//////////////////////////////////////////////////////////////////////////
// function will update size and position of control

void CResizeControl::UpdatePos( HDWP hDef /*= NULL*/ )
{
  int x = 0, y = 0;
  int cx = m_tClient.right - m_tClient.left;
  int cy = m_tClient.bottom - m_tClient.top;
  
  RECT tParent;
  ::GetClientRect( m_hParent, &tParent );
  
  if( m_bLeftAnchor )
  {
    x = m_tClient.left;
    
    if( m_bRightAnchor )
      cx = tParent.right - x - ( m_tParent.right - m_tClient.right );
  }
  else
    if( m_bRightAnchor )
      x = tParent.right - cx - ( m_tParent.right - m_tClient.right  );
    
  if( m_bTopAnchor )
  {
    y = m_tClient.top;
    
    if( m_bBottomAnchor )
      cy = tParent.bottom - y - ( m_tParent.bottom - m_tClient.bottom );
  }
  else
    if( m_bBottomAnchor )
      y = tParent.bottom - cy - ( m_tParent.bottom - m_tClient.bottom );
    
  if( hDef )
    ::DeferWindowPos( hDef, m_hControl, NULL, x, y, cx, cy, SWP_NOZORDER | SWP_NOOWNERZORDER );
  else
    ::SetWindowPos( m_hControl, NULL, x, y, cx, cy, SWP_NOZORDER | SWP_NOOWNERZORDER );
};

//:> end of file

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
CEO ArtfulBits Inc.
Ukraine Ukraine
Name:Kucherenko Oleksandr

Born:September 20, 1979

Platforms: Win32, Linux; - well known and MS-DOS; Win16; OS/2 - old time not touched;

Hardware: IBM PC

Programming Languages: Assembler (for Intel 80386); Borland C/C++; Borland Pascal; Object Pascal; Borland C++Builder; Delphi; Perl; Java; Visual C++; Visual J++; UML; XML/XSL; C#; VB.NET; T-SQL; PL/SQL; and etc.

Development Environments: MS Visual Studio 2001-2008; MS Visual C++; Borland Delphi; Borland C++Builder; C/C++ any; Rational Rose; GDPro; Together and etc.

Libraries: STL, ATL, WTL, MFC, NuMega Driver Works, VCL; .NET 1.0, 1.1, 2.0, 3.5; and etc.

Technologies: Client/Server; COM; DirectX; DirectX Media; BDE; HTML/DHTML; ActiveX; Java Servlets; DCOM; COM+; ADO; CORBA; .NET; Windows Forms; GDI/GDI+; and etc.

Application Skills: Databases - design and maintain, support, programming; GUI Design; System Programming, Security; Business Software Development. Win/Web Services development and etc.

Comments and Discussions