updated on Mon Jan 23 12:00:23 UTC 2012
[aur-mirror.git] / audiere / TagsDialog.h
blobec23401b9700cc28bd094216b3499cf7c4ae6878
1 #ifndef TAGS_DIALOG_H
2 #define TAGS_DIALOG_H
5 #include <audiere.h>
6 #include "wx.h"
9 class TagsDialog : public wxDialog {
10 public:
11 TagsDialog(
12 wxWindow* parent,
13 audiere::SampleSourcePtr source);
15 private:
16 void OnButton(wxCommandEvent& event);
17 void OnClose(wxCloseEvent& event);
19 wxListBox* m_tags;
20 wxButton* m_close;
22 DECLARE_EVENT_TABLE()
24 #endif