FS2_Open
Open source remastering of the Freespace 2 engine
dlgsoundenvironment.cpp
Go to the documentation of this file.
1 /*
2  * Created by Ian "Goober5000" Warfield and "z64555" for the FreeSpace2 Source
3  * Code Project.
4  *
5  * You may not sell or otherwise commercially exploit the source or things you
6  * create based on the source.
7  */
8 
10 #include "base/wxfred_base.h"
11 
12 #include <wx/wx.h>
13 
14 // Public members:
16  : fredBase::dlgSoundEnvironment(parent)
17 {
18 }
19 
20 // Protected members:
21  // Handlers for dlgSoundEnvironment:
22 void dlgSoundEnvironment::OnClose( wxCloseEvent& event )
23 {
24  Hide();
25 }
26 
27 void dlgSoundEnvironment::OnOK( wxCommandEvent& event )
28 {
29  Hide();
30 }
31 
32 void dlgSoundEnvironment::OnCancel( wxCommandEvent& event )
33 {
34  Hide();
35 }
36 
37 // Private members:
void OnCancel(wxCommandEvent &event)
void OnClose(wxCloseEvent &event)
void OnOK(wxCommandEvent &event)
struct _cl_event * event
Definition: Glext.h:7296