Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 2588 in orxonox.OLD for orxonox/trunk/gui/orxonox_gui_banner.cc


Ignore:
Timestamp:
Oct 17, 2004, 5:18:58 PM (21 years ago)
Author:
bensch
Message:

orxonox/trunk/gui: doxygen orxodox created for all h-files, classes and functions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/gui/orxonox_gui_banner.cc

    r2581 r2588  
    2727#include <iostream.h>
    2828
     29/**
     30   \brief Creates a new BannerEventBox and its content.
     31*/
    2932OrxonoxGuiBanner::OrxonoxGuiBanner ()
    3033{
     
    3639}
    3740
     41/**
     42   \brief Destructs it.
     43*/
    3844OrxonoxGuiBanner::~OrxonoxGuiBanner ()
    3945{
    4046}
    4147
     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*/
    4253void OrxonoxGuiBanner::logoWindowNew()
    4354{
     
    6576    }
    6677}
     78
     79/**
     80   \brief Hides Window through ~Window();
     81*/
    6782void OrxonoxGuiBanner::logoWindowClose()
    6883{
     
    7186}
    7287
    73 
    74 
     88/**
     89   \brief Returns an EventBox
     90   \return The EventBox, that holds the Banner.
     91*/
    7592EventBox* OrxonoxGuiBanner::getEventBox ()
    7693{
     
    7895}
    7996
     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*/
    80104gint LogoWindowOpen (GtkWidget* widget, GdkEvent* event, void* banner)
    81105{
    82   //cout << data->is_option<<"\n";
    83106  static_cast<OrxonoxGuiBanner*>(banner)->logoWindowNew();
    84107}
    85108
     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*/
    86116gint LogoWindowClose (GtkWidget *widget, GdkEvent* event, void* banner)
    87117{
Note: See TracChangeset for help on using the changeset viewer.