|
Last change
on this file since 3154 was
2595,
checked in by bensch, 21 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. |
|---|
| 12 | class 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.