Click here to Skip to main content
15,894,540 members
Articles / Desktop Programming / MFC

A Flat Splitter Window

Rate me:
Please Sign up or sign in to vote.
4.91/5 (53 votes)
30 Jan 2003 326.4K   13.6K   124  
A small class that gives splitter-windows a flat look
// FlatSplitter_Demo.h : main header file for the FLATSPLITTER_DEMO application
//

#if !defined(AFX_FLATSPLITTER_DEMO_H__AC99D6F6_3033_4D5A_A761_59F268167218__INCLUDED_)
#define AFX_FLATSPLITTER_DEMO_H__AC99D6F6_3033_4D5A_A761_59F268167218__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

/////////////////////////////////////////////////////////////////////////////
// CFlatSplitter_DemoApp:
// See FlatSplitter_Demo.cpp for the implementation of this class
//

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

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

// Implementation
	//{{AFX_MSG(CFlatSplitter_DemoApp)
	afx_msg void OnAppAbout();
		// 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_FLATSPLITTER_DEMO_H__AC99D6F6_3033_4D5A_A761_59F268167218__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.


Written By
Engineer Nokia
Denmark Denmark
My programming experience started a long time ago in
QBasic (on a 25MHz 486).
I'm now mainly using Java, C++, C, MFC, Perl and PHP, but have used quite a number of other languages as well for various projects.

Comments and Discussions