summaryrefslogtreecommitdiff
path: root/src/wx/audio_dialog.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-02-25 00:11:49 +0000
committerCarl Hetherington <cth@carlh.net>2013-02-25 00:11:49 +0000
commit040a227d300033f8a103dc6eb67847286131d9b7 (patch)
tree54093eaad6186817d1ee744d3f299f93ea49b475 /src/wx/audio_dialog.h
parentdcd968d6d64d645816af0efbcd2f928128c95b9f (diff)
Some tidying up, add channel selector to Audio dialog.
Diffstat (limited to 'src/wx/audio_dialog.h')
-rw-r--r--src/wx/audio_dialog.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/wx/audio_dialog.h b/src/wx/audio_dialog.h
index 324a1ec99..1e4563972 100644
--- a/src/wx/audio_dialog.h
+++ b/src/wx/audio_dialog.h
@@ -1,3 +1,22 @@
+/*
+ Copyright (C) 2013 Carl Hetherington <cth@carlh.net>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+*/
+
#include <boost/shared_ptr.hpp>
#include <wx/wx.h>
@@ -9,6 +28,11 @@ class AudioDialog : public wxDialog
public:
AudioDialog (wxWindow *, boost::shared_ptr<Film>);
+ void set_film (boost::shared_ptr<Film>);
+
private:
+ void channel_changed (wxCommandEvent &);
+
AudioPlot* _plot;
+ wxChoice* _channel;
};