Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/gui/orxonox_gui_audio.h @ 3187

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

orxonox/trunk/gui: doxygen-tags… it's very much.

File size: 715 bytes
Line 
1/*!
2  \file orxonox_gui_audio.h
3  \brief File that holds the class that creates the Audio-Options.
4*/
5
6#ifndef _ORXONOX_GUI_AUDIO_H
7#define _ORXONOX_GUI_AUDIO_H
8
9#include "orxonox_gui.h"
10
11//! Class that creates the Audio-Options.
12class OrxonoxGuiAudio
13{
14 private:
15  Frame* audioFrame;        //!< The Frame that holds the audio Options.
16  Box* audioBox;            //!< The Box that holds the audio Options.
17  CheckButton* enableSound; //!< A Ckeckbutton for enabling Sound.
18  Slider* musicVolume;      //!< A Slider for music volume.
19  Slider* effectsVolume;    //!< A Slider for effects volume.
20 public:
21  OrxonoxGuiAudio ();
22  ~OrxonoxGuiAudio ();
23 
24  Widget* getWidget ();
25};
26#endif /* _ORXONOX_GUI_AUDIO_H */
Note: See TracBrowser for help on using the repository browser.