2007-04-26 16:54:31 -04:00
|
|
|
/*
|
2009-10-14 12:10:01 -04:00
|
|
|
Copyright (C) 2000-2007 Paul Davis
|
2007-04-26 16:54:31 -04:00
|
|
|
|
|
|
|
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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2008-09-10 11:03:30 -04:00
|
|
|
#include <cstring>
|
2008-05-02 14:35:05 -04:00
|
|
|
#include <cstring>
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#include "editing.h"
|
|
|
|
|
2006-11-01 12:41:28 -05:00
|
|
|
#include "i18n.h"
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
// This involves some cpp magic. --taybin
|
|
|
|
|
|
|
|
#define SNAPTYPE(a) /*empty*/
|
|
|
|
#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 {
|
|
|
|
|
|
|
|
// SNAPTYPE
|
|
|
|
#undef SNAPTYPE
|
|
|
|
#define SNAPTYPE(s) if (!strcmp(type, #s)) {return s;}
|
|
|
|
SnapType
|
2005-12-22 07:23:54 -05:00
|
|
|
str2snaptype (const string & str) {
|
2005-09-25 14:42:24 -04:00
|
|
|
const char* type = str.c_str();
|
|
|
|
#include "editing_syms.h"
|
|
|
|
return SnapToBar;
|
|
|
|
}
|
2006-11-01 12:41:28 -05:00
|
|
|
|
|
|
|
#undef SNAPTYPE
|
|
|
|
#define SNAPTYPE(s) N_(#s),
|
|
|
|
const char *snaptypestrs[] = {
|
|
|
|
#include "editing_syms.h"
|
|
|
|
0
|
|
|
|
};
|
2005-09-25 14:42:24 -04:00
|
|
|
#undef SNAPTYPE
|
|
|
|
#define SNAPTYPE(a) /*empty*/
|
|
|
|
|
|
|
|
// 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"
|
|
|
|
return SnapNormal;
|
|
|
|
}
|
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
|
|
|
|