Click here to Skip to main content
15,881,882 members
Articles / Programming Languages / C++

CPrintPreviewListBox

Rate me:
Please Sign up or sign in to vote.
4.83/5 (5 votes)
28 Dec 2000 85.1K   3.1K   37   4
A listbox derived class with printing and print preview in SDI and MDI applications
In this article, you will find a listbox derived class that allows printing and print preview in SDI and MDI applications.

Introduction

CPrintPreviewListBox is a CListBox derived class which is designed for one simple task - printing and previewing in SDI and MDI applications (for the present not in dialog based applications).

This is the first version of the class with print and preview capabilities, so the class has some constraints such as the maximum number of characters per line (81), fixed font (Courier New) and as I already mentioned, this class does not support dialog based applications.

However, this class is very useful for some special tasks such as print and print previewing the content of list boxes in your SDI or MDI application.

This class also supports line breaking.

Consequently, I hope that following versions of this class will be able to change font and have other capabilities.

The CPrintPreviewListBox class has several important functions that should all be self explanatory:

C++
void Print();
void SetPrintTitle( CString sNewTitle = "Default title" );
CString GetPrintTitle();
void SetOnlySelectedItems( bool bOnlySelectedItems );
bool GetOnlySelectedItems();
virtual void OnBeginPrinting (CDC*, CPrintInfo*);
virtual void OnPrint (CDC*, CPrintInfo*);
virtual void OnEndPrinting (CDC*, CPrintInfo*);

Using this class is very simple, as shown in the following lines of code (see the sampleView.h header file):

C++
#include "PrintPreviewListBox.h"

class CSampleView : public CView
{
public:
	CPrintPreviewListBox m_lstPPListBox;
...
};

The sampleView.cpp file demonstrates using the class as follows:

C++
int CSampleView::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
	if (CView::OnCreate(lpCreateStruct) == -1)
		return -1;

	// TODO: Add your specialized creation code here
	CSampleApp* pApp = (CSampleApp*) AfxGetApp();
	CRect rect;
	rect.SetRectEmpty();

	if( pApp->m_bSingleSelection )
	{
		if( m_lstPPListBox.Create( WS_CHILD | WS_BORDER | WS_VSCROLL, 
			rect, this, 100 ) == -1 )
			return -1;
	}
	else
	{
		if( m_lstPPListBox.Create( WS_CHILD | LBS_HASSTRINGS | LBS_MULTIPLESEL
			| LBS_EXTENDEDSEL | LBS_NOTIFY | LBS_NOINTEGRALHEIGHT 
			| LBS_USETABSTOPS | WS_VSCROLL,
			rect, this, 100 ) == -1 )
			return -1;
	}
	m_lstPPListBox.SetPrintTitle();
	m_lstPPListBox.ShowWindow (SW_SHOW);

	return 0;
}

void CSampleView::OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo)
{
	// TODO: Add extra initialization before printing
	m_lstPPListBox.OnBeginPrinting(pDC, pInfo);
}

void CSampleView::OnEndPrinting(CDC* pDC, CPrintInfo* pInfo)
{
	// TODO: Add cleanup after printing
	m_lstPPListBox.OnEndPrinting(pDC, pInfo);
}

void CSampleView::OnPrint(CDC* pDC, CPrintInfo* pInfo)
{
	// TODO: Add your specialized code here and/or call the base class
	m_lstPPListBox.OnPrint(pDC, pInfo);

//	CView::OnPrint(pDC, pInfo);
}

void CSampleView::OnOnlySelectedItems()
{
	// TODO: Add your command handler code here
	if( m_lstPPListBox.GetOnlySelectedItems() )
	{
		m_lstPPListBox.SetOnlySelectedItems( false );
		m_bOnlySelectedItems = FALSE;
	}
	else
	{
		m_lstPPListBox.SetOnlySelectedItems( true );
		m_bOnlySelectedItems = TRUE;
	}
}

You can see the entire code in the attached files in detail.

Credits

Parts of the code were based on Chris Maunder's Printing without the Document/View framework and Koay Kah Hoe's Print Previewing without the Document/View Framework.

History

  • 20th December, 2000: Initial version

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

Comments and Discussions

 
GeneralIt can also be used in dialog box app. Excellent! Pin
fredpu12-Oct-04 6:06
fredpu12-Oct-04 6:06 
You can easily do that as following. Cool!Big Grin | :-D You got me 5!
<br />
void CTestDlg::OnPrint() <br />
{<br />
	m_ListInfo.SetPrintTitle (m_strFileName);<br />
	m_ListInfo.Print ();<br />
}

The only thing you can't get is PrintPreview. That's alright.
GeneralVery good article Pin
Nemanja Trifunovic28-Dec-00 12:15
Nemanja Trifunovic28-Dec-00 12:15 
QuestionWhy Necessary? Pin
28-Dec-00 6:30
suss28-Dec-00 6:30 
AnswerRe: Why Necessary? Pin
Abin12-Jan-04 13:01
Abin12-Jan-04 13:01 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.