Click here to Skip to main content
15,897,371 members
Articles / Desktop Programming / MFC

PicZoom: A Photo Viewer Created in OpenGL

Rate me:
Please Sign up or sign in to vote.
4.86/5 (64 votes)
16 Feb 2011CPOL16 min read 161.3K   11.6K   151  
PicZoom: A Photo Viewer created in OpenGL
#pragma once

/*
This class Handles loading of new image.
When user clicks context menu, then new (jpg,or bmp )file should be loaded in 
old process. When an instance of PicZoom is running, the new instance will set an
event and write the name of file in a shared memory, and that memory will be used
to get the name of new file name.
*/
class NewFileLoader
{
public:
    NewFileLoader( HWND hparent );
    ~NewFileLoader(void);

    static UINT ObserveThread(LPVOID pParam);

private:

    bool m_bExit;
    HWND m_hParentWindow;
};

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

Comments and Discussions