Click here to Skip to main content
15,892,674 members
Articles / Programming Languages / C++

A Utility to Clean Up Compiler Temp Files

Rate me:
Please Sign up or sign in to vote.
4.92/5 (41 votes)
24 Dec 2002 365.3K   3.6K   97  
A shell extension that deletes compiler temp and intermediate files.
//////////////////////////////////////////////////////////////////////
// 
// This utility written and copyright by Michael Dunn (mdunn at inreach
// dot com).  You may freely use and redistribute this source code and
// binary as long as this notice is retained.
//
// Contact me if you have any questions, comments, or bug reports. Get
// the latest updates at http://home.inreach.com/mdunn/code/
//
//////////////////////////////////////////////////////////////////////
// 
// Revision history:
//  Feb 28, 2000: Version 1.0: First release.
//
//  June 5, 2000: Version 1.1: Fixed (un)registration so the DLL works
//      on NT/2000.
//
//  Oct 28, 2001: Version 1.1.1: Added 4 default wildcards, *.ncb, *.aps,
//      *.bsc, *.sbr.
//
//////////////////////////////////////////////////////////////////////

// OptionsDlg.cpp : implementation file
//

#include "stdafx.h"
#include "resource.h"
#include "OptionsDlg.h"
#include "AddEditPatternDlg.h"
#include <afxpriv.h>    // for WM_KICKIDLE

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

/////////////////////////////////////////////////////////////////////////////
// COptionsDlg dialog


COptionsDlg::COptionsDlg ( CWnd* pParent, CStringList& listPatterns )
	: CDialog(COptionsDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(COptionsDlg)
	m_bRecycle = FALSE;
	//}}AFX_DATA_INIT

    m_lsPatterns.AddTail ( &listPatterns );
}


void COptionsDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(COptionsDlg)
	DDX_Control(pDX, IDC_LIST1, m_list);
	DDX_Check(pDX, IDC_RECYCLE_FILES, m_bRecycle);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(COptionsDlg, CDialog)
	//{{AFX_MSG_MAP(COptionsDlg)
	ON_BN_CLICKED(IDC_ADD, OnAdd)
	ON_BN_CLICKED(IDC_EDIT, OnEdit)
	ON_BN_CLICKED(IDC_DELETE, OnDelete)
	ON_NOTIFY(NM_DBLCLK, IDC_LIST1, OnDblclkList)
	//}}AFX_MSG_MAP
    ON_MESSAGE_VOID(WM_KICKIDLE, OnKickIdle)
    ON_UPDATE_COMMAND_UI(IDC_EDIT, OnUpdateEdit)
    ON_UPDATE_COMMAND_UI(IDC_DELETE, OnUpdateDelete)
    ON_UPDATE_COMMAND_UI(IDOK, OnUpdateOK)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// COptionsDlg message handlers

BOOL COptionsDlg::OnInitDialog() 
{
	CDialog::OnInitDialog();

CString  sPattern;
POSITION pos;
int      nIndex = 0;

    m_list.InsertColumn ( 0, _T("") );

    for ( pos = m_lsPatterns.GetHeadPosition(); NULL != pos; )
        {
        sPattern = m_lsPatterns.GetNext ( pos );
        m_list.InsertItem ( nIndex++, sPattern );
        }

    m_list.SetColumnWidth ( 0, LVSCW_AUTOSIZE_USEHEADER );

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

void COptionsDlg::OnOK() 
{
    if ( m_list.GetItemCount() == 0 )
        {
        AfxMessageBox ( _T("Please enter at least one wildcard."), 
                        MB_ICONERROR );

        GotoDlgCtrl ( GetDlgItem ( IDC_ADD ));
        return;
        }

    m_lsPatterns.RemoveAll();

int nIndex, nMaxIndex = m_list.GetItemCount() - 1;

    for ( nIndex = 0; nIndex <= nMaxIndex; nIndex++ )
        {
        m_lsPatterns.AddTail ( m_list.GetItemText ( nIndex, 0 ));
        }

    CDialog::OnOK();
}

void COptionsDlg::OnAdd() 
{
CAddEditPatternDlg dlg ( TRUE, this );	
int nIndex;

    if ( IDOK == dlg.DoModal() )
        {
        nIndex = m_list.GetItemCount();
        m_list.InsertItem ( nIndex, dlg.m_sPattern );
        m_list.EnsureVisible ( nIndex, FALSE );
        m_list.SetItemState ( nIndex, LVIS_SELECTED, LVIS_SELECTED );
        }
}

void COptionsDlg::OnEdit() 
{
CAddEditPatternDlg dlg ( FALSE, this );	
int nSelIndex = m_list.GetNextItem ( -1, LVNI_SELECTED );

    ASSERT ( -1 != nSelIndex );

    dlg.m_sPattern = m_list.GetItemText ( nSelIndex, 0 );

    if ( IDOK == dlg.DoModal() )
        {
        m_list.SetItemText ( nSelIndex, 0, dlg.m_sPattern );
        m_list.EnsureVisible ( nSelIndex, FALSE );
        }
}

void COptionsDlg::OnDelete() 
{
int nSelItem = m_list.GetNextItem ( -1, LVIS_SELECTED );

    if ( -1 != nSelItem )
        {
        m_list.DeleteItem ( nSelItem );
        }
}

void COptionsDlg::OnKickIdle()
{
    UpdateDialogControls ( this, FALSE );
}

void COptionsDlg::OnUpdateDelete ( CCmdUI* pCmdUI )
{
    pCmdUI->Enable ( NULL != m_list.GetFirstSelectedItemPosition() );
}

void COptionsDlg::OnUpdateEdit ( CCmdUI* pCmdUI )
{
    pCmdUI->Enable ( NULL != m_list.GetFirstSelectedItemPosition() );
}

void COptionsDlg::OnUpdateOK ( CCmdUI* pCmdUI )
{
    pCmdUI->Enable ( m_list.GetItemCount() > 0 );
}

void COptionsDlg::OnDblclkList(NMHDR* pNMHDR, LRESULT* pResult) 
{
    if ( -1 != m_list.GetNextItem ( -1, LVNI_SELECTED ))
        OnEdit();

    *pResult = 0;   // return value is ignored
}

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 has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Software Developer (Senior) VMware
United States United States
Michael lives in sunny Mountain View, California. He started programming with an Apple //e in 4th grade, graduated from UCLA with a math degree in 1994, and immediately landed a job as a QA engineer at Symantec, working on the Norton AntiVirus team. He pretty much taught himself Windows and MFC programming, and in 1999 he designed and coded a new interface for Norton AntiVirus 2000.
Mike has been a a developer at Napster and at his own lil' startup, Zabersoft, a development company he co-founded with offices in Los Angeles and Odense, Denmark. Mike is now a senior engineer at VMware.

He also enjoys his hobbies of playing pinball, bike riding, photography, and Domion on Friday nights (current favorite combo: Village + double Pirate Ship). He would get his own snooker table too if they weren't so darn big! He is also sad that he's forgotten the languages he's studied: French, Mandarin Chinese, and Japanese.

Mike was a VC MVP from 2005 to 2009.

Comments and Discussions