Click here to Skip to main content
15,886,362 members
Articles / Desktop Programming / MFC

SuperGrid - Yet Another listview control

Rate me:
Please Sign up or sign in to vote.
4.77/5 (98 votes)
8 Dec 1999CPOL3 min read 1M   11.4K   345  
A combination list control and tree control with checkbox capability
// SuperGridDoc.cpp : implementation of the CSuperGridDoc class
//

#include "stdafx.h"
#include "SuperGrid.h"

#include "SuperGridDoc.h"

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

/////////////////////////////////////////////////////////////////////////////
// CSuperGridDoc

IMPLEMENT_DYNCREATE(CSuperGridDoc, CDocument)

BEGIN_MESSAGE_MAP(CSuperGridDoc, CDocument)
	//{{AFX_MSG_MAP(CSuperGridDoc)
		// NOTE - the ClassWizard will add and remove mapping macros here.
		//    DO NOT EDIT what you see in these blocks of generated code!
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CSuperGridDoc construction/destruction

CSuperGridDoc::CSuperGridDoc()
{
	// TODO: add one-time construction code here

}

CSuperGridDoc::~CSuperGridDoc()
{
}

BOOL CSuperGridDoc::OnNewDocument()
{
	if (!CDocument::OnNewDocument())
		return FALSE;

	// TODO: add reinitialization code here
	// (SDI documents will reuse this document)

	return TRUE;
}



/////////////////////////////////////////////////////////////////////////////
// CSuperGridDoc serialization

void CSuperGridDoc::Serialize(CArchive& ar)
{
	if (ar.IsStoring())
	{
		// TODO: add storing code here
	}
	else
	{
		// TODO: add loading code here
	}
}

/////////////////////////////////////////////////////////////////////////////
// CSuperGridDoc diagnostics

#ifdef _DEBUG
void CSuperGridDoc::AssertValid() const
{
	CDocument::AssertValid();
}

void CSuperGridDoc::Dump(CDumpContext& dc) const
{
	CDocument::Dump(dc);
}
#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CSuperGridDoc commands

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
Switzerland Switzerland
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions