Changeset 2588 in orxonox.OLD for orxonox/trunk/gui/orxonox_gui_banner.cc
- Timestamp:
- Oct 17, 2004, 5:18:58 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/gui/orxonox_gui_banner.cc
r2581 r2588 27 27 #include <iostream.h> 28 28 29 /** 30 \brief Creates a new BannerEventBox and its content. 31 */ 29 32 OrxonoxGuiBanner::OrxonoxGuiBanner () 30 33 { … … 36 39 } 37 40 41 /** 42 \brief Destructs it. 43 */ 38 44 OrxonoxGuiBanner::~OrxonoxGuiBanner () 39 45 { 40 46 } 41 47 48 /** 49 \brief Opens up our LOGO-Window.\n 50 it creates a new one if it has not yet been opened.\n 51 it shows it if it has been created 52 */ 42 53 void OrxonoxGuiBanner::logoWindowNew() 43 54 { … … 65 76 } 66 77 } 78 79 /** 80 \brief Hides Window through ~Window(); 81 */ 67 82 void OrxonoxGuiBanner::logoWindowClose() 68 83 { … … 71 86 } 72 87 73 74 88 /** 89 \brief Returns an EventBox 90 \return The EventBox, that holds the Banner. 91 */ 75 92 EventBox* OrxonoxGuiBanner::getEventBox () 76 93 { … … 78 95 } 79 96 97 /** 98 \brief opens up the banner-window.\n 99 this is the Signal that does it. !!SIGNALS ARE STATIC!! 100 \param widget the widget that did it! 101 \param event the event that did it! 102 \param banner the Object that holds the banner-logo-window 103 */ 80 104 gint LogoWindowOpen (GtkWidget* widget, GdkEvent* event, void* banner) 81 105 { 82 //cout << data->is_option<<"\n";83 106 static_cast<OrxonoxGuiBanner*>(banner)->logoWindowNew(); 84 107 } 85 108 109 /** 110 \brief closes the banner-window.\n 111 this is the Signal that does it. !!SIGNALS ARE STATIC!! 112 \param widget the widget that did it! 113 \param event the event that did it! 114 \param banner the Object that holds the banner-logo-window 115 */ 86 116 gint LogoWindowClose (GtkWidget *widget, GdkEvent* event, void* banner) 87 117 {
Note: See TracChangeset
for help on using the changeset viewer.