Click here to Skip to main content
15,884,473 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.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
/********************************************************************
  created:    2001/11/05
  created:    5:11:2001   16:26
  filename:   D:\My Projects\Own\Add-on\ToDoCached\ShtSTLDbg.h
  file path:  D:\My Projects\Own\Add-on\ToDoCached
  file base:  ShtSTLDbg
  file ext:   h
  author:     Alex Kucherenko

  purpose:    
*********************************************************************/

#if !defined(AFX_SHTSTLDBG_H__DADF5FF1_A95A_412F_BDF6_F12C8BA0DE77__INCLUDED_)
#define AFX_SHTSTLDBG_H__DADF5FF1_A95A_412F_BDF6_F12C8BA0DE77__INCLUDED_

#pragma once

#include "dlg_init.h"
#include "autofont.h"
#include "hhsupp.h"

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

class CShtSTLDbg 
  : public CHHPropPage
  , public CInitDialogImpl
{
    DECLARE_DYNCREATE(CShtSTLDbg)

  public:
    CShtSTLDbg( CRegistryEx *pReg = NULL );
    ~CShtSTLDbg();

  //{{AFX_DATA(CShtSTLDbg)
	enum { IDD = IDD_PAGE_STLDBG };
  CSpinButtonCtrl m_cSpinFindHistory;
  CSpinButtonCtrl m_cSpinAuto;
  CSpinButtonCtrl m_cSpinHistory;
  BOOL  m_bAutoType;
  BOOL  m_bAutoExpand;
  long  m_lExpandValue;
  BOOL  m_bSymbolChange;
  BOOL  m_bFndSymChange;
  long  m_lHistory;
  long  m_lFndHistory;
	//}}AFX_DATA


  //{{AFX_VIRTUAL(CShtSTLDbg)
  protected:
    virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  //}}AFX_VIRTUAL

  protected:
    virtual void GetInitSettings();
    virtual void SetInitSettings();
    
    CAutoFont   m_STLFont;
    CAutoFont   m_FindFont;

  //{{AFX_MSG(CShtSTLDbg)
    virtual BOOL OnInitDialog();
    afx_msg void OnDestroy();
    afx_msg void OnAutoExpand();
	  afx_msg void OnSetFindFont();
	  afx_msg void OnSetSTLFont();
	//}}AFX_MSG
    inline afx_msg void OnClearHistory();
    inline afx_msg void OnClearFindHistory();

    DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}

#endif // !defined(AFX_SHTSTLDBG_H__DADF5FF1_A95A_412F_BDF6_F12C8BA0DE77__INCLUDED_)

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