AudioOptions_gump.h

Go to the documentation of this file.
00001 /*
00002 Copyright (C) 2003-2004 The Exult Team
00003 
00004 This program is free software; you can redistribute it and/or
00005 modify it under the terms of the GNU General Public License
00006 as published by the Free Software Foundation; either version 2
00007 of the License, or (at your option) any later version.
00008 
00009 This program is distributed in the hope that it will be useful,
00010 but WITHOUT ANY WARRANTY; without even the implied warranty of
00011 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00012 GNU General Public License for more details.
00013 
00014 You should have received a copy of the GNU General Public License
00015 along with this program; if not, write to the Free Software
00016 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
00017 */
00018 
00019 #ifndef _AUDIOOPTIONS_GUMP_H
00020 #define _AUDIOOPTIONS_GUMP_H
00021 
00022 #include "Modal_gump.h"
00023 
00024 class Gump_button;
00025 
00026 class AudioOptions_gump : public Modal_gump
00027 {
00028   UNREPLICATABLE_CLASS_I(AudioOptions_gump,Modal_gump(0,0,0,0));
00029 
00030  private:
00031   Gump_button* buttons[12];
00032 
00033   int audio_enabled;
00034   int midi_enabled;
00035   int midi_conversion;
00036   int midi_driver;
00037   int midi_reverb_chorus;
00038   int midi_looping;
00039   int sfx_enabled;
00040   int sfx_conversion;
00041   int speech_enabled;
00042 
00043  public:
00044   AudioOptions_gump();
00045   ~AudioOptions_gump();
00046 
00047           // Paint it and its contents.
00048   virtual void paint();
00049   virtual void close();
00050 
00051           // Handle events:
00052   virtual void mouse_down(int mx, int my);
00053   virtual void mouse_up(int mx, int my);
00054 
00055   void toggle(Gump_button* btn, int state);
00056   void rebuild_buttons();
00057   void rebuild_midi_buttons();
00058   void rebuild_mididriveroption_buttons();
00059   void rebuild_sfx_buttons();
00060 
00061   void load_settings();
00062   void save_settings();
00063   void cancel();
00064 };
00065 
00066 #endif

Generated on Mon Jul 9 14:42:46 2007 for ExultEngine by  doxygen 1.5.1