20 #include "OptionsBaseState.h" 36 static const std::string musFormats[], sndFormats[];
37 Text *_txtMusicVolume, *_txtSoundVolume, *_txtUiVolume;
38 Slider *_slrMusicVolume, *_slrSoundVolume, *_slrUiVolume;
39 Text *_txtMusicFormat, *_txtCurrentMusic, *_txtSoundFormat, *_txtCurrentSound, *_txtVideoFormat;
40 ComboBox *_cbxMusicFormat, *_cbxSoundFormat, *_cbxVideoFormat;
Screen that lets the user configure various Audio options.
Definition: OptionsAudioState.h:33
void slrMusicVolumeChange(Action *action)
Handler for changing the music slider.
Definition: OptionsAudioState.cpp:194
Container for all the information associated with a given user action, like mouse clicks...
Definition: Action.h:32
void cbxMusicFormatChange(Action *action)
Handler for changing the Music Format combobox.
Definition: OptionsAudioState.cpp:251
void slrUiVolumeRelease(Action *action)
Handler for sound slider button release.
Definition: OptionsAudioState.cpp:233
void slrUiVolumeChange(Action *action)
Handler for changing the sound slider.
Definition: OptionsAudioState.cpp:223
Horizontal slider control to select from a range of values.
Definition: Slider.h:34
Text string displayed on screen.
Definition: Text.h:40
void cbxSoundFormatChange(Action *action)
Handler for changing the Sound Format combobox.
Definition: OptionsAudioState.cpp:261
Text button with a list dropdown when pressed.
Definition: ComboBox.h:36
void cbxVideoFormatChange(Action *action)
Handler for changing the Video Format combobox.
Definition: OptionsAudioState.cpp:242
OptionsAudioState(OptionsOrigin origin)
Creates the Audio Options state.
Definition: OptionsAudioState.cpp:43
void slrSoundVolumeChange(Action *action)
Handler for changing the sound slider.
Definition: OptionsAudioState.cpp:204
void slrSoundVolumeRelease(Action *action)
Handler for sound slider button release.
Definition: OptionsAudioState.cpp:214
~OptionsAudioState()
Cleans up the Audio Options state.
Definition: OptionsAudioState.cpp:185
Definition: BaseInfoState.cpp:40
Options base state for common stuff across Options windows.
Definition: OptionsBaseState.h:41