Click here to Skip to main content
15,893,814 members
Articles / Programming Languages / C++

A better Zoomin utility

Rate me:
Please Sign up or sign in to vote.
4.93/5 (32 votes)
17 Jun 20054 min read 81.5K   1.2K   56  
A better Zoomin utility.
// ColorSwatch.cpp : implementation file
//

#include "stdafx.h"
#include "ColorSwatch.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CColorSwatch

CColorSwatch::CColorSwatch()
{
}

CColorSwatch::~CColorSwatch()
{
}


BEGIN_MESSAGE_MAP(CColorSwatch, CStatic)
        //{{AFX_MSG_MAP(CColorSwatch)
        ON_WM_PAINT()
        ON_WM_ERASEBKGND()
        //}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CColorSwatch message handlers

void CColorSwatch::OnPaint() 
   {
    CPaintDC dc(this); // device context for painting

    CRect r;
    GetClientRect(&r);
    dc.FillSolidRect(&r, color);

    // Do not call CStatic::OnPaint() for painting messages
}

BOOL CColorSwatch::OnEraseBkgnd(CDC* pDC) 
   {
    // Do nothing
    return TRUE;
   }

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 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
Retired
United States United States
PhD, Computer Science, Carnegie Mellon University, 1975
Certificate in Forensic Science and the Law, Duquesne University, 2008

Co-Author, [i]Win32 Programming[/i]

Comments and Discussions