summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorLuo Jinghua <sunmoon1997@gmail.com>2008-11-15 23:10:27 +0800
committerLuo Jinghua <sunmoon1997@gmail.com>2008-11-15 23:10:27 +0800
commit42e8f8eec054913a572647685881f30b10d3f62f (patch)
tree2f2b1f600d325b04016481dcfc69baa700c30314 /examples
parent3d72bf3401f3bcec0bea96135d6a37941340d693 (diff)
examples: add missing TagsDialog.h.
Copied it from audiere-1.9.4-src.tar.bz2.
Diffstat (limited to 'examples')
-rwxr-xr-xexamples/wxPlayer/TagsDialog.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/examples/wxPlayer/TagsDialog.h b/examples/wxPlayer/TagsDialog.h
new file mode 100755
index 0000000..a3f2684
--- /dev/null
+++ b/examples/wxPlayer/TagsDialog.h
@@ -0,0 +1,26 @@
+#ifndef TAGS_DIALOG_H
+#define TAGS_DIALOG_H
+
+
+#include <audiere.h>
+#include "wx.h"
+
+
+class TagsDialog : public wxDialog {
+public:
+ TagsDialog(
+ wxWindow* parent,
+ audiere::SampleSourcePtr source);
+
+private:
+ void OnButton(wxCommandEvent& event);
+ void OnClose(wxCloseEvent& event);
+
+ wxListBox* m_tags;
+ wxButton* m_close;
+
+ DECLARE_EVENT_TABLE()
+};
+
+
+#endif