2007-04-26 16:54:31 -04:00
|
|
|
/*
|
2019-08-02 17:26:43 -04:00
|
|
|
* Copyright (C) 2005 Karsten Wiese <fzuuzf@googlemail.com>
|
|
|
|
* Copyright (C) 2006-2016 Paul Davis <paul@linuxaudiosystems.com>
|
|
|
|
* Copyright (C) 2007-2009 David Robillard <d@drobilla.net>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
2007-04-26 16:54:31 -04:00
|
|
|
|
2008-05-02 14:35:05 -04:00
|
|
|
#include <cstring>
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#include "editing.h"
|
|
|
|
|
2016-07-14 14:44:52 -04:00
|
|
|
#include "pbd/i18n.h"
|
2006-11-01 12:41:28 -05:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
// This involves some cpp magic. --taybin
|
|
|
|
|
2018-02-09 10:59:39 -05:00
|
|
|
#define GRIDTYPE(a) /*empty*/
|
2005-09-25 14:42:24 -04:00
|
|
|
#define SNAPMODE(a) /*empty*/
|
|
|
|
#define REGIONLISTSORTTYPE(a) /*empty*/
|
|
|
|
#define MOUSEMODE(a) /*empty*/
|
2007-08-08 15:13:36 -04:00
|
|
|
#define MIDIEDITMODE(a) /*empty*/
|
2005-09-25 14:42:24 -04:00
|
|
|
#define ZOOMFOCUS(a) /*empty*/
|
|
|
|
#define DISPLAYCONTROL(a) /*empty*/
|
|
|
|
|
|
|
|
namespace Editing {
|
|
|
|
|
2018-02-09 10:59:39 -05:00
|
|
|
// GRIDTYPE
|
|
|
|
#undef GRIDTYPE
|
|
|
|
#define GRIDTYPE(s) if (!strcmp(type, #s)) {return s;}
|
|
|
|
GridType
|
|
|
|
str2gridtype (const string & str) {
|
2005-09-25 14:42:24 -04:00
|
|
|
const char* type = str.c_str();
|
|
|
|
#include "editing_syms.h"
|
2018-02-09 10:59:39 -05:00
|
|
|
return GridTypeBar;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
2006-11-01 12:41:28 -05:00
|
|
|
|
2018-02-09 10:59:39 -05:00
|
|
|
#undef GRIDTYPE
|
|
|
|
#define GRIDTYPE(s) N_(#s),
|
|
|
|
const char *gridtypestrs[] = {
|
2006-11-01 12:41:28 -05:00
|
|
|
#include "editing_syms.h"
|
|
|
|
0
|
|
|
|
};
|
2018-02-09 10:59:39 -05:00
|
|
|
#undef GRIDTYPE
|
|
|
|
#define GRIDTYPE(a) /*empty*/
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
// SNAPMODE
|
|
|
|
#undef SNAPMODE
|
|
|
|
#define SNAPMODE(s) if (!strcmp(type, #s)) {return s;}
|
|
|
|
SnapMode
|
2005-12-22 07:23:54 -05:00
|
|
|
str2snapmode (const string & str) {
|
2005-09-25 14:42:24 -04:00
|
|
|
const char* type = str.c_str();
|
|
|
|
#include "editing_syms.h"
|
2018-02-09 10:59:39 -05:00
|
|
|
return SnapMagnetic;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
2006-11-01 12:41:28 -05:00
|
|
|
|
|
|
|
#undef SNAPMODE
|
|
|
|
#define SNAPMODE(s) N_(#s),
|
|
|
|
const char *snapmodestrs[] = {
|
|
|
|
#include "editing_syms.h"
|
|
|
|
0
|
|
|
|
};
|
2005-09-25 14:42:24 -04:00
|
|
|
#undef SNAPMODE
|
|
|
|
#define SNAPMODE(a) /*empty*/
|
|
|
|
|
2006-11-01 12:41:28 -05:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
// REGIONLISTSORTTYPE
|
|
|
|
#undef REGIONLISTSORTTYPE
|
|
|
|
#define REGIONLISTSORTTYPE(s) if (!strcmp(type, #s)) {return s;}
|
|
|
|
RegionListSortType
|
2005-12-22 07:23:54 -05:00
|
|
|
str2regionlistsorttype (const string & str) {
|
2005-09-25 14:42:24 -04:00
|
|
|
const char* type = str.c_str();
|
|
|
|
#include "editing_syms.h"
|
|
|
|
return ByName;
|
|
|
|
}
|
2006-11-01 12:41:28 -05:00
|
|
|
|
|
|
|
#undef REGIONLISTSORTTYPE
|
|
|
|
#define REGIONLISTSORTTYPE(s) N_(#s),
|
|
|
|
const char *regionlistsorttypestrs[] = {
|
|
|
|
#include "editing_syms.h"
|
|
|
|
0
|
|
|
|
};
|
2005-09-25 14:42:24 -04:00
|
|
|
#undef REGIONLISTSORTTYPE
|
|
|
|
#define REGIONLISTSORTTYPE(a) /*empty*/
|
|
|
|
|
|
|
|
// MOUSEMODE
|
|
|
|
#undef MOUSEMODE
|
|
|
|
#define MOUSEMODE(s) if (!strcmp(type, #s)) {return s;}
|
|
|
|
MouseMode
|
2005-12-22 07:23:54 -05:00
|
|
|
str2mousemode (const string & str) {
|
2005-09-25 14:42:24 -04:00
|
|
|
const char* type = str.c_str();
|
|
|
|
#include "editing_syms.h"
|
|
|
|
return MouseObject;
|
|
|
|
}
|
2006-11-01 12:41:28 -05:00
|
|
|
|
|
|
|
#undef MOUSEMODE
|
|
|
|
#define MOUSEMODE(s) N_(#s),
|
|
|
|
const char *mousemodestrs[] = {
|
|
|
|
#include "editing_syms.h"
|
|
|
|
0
|
|
|
|
};
|
2005-09-25 14:42:24 -04:00
|
|
|
#undef MOUSEMODE
|
|
|
|
#define MOUSEMODE(a) /*empty*/
|
|
|
|
|
|
|
|
// ZOOMFOCUS
|
|
|
|
#undef ZOOMFOCUS
|
|
|
|
#define ZOOMFOCUS(s) if (!strcmp(type, #s)) {return s;}
|
|
|
|
ZoomFocus
|
2005-12-22 07:23:54 -05:00
|
|
|
str2zoomfocus (const string & str) {
|
2005-09-25 14:42:24 -04:00
|
|
|
const char* type = str.c_str();
|
|
|
|
#include "editing_syms.h"
|
|
|
|
return ZoomFocusPlayhead;
|
|
|
|
}
|
2006-11-01 12:41:28 -05:00
|
|
|
|
|
|
|
#undef ZOOMFOCUS
|
|
|
|
#define ZOOMFOCUS(s) N_(#s),
|
|
|
|
const char *zoomfocusstrs[] = {
|
|
|
|
#include "editing_syms.h"
|
|
|
|
0
|
|
|
|
};
|
2005-09-25 14:42:24 -04:00
|
|
|
#undef ZOOMFOCUS
|
|
|
|
#define ZOOMFOCUS(a) /*empty*/
|
|
|
|
|
|
|
|
// DISPLAYCONTROL
|
|
|
|
#undef DISPLAYCONTROL
|
|
|
|
#define DISPLAYCONTROL(s) if (!strcmp(type, #s)) {return s;}
|
|
|
|
DisplayControl
|
2005-12-22 07:23:54 -05:00
|
|
|
str2displaycontrol (const string & str) {
|
2005-09-25 14:42:24 -04:00
|
|
|
const char* type = str.c_str();
|
|
|
|
#include "editing_syms.h"
|
|
|
|
return FollowPlayhead;
|
|
|
|
}
|
2006-11-01 12:41:28 -05:00
|
|
|
|
|
|
|
#undef DISPLAYCONTROL
|
|
|
|
#define DISPLAYCONTROL(s) N_(#s),
|
|
|
|
const char *displaycontrolstrs[] = {
|
|
|
|
#include "editing_syms.h"
|
|
|
|
0
|
|
|
|
};
|
2005-09-25 14:42:24 -04:00
|
|
|
#undef DISPLAYCONTROL
|
|
|
|
#define DISPLAYCONTROL(a) /*empty*/
|
|
|
|
|
2006-11-01 12:41:28 -05:00
|
|
|
//IMPORTMODE
|
|
|
|
#undef IMPORTMODE
|
|
|
|
#define IMPORTMODE(s) N_(#s),
|
|
|
|
const char *importmodestrs[] = {
|
|
|
|
#include "editing_syms.h"
|
|
|
|
0
|
|
|
|
};
|
|
|
|
#undef IMPORTMODE
|
|
|
|
#define IMPORTMODE(a) /*empty*/
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
} // namespace Editing
|
2006-11-01 12:41:28 -05:00
|
|
|
|