Click here to Skip to main content
15,881,746 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:      	common.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 "InsertPoint.h"
#include "resources/Resources.h"

struct InsDelPoints
{
	CSmartAtlArray<InsertionPoint*> InsertPoints;
	CSmartAtlArray<VSElement*> DeletePoint;
};

typedef CSmartAtlArray<VSClass*> ClassVector;

extern VSFunction* g_pSelectedFunction;
void UpdateClasses(CSmartAtlArray<InsDelPoints>* pModifications, ClassVector* pClassVector);
EnvDTE::ProjectItemPtr FindItem(EnvDTE::ProjectPtr pProject, _bstr_t ItemName, EnvDTE::ProjectItemPtr pPrevElem);
EnvDTE::CodeElementPtr FindDefine(VSClass* pClass, LPCWSTR Name, bool bStdAfx = false);
EnvDTE::CodeElementPtr FindInclude(VSClass* pClass, LPCWSTR Name, bool bStdAfx = false);

int CutString(CString InStr, CAtlArray<CString>& OutStrings, LPCTSTR Separators = _T(" \t,"));
void SortStringArray(CAtlArray<CString>& Arr, bool bAcsesnding = true);
void SortClasses(CAtlArray<VSClass*>& Arr, bool bAcsesnding = true);
void SortResources(CAtlArray<ResControl>& Arr);

CString CreateIDName(CString TrancatedID);
HRESULT GetDispatchProperty(IDispatch* pDisp, LPOLESTR lpName, VARIANT* pRes);
int CompareVersions(LPCTSTR lpVersion1, LPCTSTR lpVersion2);

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