Click here to Skip to main content
15,886,833 members
Articles / Programming Languages / C++

Address Book

Rate me:
Please Sign up or sign in to vote.
4.48/5 (21 votes)
6 Aug 2000CPOL3 min read 284.9K   5.5K   93  
Address Book application
// GfxColumnManager.h: interface for the CGfxColumnManager class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_GFXCOLUMNMANAGER_H__BA849A59_FED4_11D1_83D4_0000B43382FE__INCLUDED_)
#define AFX_GFXCOLUMNMANAGER_H__BA849A59_FED4_11D1_83D4_0000B43382FE__INCLUDED_

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

class CGfxListCtrl;

class CGfxColumnManager  
{
public:
	CGfxColumnManager();
	CGfxColumnManager(const CGfxColumnManager * p);
	virtual ~CGfxColumnManager();
	int DefineColumn(const int iId, const char * cText, const char * cTextDt = NULL, const int iAlign = LVCFMT_LEFT, const int iWidth = 80, DWORD dwData = 0, const int iImage = -1, const char * cDescr = NULL);

public:
	bool LinkRecordset(const int iId, CDaoRecordset * ps, const int iLnk, const int iTxtLnk);
	bool IsDefColumn(const int iId) const;
	int FindColumnById(const int iId) const;
	bool CustomizeColumn(CGfxListCtrl * pList, CWnd * pParent = NULL);
	bool SetupColumnData(CGfxListCtrl * pList, const bool bNeedOwnerDraw = false);
	bool RetrieveColumnData(CGfxListCtrl * pList);
	bool DefineDefaultColumns(const int iCount, const int * iCols);
	void ReadFromProfile(const char * cListName);
	void WriteToProfile(const char * cListName);
	class CGfxColumn
	{
	public:
		void Clear();
		void Init(const int _iId, const char * _cText, const char * _cTextDt, const int _iAlign, const int _iWidth, DWORD _dwData, const int _iImage, const char * _cDescr);
		CGfxColumn();
		virtual ~CGfxColumn();

		int iId, iAlign, iWidth, iImage;
		DWORD dwData;
		char * cText, * cTextDt, * cDescr;

		CDaoRecordset * pSet;
		int				iLinkField, iTextField;
	};

	int			 iColumnData;
	CGfxColumn * pColumnData;

	int			 iDefColumn;
	int	*		 pDefColumn;
};

#endif // !defined(AFX_GFXCOLUMNMANAGER_H__BA849A59_FED4_11D1_83D4_0000B43382FE__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
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions