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

A fast and lightweight cell control

Rate me:
Please Sign up or sign in to vote.
4.42/5 (31 votes)
11 Mar 2008CPOL1 min read 90.8K   4.5K   81  
A fast and lightweight cell control for displaying tabular data. The cell is a custom control derived from ATL::CWindow.
#pragma once
namespace mycell{
	class BorderPair
	{
		enum {
			HAS_RIGHT=1<<0,
			HAS_BOTTOM	=1<<1,
		};
		Border right,bottom;
		BYTE mask;
	public:
		bool operator==(BorderPair rhs)const
		{
			return right==rhs.right
				&&bottom==rhs.bottom
				&&mask==rhs.mask;
		}
		void clear()
		{
			mask=0;
		}
		bool empty()const
		{
			return !HasRight() && !HasBottom();
		}
		void clear_right()
		{
			mask&=~HAS_RIGHT;
		}
		void clear_bottom()
		{
			mask&=~HAS_BOTTOM;
		}
		void put_Right(Border b)
		{
			right=b;
			mask|=HAS_RIGHT;
		}
		BOOL get_Right(Border& leftBorder)const
		{
			if(HasRight()){
				leftBorder=right;
				return TRUE;
			}else
				return FALSE;
		}
		BOOL HasRight()const
		{
			return (mask&HAS_RIGHT)?TRUE:FALSE;
		}
		
		void put_Bottom(Border b)
		{
			bottom=b;
			mask|=HAS_BOTTOM;
		}
		BOOL get_Bottom(Border& topBorder)const
		{
			if(HasBottom()){
				topBorder=bottom;
				return TRUE;
			}else
				return FALSE;
		}
		BOOL HasBottom()const
		{
			return (mask&HAS_BOTTOM)?TRUE:FALSE;
		}
	};
}//namespace mycell

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
China China
My name is Yanxueming,i live in Chengdu China.Graduated from UESTC in 1999.

Comments and Discussions