Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 2595 was 2595, checked in by bensch, 20 years ago

orxonox/trunk/gui: Generalized plugins (returning Widget* now). Enumerator for isOption added

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