Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4836 in orxonox.OLD for orxonox/trunk/src/glmenu


Ignore:
Timestamp:
Jul 12, 2005, 12:33:16 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: renamed all the \param → @param and so on in Doxygen tags.
Thanks a lot to the kDevelop team. this took since the last commit :)

Location:
orxonox/trunk/src/glmenu
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/glmenu/glmenu_imagescreen.cc

    r4834 r4836  
    2828using namespace std;
    2929/**
    30    \param root The Element to load the GLMenu from
    31 */
     30 * @param root The Element to load the GLMenu from
     31 */
    3232GLMenuImageScreen::GLMenuImageScreen(const TiXmlElement* root)
    3333{
     
    4949
    5050/**
    51    \brief Loads a GLMenu from an inputElement
    52    \param root The Element to load the GLMenu from
     51 * Loads a GLMenu from an inputElement
     52 * @param root The Element to load the GLMenu from
    5353*/
    5454void GLMenuImageScreen::loadParams(const TiXmlElement* root)
     
    7171
    7272/**
    73    \brief standard deconstructor
    74    \todo this deconstructor is not jet implemented - do it
     73 * standard deconstructor
     74   @todo this deconstructor is not jet implemented - do it
    7575*/
    7676GLMenuImageScreen::~GLMenuImageScreen()
     
    8181
    8282/**
    83     \brief sets the background image name
    84     \param backImageName name of the backgroun-image
     83  * sets the background image name
     84  * @param backImageName name of the backgroun-image
    8585 */
    8686void GLMenuImageScreen::setBackgroundImage (const char* backImageName)
     
    9090
    9191/**
    92    \brief sets position of the ImageScreen
    93    \param offsetX offset from the top left corner in percent(0-1) of the screensize
    94    \param offsetY offset from the top left corner in percent(0-1) of the screensize
     92 * sets position of the ImageScreen
     93 * @param offsetX offset from the top left corner in percent(0-1) of the screensize
     94 * @param offsetY offset from the top left corner in percent(0-1) of the screensize
    9595*/
    9696void GLMenuImageScreen::setPosition(float offsetX, float offsetY)
     
    102102/**
    103103  \brief sets size of the ImageScreen
    104   \param scaleX the scaleing of the image into the x-direction (in percent (0-1))
    105   \param scaleY the scaleing of the image into the y-direction (in percent (0-1))
     104 * @param scaleX the scaleing of the image into the x-direction (in percent (0-1))
     105 * @param scaleY the scaleing of the image into the y-direction (in percent (0-1))
    106106*/
    107107void GLMenuImageScreen::setScale(float scaleX, float scaleY)
     
    113113/**
    114114  \brief sets position and size of the ImageScreen
    115   \param offsetX offset from the top left corner in percent(0-1) of the screensize
    116   \param offsetY offset from the top left corner in percent(0-1) of the screensize
    117   \param scaleX the scaleing of the image into the x-direction (in percent (0-1))
    118   \param scaleY the scaleing of the image into the y-direction (in percent (0-1))
     115* @param offsetX offset from the top left corner in percent(0-1) of the screensize
     116* @param offsetY offset from the top left corner in percent(0-1) of the screensize
     117* @param scaleX the scaleing of the image into the x-direction (in percent (0-1))
     118* @param scaleY the scaleing of the image into the y-direction (in percent (0-1))
    119119*/
    120120void GLMenuImageScreen::setPosScale(float offsetX, float offsetY, float scaleX, float scaleY)
     
    125125
    126126/**
    127    \param barImage An image for the Bar
     127 * @param barImage An image for the Bar
    128128*/
    129129void GLMenuImageScreen::setBarImage(const char* barImage)
     
    133133
    134134/**
    135    \brief sets the Position and the Size of the bar
    136    \param barX The Position in the x-direction in percent of the screen (0-1)
    137    \param barY The Position in the y-direction in percent of the screen (0-1)
    138    \param barW The Size in the x-direction in percent of the screen (0-1)
    139    \param barH The Size in the y-direction in percent of the screen (0-1)
     135 * sets the Position and the Size of the bar
     136 * @param barX The Position in the x-direction in percent of the screen (0-1)
     137 * @param barY The Position in the y-direction in percent of the screen (0-1)
     138 * @param barW The Size in the x-direction in percent of the screen (0-1)
     139 * @param barH The Size in the y-direction in percent of the screen (0-1)
    140140*/
    141141void GLMenuImageScreen::setBarPosScale(float barX, float barY, float barW, float barH)
     
    149149
    150150/**
    151    \brief set the maximum of countable steps
    152    \param maxValue of steps
     151 * set the maximum of countable steps
     152 * @param maxValue of steps
    153153*/
    154154void GLMenuImageScreen::setMaximum(int maxValue)
     
    158158
    159159/**
    160    \brief set current value
    161    \param currentValue value to set
     160 * set current value
     161 * @param currentValue value to set
    162162*/
    163163void GLMenuImageScreen::setValue(int currentValue)
     
    169169
    170170/**
    171    \brief get the current value
     171 * get the current value
    172172 */
    173173int GLMenuImageScreen::getValue()
     
    178178
    179179/**
    180     \brief call this to trigger a progress event
     180  * call this to trigger a progress event
    181181
    182182    this has to redraw the progress bar and the whole image
     
    196196
    197197/**
    198    \brief draws the ImageScreen to the screenbuffer
     198 * draws the ImageScreen to the screenbuffer
    199199*/
    200200void GLMenuImageScreen::draw ()
  • orxonox/trunk/src/glmenu/glmenu_imagescreen.h

    r4746 r4836  
    11/*!
    22    \file glmenu_imagescreen.h
    3     \brief class to display a LoadScreen
     3  * class to display a LoadScreen
    44*/
    55
     
    3131
    3232  void setMaximum (int maxValue);
    33   /** \returns the maximum of countable steps*/
     33  /** @returns the maximum of countable steps*/
    3434  inline int GLMenuImageScreen::getMaximum() const { return this->maxValue; };
    3535
Note: See TracChangeset for help on using the changeset viewer.