Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/gui/orxonox_gui_banner.h @ 3153

Last change on this file since 3153 was 3153, checked in by bensch, 19 years ago

orxonox/trunk/gui: more modular.

File size: 724 bytes
RevLine 
[2588]1/*!
2  \file orxonox_gui_banner.h
3  \brief  File that holds the class that creates the Banner-Image.\n
4  This is Commercial :-)
5*/
6
[2580]7#ifndef _ORXONOX_GUI_BANNER_H
8#define _ORXONOX_GUI_BANNER_H
9
10#include "orxonox_gui.h"
11
[2588]12//! Class that creates the Banner-Image
[2580]13class OrxonoxGuiBanner
14{
15 private:
[2595]16  // the banner Frame
[2580]17  Frame* bannerFrame;
18  Box* bannerBox;
[2588]19  EventBox* bannerEventBox; //!< an Image needs an EventBox to catch klicks
[2580]20  Image* bannerImage;
21  Label* bannerLabel;
[2595]22
23  // the logo Window
[2581]24  Window* logoWindow;
25  EventBox* logoEventBox;
[2595]26  Box* logoBox;
[2581]27  Image* logoImage;
[2595]28  Label* logoLabel;
[2580]29
30 public:
31  OrxonoxGuiBanner ();
32  ~OrxonoxGuiBanner ();
33
[2595]34  Widget* getWidget ();
[3148]35
[2580]36};
[2588]37
[2580]38
39#endif /* _ORXONOX_GUI_BANNER_H */
Note: See TracBrowser for help on using the repository browser.