forked from tenacityteam/tenacity-legacy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMousePrefs.h
49 lines (35 loc) · 1.21 KB
/
MousePrefs.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/**********************************************************************
Audacity: A Digital Audio Editor
MousePrefs.h
**********************************************************************/
#ifndef __AUDACITY_MOUSE_PREFS__
#define __AUDACITY_MOUSE_PREFS__
#include <wx/defs.h>
#include "PrefsPanel.h"
class wxListCtrl;
class ShuttleGui;
class TranslatableString;
#define MOUSE_PREFS_PLUGIN_SYMBOL ComponentInterfaceSymbol{ XO("Mouse") }
class MousePrefs final : public PrefsPanel
{
public:
MousePrefs(wxWindow * parent, wxWindowID winid);
~MousePrefs();
ComponentInterfaceSymbol GetSymbol() override;
TranslatableString GetDescription() override;
bool Commit() override;
ManualPageID HelpPageName() override;
void PopulateOrExchange(ShuttleGui & S) override;
private:
void Populate();
void CreateList();
void AddItem(TranslatableString const & buttons,
TranslatableString const & tool,
TranslatableString const & action,
TranslatableString const & comment = {});
// See bug #2315 for discussion. This should be reviewed
// and (possibly) removed after wx3.1.3.
void OnShow(wxShowEvent & event);
wxListCtrl * mList;
};
#endif