summaryrefslogtreecommitdiff
path: root/src/wx/audio_dialog.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-02-24 22:40:57 +0000
committerCarl Hetherington <cth@carlh.net>2013-02-24 22:40:57 +0000
commitdcd968d6d64d645816af0efbcd2f928128c95b9f (patch)
tree97fcfc3df5d984e634169dbfed5bb3fa5aa4ee9b /src/wx/audio_dialog.h
parentcf1e212c30ec7419b96388e4f78b44cb55bf34c5 (diff)
Basic UI.
Diffstat (limited to 'src/wx/audio_dialog.h')
-rw-r--r--src/wx/audio_dialog.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/wx/audio_dialog.h b/src/wx/audio_dialog.h
new file mode 100644
index 000000000..324a1ec99
--- /dev/null
+++ b/src/wx/audio_dialog.h
@@ -0,0 +1,14 @@
+#include <boost/shared_ptr.hpp>
+#include <wx/wx.h>
+
+class AudioPlot;
+class Film;
+
+class AudioDialog : public wxDialog
+{
+public:
+ AudioDialog (wxWindow *, boost::shared_ptr<Film>);
+
+private:
+ AudioPlot* _plot;
+};