mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
First appearance of MIDI edit tool bar. Toggles when delete held, but otherwise still useless, pending some UI figuring out...
git-svn-id: svn://localhost/ardour2/trunk@2275 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
7caaa6a0e9
commit
430bc18ba2
8 changed files with 213 additions and 6 deletions
|
|
@ -30,6 +30,7 @@
|
|||
#define SNAPMODE(a) /*empty*/
|
||||
#define REGIONLISTSORTTYPE(a) /*empty*/
|
||||
#define MOUSEMODE(a) /*empty*/
|
||||
#define MIDIEDITMODE(a) /*empty*/
|
||||
#define ZOOMFOCUS(a) /*empty*/
|
||||
#define DISPLAYCONTROL(a) /*empty*/
|
||||
#define IMPORTMODE(a) /*empty*/
|
||||
|
|
@ -92,6 +93,20 @@ MouseMode str2mousemode(const std::string &);
|
|||
#undef MOUSEMODE
|
||||
#define MOUSEMODE(a) /*empty*/
|
||||
|
||||
// MIDIEDITMODE
|
||||
#undef MIDIEDITMODE
|
||||
#define MIDIEDITMODE(a) a,
|
||||
enum MidiEditMode {
|
||||
#include "editing_syms.h"
|
||||
};
|
||||
|
||||
extern const char *midieditmodestrs[];
|
||||
inline const char* enum2str(MidiEditMode m) {return midieditmodestrs[m];}
|
||||
MidiEditMode str2midieditmode(const std::string &);
|
||||
|
||||
#undef MIDIEDITMODE
|
||||
#define MIDIEDITMODE(a) /*empty*/
|
||||
|
||||
// ZOOMFOCUS
|
||||
#undef ZOOMFOCUS
|
||||
#define ZOOMFOCUS(a) a,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue