Most important events

From CEGUI Wiki - Crazy Eddie's GUI System (Open Source)
Revision as of 10:52, 5 May 2007 by Levia (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

This article is going to show you the most important and usefull events of each widget.

Getting started

EventGalore.h

#ifndef _EventGalore_h_
#define _EventGalore_h_


#include "CEGuiSample.h"
#include "CEGUI.h"


class EventGalore : public CEGuiSample
{
public:
   bool initialiseSample()
   {

using namespace CEGUI;

       return true;
   }
   void cleanupSample(void)
   {
   }
};
#endif // _WidgetGalore_h_