Click here to Skip to main content
15,881,852 members
Articles / Desktop Programming / WTL

WTL Helper

Rate me:
Please Sign up or sign in to vote.
4.92/5 (116 votes)
27 Aug 200713 min read 695.4K   8.8K   190  
Add-in for Microsoft VC++.NET 2003 that helps to insert message handlers for WTL.
////////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2004 Sergey Solozhentsev
// Author: 	Sergey Solozhentsev e-mail: salos@mail.ru
// Product:	WTL Helper
// File:      	Resources.h
// Created:	16.11.2004 8:55
// 
//   Using this software in commercial applications requires an author
// permission. The permission will be granted to everyone excluding the cases
// when someone simply tries to resell the code.
//   This file may be redistributed by any means PROVIDING it is not sold for
// profit without the authors written consent, and providing that this notice
// and the authors name is included.
//   This file is provided "as is" with no expressed or implied warranty. The
// author accepts no liability if it causes any damage to you or your computer
// whatsoever.
//
////////////////////////////////////////////////////////////////////////////////

#pragma once
#include "../TextFile.h"
#include "ResDialog.h"
#include "ResMenu.h"
#include "ResToolbar.h"
#include "ResAccelerators.h"


struct ResString
{
	CString m_ID;
	CString m_String;

};

struct ResBinary
{
	CString m_ID;
	CString m_FileName;
};

class CResources
{
	bool LoadString(CTextFile& file);
public:
	CAtlArray<CResDialog> m_Dialogs;
	CAtlArray<CResMenu> m_Menus;
	CAtlArray<CResToolbar> m_Toolbars;
	CAtlArray<CResAccelerators> m_Accels;
	CAtlArray<ResString> m_Strings;
	CAtlArray<ResBinary> m_Icons;
	CAtlArray<ResBinary> m_Bitmaps;
	CAtlArray<ResBinary> m_Cursors;

	CResources(void);
	~CResources(void);

	bool Load(LPCTSTR filename, bool bAppend = false);
};

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
Web Developer
Belarus Belarus
I am a software developer for 3 years.

Comments and Discussions