Line | |
---|
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 | |
---|
7 | #ifndef _ORXONOX_GUI_BANNER_H |
---|
8 | #define _ORXONOX_GUI_BANNER_H |
---|
9 | |
---|
10 | #include "orxonox_gui.h" |
---|
11 | |
---|
12 | //! Class that creates the Banner-Image |
---|
13 | class OrxonoxGuiBanner |
---|
14 | { |
---|
15 | private: |
---|
16 | // the banner Frame |
---|
17 | Frame* bannerFrame; |
---|
18 | Box* bannerBox; |
---|
19 | EventBox* bannerEventBox; //!< an Image needs an EventBox to catch klicks |
---|
20 | Image* bannerImage; |
---|
21 | Label* bannerLabel; |
---|
22 | |
---|
23 | // the logo Window |
---|
24 | Window* logoWindow; |
---|
25 | EventBox* logoEventBox; |
---|
26 | Box* logoBox; |
---|
27 | Image* logoImage; |
---|
28 | Label* logoLabel; |
---|
29 | |
---|
30 | public: |
---|
31 | OrxonoxGuiBanner (); |
---|
32 | ~OrxonoxGuiBanner (); |
---|
33 | |
---|
34 | Widget* getWidget (); |
---|
35 | |
---|
36 | }; |
---|
37 | |
---|
38 | |
---|
39 | #endif /* _ORXONOX_GUI_BANNER_H */ |
---|
Note: See
TracBrowser
for help on using the repository browser.