summarylogtreecommitdiffstats
path: root/TagsDialog.h
blob: ec23401b9700cc28bd094216b3499cf7c4ae6878 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#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