Main Page | Class Hierarchy | Class List | File List | Class Members | Related Pages

slide.h

00001 /***************************************************************************
00002  * glPresent                                                               *
00003  * An OpenGL presentation manager                                          *
00004  * Copyright (C) 2004 Joshua Wise <joshua@joshuawise.com>.                 *
00005  *                                                                         *
00006  * This is my code. Don't use it without letting people have at least my   *
00007  * source. Diffs against my source would be appreciated. Try not to remove *
00008  * my copyright notice from the startup message, or if you have to, I      *
00009  * guess move it to the usage message. I won't sue you for copyright       *
00010  * infringement if you stick to these guidelines. Thanks.                  *
00011  ***************************************************************************/
00012 #ifndef SLIDE_H
00013 #define SLIDE_H
00014 
00015 #include <renderable.h>
00016 #include "renderlist.h"
00017 #include "transitionmanager.h"
00018 
00024 class Slide : public Renderable
00025 {
00026 public:
00027     Slide();
00028 
00029     ~Slide();
00030     virtual void render();
00031     virtual void add(Renderable* r);
00032     virtual void add(Transition* t);
00033     virtual void enter(TransitionManager* t);
00034     virtual void leave(TransitionManager* t);
00035     virtual int event();
00036 
00037 protected:
00038     RenderList* rlist;
00039 };
00040 
00041 #endif

Generated on Mon Dec 13 17:29:32 2004 for glpresent.kdevelop by  doxygen 1.3.9.1