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
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;
16  Box* audioBox;
17  CheckButton* enableSound;
18  Slider* musicVolume;
19  Slider* effectsVolume;
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.