repo.or.cz
/
aur-mirror.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git]
/
audiere
/
TagsDialog.h
blob
ec23401b9700cc28bd094216b3499cf7c4ae6878
1
#ifndef TAGS_DIALOG_H
2
#define TAGS_DIALOG_H
3
4
5
#include <audiere.h>
6
#include
"wx.h"
7
8
9
class
TagsDialog
:
public
wxDialog
{
10
public
:
11
TagsDialog
(
12
wxWindow
*
parent
,
13
audiere
::
SampleSourcePtr source
);
14
15
private
:
16
void
OnButton
(
wxCommandEvent
&
event
);
17
void
OnClose
(
wxCloseEvent
&
event
);
18
19
wxListBox
*
m_tags
;
20
wxButton
*
m_close
;
21
22
DECLARE_EVENT_TABLE
()
23
};
24
#endif