Click here to Skip to main content
15,884,176 members
Articles / Desktop Programming / MFC
Article

An Advanced Preview within Doc/Vew architecture

Rate me:
Please Sign up or sign in to vote.
4.67/5 (3 votes)
12 Oct 2000 126.3K   2.6K   28   18
A simple class that helps provide faster Print Preview within MFC Doc/View applications
  • Download source files - 25 Kb
  • Download demo application - 14 Kb
  • Sample Image - AdvancedPrev.jpg

    It is often important to MFC programmers to speed up the Print Preview display within their Document/View application.

    I would like to present some of my improvements as to the Preview procedure of printing that I experienced during my recent developpment of a large system. I extended the MFC Preview procedure to create a flicker free system using the BitBlt function.

    You can see an outline of the ExtPreviewView class definition below. This class is derived from MFCs CPreviewView described in MFC Technical Note 30. The three protected members save virtual viewport data. Through the initialization of the MFC Preview procedure, the InitVxPrintOffset() function is exectued once and sets the values of the members mentioned above. Therefore you are able to create a Bitmap on memory DC which is compatible with the Preview DC in MFC for high-speed drawing, using the maximum size of the virtual paper.

    // override MFC class
    class ExtPreviewView : public CPreviewView
    {
    	...
    protected:
    	// Original viewport point of memory DC
    	CSize m_VxPrintOffset;
    	CSize m_sizeVxVpExt, m_sizeVxWinExt;
    public:
    	void InitVxPrintOffset(CDC* pDC);
    	...
    	friend class CAdvancedPreviewView;
    };

    Second I add some more zoom-in lebels to the MFC as following.

    #define ZOOM_IN_150     3
    #define ZOOM_IN_200     4
    #define ZOOM_IN_400     5

    I add some codes to such as SetScaleSize() function and others.

    Note

    You need to set a special path for "gafximpl.h" in your work space. The path must be set same as source path of MFC class library

    This is how you do this:

    • On the Project menu, click Settings.
    • In the Settings dialog box, select the C/C++ tab.
    • Select Preprocessor from the Category drop-down list.
    • The project-specific include paths are located in the Additional include directories edit box.

    Thank you.
    Yasuhiko Yoshimura
    September/05/2000

    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
    Japan Japan
    I have been programming for over 20 years and now run my own development company, Informax Inc., Osaka in Japan.
    Informax provides contract programming and engineering services. We can serve you with experiences in C++, DirectShow Filters, Shell Extension, MFC, ATL, WTL, STL, Boost, OTL, Windows2000 and XP, SymbianOS C++.
    Our speciality is the OOP and Design-Patterns solution throughout all entire project.

    Comments and Discussions

     
    GeneralTo activate Scroll Bar Pin
    vikas amin16-Sep-05 0:00
    vikas amin16-Sep-05 0:00 
    GeneralRe: To activate Scroll Bar Pin
    vikas amin30-Sep-05 3:11
    vikas amin30-Sep-05 3:11 
    GeneralVery Good But there was a probleme Pin
    Member 47543729-Aug-03 10:29
    Member 47543729-Aug-03 10:29 
    GeneralRe: Very Good But there was a probleme Pin
    Yasuhiko Yoshimura29-Aug-03 15:35
    Yasuhiko Yoshimura29-Aug-03 15:35 
    GeneralRe: Very Good But there was a probleme Pin
    Anonymous9-Nov-03 9:24
    Anonymous9-Nov-03 9:24 
    Question"Shared DLL" is good. But "Static Library" ? Pin
    29-Jul-01 22:25
    suss29-Jul-01 22:25 
    AnswerRe: Pin
    5-Aug-01 15:47
    suss5-Aug-01 15:47 
    GeneralNot too good sample of programming Pin
    Alexander Fedorov16-Oct-00 10:55
    Alexander Fedorov16-Oct-00 10:55 
    GeneralRe: Not too good sample of programming Pin
    3-Dec-01 5:50
    suss3-Dec-01 5:50 
    GeneralHe has one good point Pin
    Tim Smith3-Dec-01 6:23
    Tim Smith3-Dec-01 6:23 
    GeneralHe has one good point Pin
    Jörgen Sigvardsson26-Jun-05 10:52
    Jörgen Sigvardsson26-Jun-05 10:52 
    GeneralNot compile : "afximpl.h" not found Pin
    Karim Mribti14-Oct-00 3:39
    Karim Mribti14-Oct-00 3:39 
    GeneralRe: Not compile : Pin
    Anonymous14-Oct-00 3:45
    Anonymous14-Oct-00 3:45 
    GeneralRe: Not compile : Pin
    Anonymous14-Oct-00 3:45
    Anonymous14-Oct-00 3:45 
    GeneralRe: Not compile : Pin
    Anonymous14-Oct-00 3:46
    Anonymous14-Oct-00 3:46 
    GeneralDownloads dont work -- Yelp!!! Pin
    KayKay14-Oct-00 0:21
    KayKay14-Oct-00 0:21 
    GeneralRe: Downloads dont work -- Yelp!!! Pin
    Chris Maunder14-Oct-00 2:59
    cofounderChris Maunder14-Oct-00 2:59 
    GeneralBroken Links to downloads Pin
    Bill13-Oct-00 15:48
    Bill13-Oct-00 15:48 

    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.