Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: gui: more addaptive structure

File size: 754 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#include "orxonox_gui_element.h"
11
12//! Class that creates the Audio-Options.
13class OrxonoxGuiAudio : public OrxonoxGuiElement
14{
15 private:
16  Frame* audioFrame;        //!< The Frame that holds the audio Options.
17  Box* audioBox;            //!< The Box that holds the audio Options.
18  CheckButton* enableSound; //!< A Ckeckbutton for enabling Sound.
19  Slider* musicVolume;      //!< A Slider for music volume.
20  Slider* effectsVolume;    //!< A Slider for effects volume.
21 public:
22  OrxonoxGuiAudio(void);
23  ~OrxonoxGuiAudio(void);
24};
25#endif /* _ORXONOX_GUI_AUDIO_H */
Note: See TracBrowser for help on using the repository browser.