Click here to Skip to main content
15,897,891 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
#include "StdAfx.h"
#include "NewFileLoader.h"
#include "Consts.h"

NewFileLoader::NewFileLoader(HWND hParentWindow)
{
    m_bExit = false;
    m_hParentWindow = hParentWindow;
    AfxBeginThread( ObserveThread, this );

}

NewFileLoader::~NewFileLoader(void)
{
    m_bExit = true;
    HANDLE hNextFileOpen = ::OpenEvent( EVENT_ALL_ACCESS, true, L"PicZoomNewFile" );
    ::SetEvent( hNextFileOpen );
}

UINT NewFileLoader::ObserveThread(LPVOID pParam)
{
    NewFileLoader* pInstance = (NewFileLoader*) pParam;
    HANDLE hNextFileOpen = ::OpenEvent( EVENT_ALL_ACCESS, true, L"PicZoomNewFile" );

    while( 1 )
    {
        WaitForSingleObject( hNextFileOpen, INFINITE );

        // Ensure event set from other process.
        if( pInstance->m_bExit )
        {
            return 1;
        }

        HANDLE hSharedFile = ::OpenFileMapping(PAGE_READONLY, true, L"PicZoomNewFileName" );
        if( NULL == hSharedFile)
        {
            AfxMessageBox( L"File open failed" );
        }
        // Read data from shared memory.
        LPTSTR ptFileName = (LPTSTR)::MapViewOfFile( hSharedFile, FILE_MAP_ALL_ACCESS, 0, 0, 1024 );
        
        // File name allocated in new buffer, and this buffer will be de allocated by message handler.
        TCHAR* pNewBuffer = new TCHAR[wcslen( ptFileName ) + 1];
        memset( pNewBuffer, 0, (wcslen( ptFileName ) + 1) * 2 );
        wcscpy( pNewBuffer, ptFileName );
        // Validate FileName with required extension.
        CString csCurrentFile = CString( pNewBuffer );
        csCurrentFile = csCurrentFile.Right( csCurrentFile.GetLength() - 1 );
        csCurrentFile = csCurrentFile.Left( csCurrentFile.GetLength() - 1 );
        CString csExtension = csCurrentFile.Right( 4 );
        int nRet = csExtension.CompareNoCase( L".JPG" );;
        if(( 0 == csExtension.CompareNoCase( L".bmp" ) ||
            0 == csExtension.CompareNoCase( L".JPG" ) ||
            0 == csExtension.CompareNoCase( L".png" ) ||
            0 == csExtension.CompareNoCase( L".gif" ) ||
            0 == csExtension.CompareNoCase(L".tga" ) ))
        {
            PostMessage( pInstance->m_hParentWindow, WM_NEW_FILE_LOAD, 0, (LPARAM)pNewBuffer );
        }
    }
    return 1;
}

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