Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/guiMerge/src/lib/gui/gui/orxonox_gui_audio.h @ 4046

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

orxonox/branches/guiMerge: heavy clean-up of the gui

File size: 729 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_element.h"
10
11//! Class that creates the Audio-Options.
12class OrxonoxGuiAudio : public OrxonoxGuiElement
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#endif /* _ORXONOX_GUI_AUDIO_H */
Note: See TracBrowser for help on using the repository browser.