Click here to Skip to main content
15,896,727 members
Articles / Desktop Programming / MFC

CGlassDialog

Rate me:
Please Sign up or sign in to vote.
3.98/5 (24 votes)
11 Aug 2006CPOL2 min read 103.7K   1.6K   49  
This is a simple class that makes transparent dialog boxes rise more smoothly.
// GlassTest.h : main header file for the GLASSTEST application
//

#if !defined(AFX_GLASSTEST_H__9CE6CCF4_FE4B_4755_9E71_3B7E8E36909E__INCLUDED_)
#define AFX_GLASSTEST_H__9CE6CCF4_FE4B_4755_9E71_3B7E8E36909E__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#ifndef __AFXWIN_H__
	#error include 'stdafx.h' before including this file for PCH
#endif

#include "resource.h"		// main symbols

/////////////////////////////////////////////////////////////////////////////
// CGlassTestApp:
// See GlassTest.cpp for the implementation of this class
//

class CGlassTestApp : public CWinApp
{
public:
	CGlassTestApp();

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CGlassTestApp)
	public:
	virtual BOOL InitInstance();
	//}}AFX_VIRTUAL

// Implementation

	//{{AFX_MSG(CGlassTestApp)
		// NOTE - the ClassWizard will add and remove member functions here.
		//    DO NOT EDIT what you see in these blocks of generated code !
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};


/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_GLASSTEST_H__9CE6CCF4_FE4B_4755_9E71_3B7E8E36909E__INCLUDED_)

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
Software Developer
Korea (Republic of) Korea (Republic of)
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions