diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-02-24 22:40:57 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-02-24 22:40:57 +0000 |
| commit | dcd968d6d64d645816af0efbcd2f928128c95b9f (patch) | |
| tree | 97fcfc3df5d984e634169dbfed5bb3fa5aa4ee9b /src/wx/audio_dialog.h | |
| parent | cf1e212c30ec7419b96388e4f78b44cb55bf34c5 (diff) | |
Basic UI.
Diffstat (limited to 'src/wx/audio_dialog.h')
| -rw-r--r-- | src/wx/audio_dialog.h | 14 |
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; +}; |
