Click here to Skip to main content
15,892,674 members
Articles / Desktop Programming / ATL

CM_ConfigBuilder 1.2g: Visual Studio 6/Visual Studio 2005/Visual Studio 2008 Code Generator for Application Settings Graphic Management

Rate me:
Please Sign up or sign in to vote.
4.94/5 (126 votes)
12 Feb 2008CPOL17 min read 697.7K   9.8K   262  
CM_ConfigBuilder generates and compiles the required files to manage your application's settings/preferences and to store/retrieve them in XML format.
// AsBaseCell.h: interface for the CAsBaseCell class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(_ASBASECELL_H_)
#define _ASBASECELL_H_

#include <string>
#include "AsFontInfo.h"
#include "ICellListener.h"

using namespace std;

class CAsBaseCell  
{
public:
	CAsBaseCell();
	virtual ~CAsBaseCell();

	virtual void SetDrawArea(const CRect& drawArea);
	CRect GetDrawArea() const;

	virtual CSize GetMinSize();

	virtual void Draw(CDC* pDC);
	virtual void DrawText(CDC* pDC);

	virtual bool HitTest(const CPoint& pt);

	//void OnMouseMove(const CPoint& pt);

	virtual void SetVisible(bool visible);
	bool IsVisible() const;

	bool IsHidden();

	virtual void SetText(const string& text, bool redraw = true);
	virtual string GetText();

	void SetParentWindow(CWnd* parentWnd);

	virtual bool ProcessMessage(DWORD msg, DWORD lParam, DWORD wParam, const CPoint& pt, const CRect& parentRect, bool& needRedraw);

	virtual void SetFontInfo(const string& fontName, int fontSize = 10, bool fontBold = false);
	virtual void SetFontInfo(const CAsFontInfo& fontInfo);

	virtual void KillFocus(bool storeData = true, bool redraw = true);
	virtual void SetFocus(bool redraw);
	virtual bool HasFocus();

	virtual void SetSelection(bool redraw = true);
	virtual void KillSelection(bool redraw = true);
	virtual bool IsSelected();

	void SetBackColor(COLORREF backColor);
	COLORREF GetBackColor() const;

	void SetForeColor(COLORREF foreColor);
	COLORREF GetForeColor() const;

	void SetCellListener(ICellListener* listener);

	void SetName(const string& name);
	string GetName() const;

protected:

	string text_;

	CRect drawArea_;
	bool visible_;

	CWnd* parentWnd_;

	CAsFontInfo fontInfo_;

	COLORREF backColor_;
	COLORREF foreColor_;
	bool hasFocus_;
	bool isSelected_;
	string name_;

	ICellListener* cellListener_;
};

#endif // !defined(_ASBASECELL_H_)

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
Web Developer
Italy Italy
For all Stefano's latest code, binaries and tutorials visit www.codemachines.com

Comments and Discussions