Click here to Skip to main content
15,885,693 members
Articles / Desktop Programming / MFC
Article

LitePrint

Rate me:
Please Sign up or sign in to vote.
4.53/5 (5 votes)
23 Jul 2007CPOL1 min read 68.8K   2.8K   49   19
Printing without the doc/view architecture

Image 1

Introduction

This set of classes enables printing without using doc/view architecture. This allows you to print directly from your dialog or from any part of your MFC-based application. The code was based on A. Fraydl's "Creating a Printing Class" and George Papaioannou's "Quick Print." Improvements include:

  • UNICODE support
  • Unlimited number of fonts and table columns
  • Each table column can now use different alignment
  • Columns can be sized to fit between page margins
  • Better bitmap printing
  • Loading bitmaps from external file
  • Setting/restoring font for document's header and footer

Using the code

The only thing that you have to do is declare the CLitePrint object and start using it. This generic code shows typical usage:

C++
Void CLitePrintDemoDlg::OnPrintButton ()
{
    CLitePrint prt;
    HLTFONT hFont;

    // Step 1 : call the CPrintDialog
    if (prt.Dialog() == -1)
    return;

    //Step 2 : Start the Print
    prt.StartPrint();      

    //Step 3 : Create a printing font
    hFont = prt.AddFontToEnvironment(_T("Arial"),8,8);     

    //Step 4 : Start Page
    prt.StartPage(); 

    //Step 5 : The actual printing goes here
    prt.PrintText(hFont,_T("Example Text"),FORMAT_NORMAL);   

    //Step 6 :  now end the page
    prt.EndPage();

    //Step 7 :  close the print document
    //          and release it in the spooler
    prt.EndPrint();  
}

An external, user-defined header/footer function is called each time the printing reaches the beginning or the end of a page. An example that prints a logo image, lines and page numbers is given bellow:

C++
void FHeadFoot(CLitePrint* lp,int sides, bool hf)
{
    HLTFONT af = lp->SetHFFont();
    COLORREF tc = lp->GetTextColor();
    lp->SetTextColor(RGB(0,0,0));
    if (hf) //if header
    {
        lp->LF();
        CSize sz;
        sz.cx = 100;
        sz.cy = 50;
        lp->PrintBitmap(IDB_BITMAP2, FORMAT_LEFT, &sz);
        lp->Line(PS_SOLID);
        lp->PrintText(lp->GetActiveFont(),
            _T("Report Document"),FORMAT_CENTER);
        CString nmb;
        nmb.Format(_T("Page %d"),sides);
        lp->PrintText(lp->GetActiveFont(),nmb,FORMAT_RIGHT);
        lp->Line(PS_SOLID,5,RGB(230,200,20));
        lp->LF();
    }
    else //if footer
    {
        CString>nmb;
        nmb.Format(_T("Page %d"),sides);
        lp->PrintText(lp->GetActiveFont(),nmb,FORMAT_CENTER);
        lp->LF(lp->GetActiveFont());
        lp->LF(lp->GetActiveFont());
    }
    lp->SetActiveFont(af);
    lp->SetTextColor(tc);
}

To use tables, one has to define the column widths and alignment. Some helper code has been developed for this purpose. Just fill in the vector with the column's data and pass it to the SetTableColumns() function. Optional parameters will force the columns to occupy complete space between the margins:

C++
vColData vd;
vd.push_back(Col(300,FORMAT_CENTER));
vd.push_back(Col(100,FORMAT_LEFT));
vd.push_back(Col(300,FORMAT_CENTER));
...
prt.SetTableColumns(vd);
//prt.SetTableColumns(vd,TRUE); //fit width

Points of interest

More details about all of the functions can be found in the demo project. Note that print preview is not developed yet. Please, if you see any problems with these classes, feel free to send questions. Good luck!

History

  • 23 July, 2007 -- Original version posted

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Yugoslavia Yugoslavia
Likes C++, templates, patterns, sarmas and loves Luka and Jelena

Comments and Discussions

 
QuestionBug in multistring formatting. Fixed. Pin
Member 86251595-Apr-12 5:25
Member 86251595-Apr-12 5:25 
BugA memory Leak that solved. Pin
PE32_6420-Jun-11 12:02
PE32_6420-Jun-11 12:02 
GeneralWrap Pin
Pudjo7-Apr-11 21:01
Pudjo7-Apr-11 21:01 
QuestionAny help on compiling with vc6? Pin
PatrickM25-Feb-10 6:09
PatrickM25-Feb-10 6:09 
QuestionWhat program on a screenshot you used for the virtual printer? Pin
Alexander Shevchenko1-Sep-07 8:57
Alexander Shevchenko1-Sep-07 8:57 
QuestionCan I use your code freely? Pin
_flix01_24-Aug-07 7:31
_flix01_24-Aug-07 7:31 
AnswerRe: Can I use your code freely? Pin
_flix01_26-Aug-07 2:25
_flix01_26-Aug-07 2:25 
AnswerRe: Can I use your code freely? Pin
Ivan Markovic26-Aug-07 20:49
Ivan Markovic26-Aug-07 20:49 
GeneralRe: Can I use your code freely? Pin
_flix01_28-Aug-07 7:08
_flix01_28-Aug-07 7:08 
GeneralRe: Can I use your code freely? Pin
Ivan Markovic28-Aug-07 21:17
Ivan Markovic28-Aug-07 21:17 
GeneralNice work! Thanks. Pin
Bui Tan Duoc17-Aug-07 20:01
professionalBui Tan Duoc17-Aug-07 20:01 
GeneralProblems Compiling in VS6.0 Pin
Mike Copeland1-Aug-07 5:27
Mike Copeland1-Aug-07 5:27 
Generalnice work:) Pin
_SUNRISE_1-Aug-07 3:23
_SUNRISE_1-Aug-07 3:23 
Questionusage for Visual Studio 8.0 Pin
SiHot30-Jul-07 19:46
SiHot30-Jul-07 19:46 
AnswerRe: usage for Visual Studio 8.0 Pin
Ivan Markovic30-Jul-07 21:05
Ivan Markovic30-Jul-07 21:05 
GeneralNice work Pin
ETA24-Jul-07 20:46
ETA24-Jul-07 20:46 
Generalgreat! Pin
hamo200823-Jul-07 21:03
hamo200823-Jul-07 21:03 
GeneralLooks nice! Pin
Hans Dietrich23-Jul-07 8:39
mentorHans Dietrich23-Jul-07 8:39 
GeneralRe: Looks nice! Pin
Ivan Markovic23-Jul-07 20:56
Ivan Markovic23-Jul-07 20:56 

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.