Click here to Skip to main content
15,887,214 members
Articles / Multimedia / GDI
Article

eGUI, a anmiated UI develop kit

Rate me:
Please Sign up or sign in to vote.
1.31/5 (4 votes)
16 Dec 2007CPOL2 min read 237.3K   653   13   13
A easy-to-use widget libary to develop the animation GUI based on Windows GDI
Screenshot -

Introduction

eGUI is a windows GDI based UI developer kit, which implement a Widget based on UI framework and much usefully function of bitmap opeartion like transparent, rotate , moving, zooming, also it include a effeciently dirty area management machnism to help the devloper easily develop advanced application.

Background

The eGUI is from the idea of I want to develop a Chinese GO game, but I found it is hard to use the windows GDI to develop such application maybe involved much Bitmap operation, so I decide to develop a new GUI libary for this purpose.

Using the code

eGUI include below basic classes: CWidget: which is base class of each UI widget. CContainerWidget: which is the container will be used to hold and display all kinds of widget. CDisplayManager: which keep the windows draw context, and will be used to draw on the screen,and also implement the dirty area management. CFrameSurface: which is used to implement many kinds of draw opeation like, text drawing, bitmap drawing, transparent drawing,also it will be used as surface during the animating. CAnimateEngine: which implement a engine to trigger the surface drawing. CAnimateThread: each widget animation will be handled by a Thread. CAnimateController: each animation will mapped to a animate controller for the actually animation calculation.

1. define the root container and display manage.

<br>
	// will be used a a root container<br>
	CContainerWidget* m_pRootContainer;	<br>
        // will be used a CDisplayManager<br>
	CDisplayManage*  m_pDisplayManage;<br>

2. Define a listener used to listen the animate event.
<br>
        //event listener<br>
	ModelListener m_animateListener;<br>
        //event listener handler<br>
	static  void HandleAnimateListener(void *pUserData, ModelEvent *pEvent);<br>

3. Init the root container and displaymanger
int CwidgetExampleDlg::IniteGui(void)<br>
{<br>

	   //Start the animate Engine<br>

		StartAnimateEngine(30);<br>

		//Init the animate listener<br>
		m_animateListener.pfnListener = HandleAnimateListener;<br>
		m_animateListener.pListenerData=this;<br>
		m_animateListener.bEnableEventHandle=true;<br>


		CRect wrc;<br>
		GetWindowRect(&wrc);<br>
		//Create Display Manager<br>
		this->m_pDisplayManage=new CDisplayManage(this->m_hWnd,wrc.Width(),wrc.Height());<br>
		//Create RootContainer<br>
		this->m_pRootContainer=new CContainerWidget();<br>
		//Register Container<br>
		m_pDisplayManage->RegisterRootContainer(m_pRootContainer);<br>
		//set displaymanger<br>
		m_pRootContainer->SetDisplayManage(this->m_pDisplayManage);<br>


		//Set the position of widget<br>
		WRect rootRc;<br>
		CRECT_TO_WRECT(wrc,rootRc);<br>
		rootRc.x=0;<br>
		rootRc.y=0;<br>
		m_pRootContainer->SetRect(&rootRc,false);<br>

		CBackGroundWidget* pBkW=new CBackGroundWidget();<br>

		//insert wiget to RootContainer,<br>
		WRect rc;<br>
		m_pRootContainer->GetRect(&rc);<br>
		rc.x=0;<br>
		rc.y=0;<br>
		m_pRootContainer->InsertWidget(pBkW,Z_ORDER_BACKGROUND);<br>
		pBkW->SetRect(&rc);<br>
	
		pBkW->SetBackgroundColor(0x0);<br>

	

		//Draw RootContainer<br>
		m_pRootContainer->InvalidateContent(0);<br>
	return 0;<br>
}<br>
4. Hook the windows mouse, key, paint event to egui
BOOL CwidgetExampleDlg::PreTranslateMessage(MSG* pMsg)<br>
{<br>

		if(pMsg->message == WM_KEYDOWN )<br>
		{
			//(wParam), LOWORD(lParam), HIWORD(lParam)<br>
			WKEY_EVENT_T key_evt;<br>
			key_evt.key_code=pMsg->wParam;;<br>
			key_evt.rpt_cnt=LOWORD(pMsg->lParam);<br>
			key_evt.flag=HIWORD(pMsg->wParam);	<br>		
			m_pRootContainer->HandleEvent(KEY_EVENT_DOWN,(int)(&key_evt),0);		<br>
		}<br>

		if( pMsg->message ==WM_KEYUP)<br>
		{<br>
			WKEY_EVENT_T key_evt;<br>
			key_evt.key_code=pMsg->wParam;;<br>
			key_evt.rpt_cnt=LOWORD(pMsg->lParam);<br>
			key_evt.flag=HIWORD(pMsg->wParam);<br>
			m_pRootContainer->HandleEvent(KEY_EVENT_UP,(int)(&key_evt),0);		<br>
		}<br>

		if(pMsg->message==WM_LBUTTONUP)<br>
		{<br>
			WPoint ptScreen;<br>
			CPoint pt;<br>
			pt.x=pMsg->pt.x;<br>
			pt.y=pMsg->pt.y;<br>
			this->ScreenToClient(&pt);<br>
			ptScreen.x=pt.x;<br>
			ptScreen.y=pt.y;<br>
			m_pRootContainer->HandleEvent(MOUSE_LBUTTON_UP,(int)(&ptScreen),pMsg->lParam);			<br>
		}<br>

		
	...<br>
	return CDialog::PreTranslateMessage(pMsg);<br>
}<br>
5. hook the paint event
void CwidgetExampleDlg::OnPaint() <br>
{<br>

	m_pRootContainer->InvalidateContent(0);<br>

}<br>

History

Initial version by XIAOWANG YANG

Reference

1. Daniel godson for his CEnBitmap implementation. 2.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Motorola
China China
I like C/C++.
The photo is my lovely son,not meSmile | :)

Comments and Discussions

 
Question开源网站上发这种东西说明什么呢 Pin
xunonxyz25-Jul-12 4:10
xunonxyz25-Jul-12 4:10 
AnswerRe: 开源网站上发这种东西说明什么呢 Pin
szcathay14-Aug-12 5:12
szcathay14-Aug-12 5:12 
GeneralRe: 开源网站上发这种东西说明什么呢 Pin
sht7019-Dec-13 18:44
sht7019-Dec-13 18:44 
GeneralRe: 开源网站上发这种东西说明什么呢 Pin
szcathay16-Jan-17 22:44
szcathay16-Jan-17 22:44 
GeneralRe: 开源网站上发这种东西说明什么呢 Pin
szcathay16-Jan-17 22:48
szcathay16-Jan-17 22:48 
AnswerRe: 开源网站上发这种东西说明什么呢 Pin
zf21877-Sep-12 4:10
zf21877-Sep-12 4:10 
General丑陋的中国人 Pin
xindeng21-Dec-08 20:33
xindeng21-Dec-08 20:33 
GeneralRe: 丑陋的中国人 Pin
hpking15-May-11 2:42
hpking15-May-11 2:42 
GeneralRe: 丑陋的中国人 Pin
xunonxyz25-Jul-12 4:11
xunonxyz25-Jul-12 4:11 
GeneralGreat, but not for VC6 and some memory leaks, asserts... Pin
Thierry Maurel3-Jan-08 22:30
Thierry Maurel3-Jan-08 22:30 
Generalno lib source - VS2002 Pin
Taulie16-Dec-07 21:08
Taulie16-Dec-07 21:08 
Generali'm sorry Pin
wlwlxj16-Dec-07 16:09
wlwlxj16-Dec-07 16:09 
GeneralOnly header files and lib Pin
Satervalley16-Dec-07 14:05
Satervalley16-Dec-07 14:05 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.