Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/gui/orxonox_gui_audio.h @ 3423

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

orxonox/trunk: merged branches/updater back into the trunk
merged with command: svn merge branches/updater trunk -r 3241:HEAD
resolved conflicts in debug.h in favor of the trunk.

File size: 724 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(void);
22  ~OrxonoxGuiAudio(void);
23 
24  Widget* getWidget(void);
25};
26#endif /* _ORXONOX_GUI_AUDIO_H */
Note: See TracBrowser for help on using the repository browser.