Click here to Skip to main content
15,885,435 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 241.5K   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
/********************************************************************\
	created:		2001/05/14
	created:		14:5:2001   15:27
	filename: 	c:\my projects\todocached\sortingdialog.cpp
	file path:	c:\my projects\todocached
	file base:	sortingdialog
	file ext:		cpp
	author:			Alex Kucherenko
	
	purpose:	
\********************************************************************/

#include "stdafx.h"
#include "todocached.h"
#include "SortingDialog.h"

#ifdef _DEBUG
  #define new DEBUG_NEW
  #undef THIS_FILE
  static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CSortingDialog dialog constructor

CSortingDialog::CSortingDialog( CWnd* pParent /*=NULL*/ )
	: CDialog(CSortingDialog::IDD, pParent)
{
	//{{AFX_DATA_INIT( CSortingDialog )
	m_strAll = _T("");
	m_strCurrent = _T("");
	//}}AFX_DATA_INIT
}

//////////////////////////////////////////////////////////////////////////
//  

void CSortingDialog::DoDataExchange( CDataExchange* pDX )
{
	CDialog::DoDataExchange( pDX );
	//{{AFX_DATA_MAP( CSortingDialog )
	DDX_Control( pDX, IDC_CURRENT_STYLE, m_cCurrent );
	DDX_Control( pDX, IDC_ALL_STULES, m_cAllStyles );
	DDX_LBString( pDX, IDC_ALL_STULES, m_strAll );
	DDX_LBString( pDX, IDC_CURRENT_STYLE, m_strCurrent );
	//}}AFX_DATA_MAP
}

//////////////////////////////////////////////////////////////////////////
//  

BEGIN_MESSAGE_MAP(CSortingDialog, CDialog)
	//{{AFX_MSG_MAP( CSortingDialog )
	ON_BN_CLICKED( IDC_BUTTON1, OnButton1 )
	ON_BN_CLICKED( IDC_BUTTON2, OnButton2 )
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

//////////////////////////////////////////////////////////////////////////
// Add sel to current List 

void CSortingDialog::OnButton1() 
{
	// TODO: Add your control notification handler code here
  UpdateData();
  
  if( m_strAll != TEXT( "< None >" ) && !m_strAll.IsEmpty() )
  {
    CString tmpStr;
    
    m_cCurrent.GetText( 0, tmpStr );

    if( tmpStr == TEXT( "< None >" ) )
      m_cCurrent.DeleteString( 0 );

    m_cCurrent.AddString( m_strAll );
    m_cAllStyles.DeleteString( m_cAllStyles.GetCurSel( ) );

    if( m_cAllStyles.GetCount() == 0 )
      m_cAllStyles.AddString( TEXT( "< None >" ) );
  }

  UpdateData( FALSE );
}

//////////////////////////////////////////////////////////////////////////
// Remove sel from current list 

void CSortingDialog::OnButton2() 
{
  // TODO: Add your control notification handler code here
  UpdateData();

  if( m_strCurrent != TEXT( "< None >" ) && !m_strCurrent.IsEmpty() )
  {
    CString tmpStr;
    
    m_cAllStyles.GetText( 0, tmpStr );
    
    if( tmpStr == TEXT( "< None >" ) )  
      m_cAllStyles.DeleteString( 0 );

    m_cAllStyles.AddString( m_strCurrent );
    m_cCurrent.DeleteString( m_cCurrent.GetCurSel( ) );

    if( m_cCurrent.GetCount() == 0 )
      m_cCurrent.AddString( TEXT( "< None >" ) );
  }

  UpdateData( FALSE );
}

//////////////////////////////////////////////////////////////////////////
//  

BOOL CSortingDialog::OnInitDialog() 
{
	CDialog::OnInitDialog();
	
	// TODO: Add extra initialization here

  m_cAllStyles.AddString( TEXT( "< None >" ) );

  m_cCurrent.AddString( TEXT( "Project" ) );
  m_cCurrent.AddString( TEXT( "File Name" ) );
  m_cCurrent.AddString( TEXT( "KeyWord" ) );
  m_cCurrent.AddString( TEXT( "Result String" ) );

  // return TRUE unless you set the focus to a control
	// EXCEPTION: OCX Property Pages should return FALSE
	return TRUE;  
}

//:> 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