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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "pbd/enumwriter.h"
|
2007-01-07 17:11:02 -05:00
|
|
|
|
|
|
|
#include "audio_clock.h"
|
2007-10-11 18:07:47 -04:00
|
|
|
#include "editing.h"
|
2007-04-29 18:39:21 -04:00
|
|
|
#include "enums.h"
|
2007-01-07 17:11:02 -05:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace PBD;
|
|
|
|
using namespace ARDOUR;
|
2007-10-11 18:07:47 -04:00
|
|
|
using namespace Editing;
|
2007-01-07 17:11:02 -05:00
|
|
|
|
|
|
|
void
|
|
|
|
setup_gtk_ardour_enums ()
|
|
|
|
{
|
|
|
|
EnumWriter& enum_writer (EnumWriter::instance());
|
|
|
|
vector<int> i;
|
|
|
|
vector<string> s;
|
|
|
|
|
|
|
|
AudioClock::Mode clock_mode;
|
2007-04-29 18:39:21 -04:00
|
|
|
Width width;
|
2007-10-11 18:07:47 -04:00
|
|
|
ImportMode import_mode;
|
2007-11-07 20:40:25 -05:00
|
|
|
EditPoint edit_point;
|
2009-08-25 21:06:31 -04:00
|
|
|
LayerDisplay layer_display;
|
2010-01-25 15:34:09 -05:00
|
|
|
RegionListSortType region_list_sort_type;
|
2007-01-07 17:11:02 -05:00
|
|
|
|
|
|
|
#define REGISTER(e) enum_writer.register_distinct (typeid(e).name(), i, s); i.clear(); s.clear()
|
|
|
|
#define REGISTER_BITS(e) enum_writer.register_bits (typeid(e).name(), i, s); i.clear(); s.clear()
|
|
|
|
#define REGISTER_ENUM(e) i.push_back (e); s.push_back (#e)
|
|
|
|
#define REGISTER_CLASS_ENUM(t,e) i.push_back (t::e); s.push_back (#e)
|
|
|
|
|
2009-10-26 10:38:58 -04:00
|
|
|
REGISTER_CLASS_ENUM (AudioClock, Timecode);
|
2007-01-07 17:11:02 -05:00
|
|
|
REGISTER_CLASS_ENUM (AudioClock, BBT);
|
|
|
|
REGISTER_CLASS_ENUM (AudioClock, MinSec);
|
|
|
|
REGISTER_CLASS_ENUM (AudioClock, Frames);
|
|
|
|
REGISTER_CLASS_ENUM (AudioClock, Off);
|
|
|
|
REGISTER (clock_mode);
|
2007-04-29 18:39:21 -04:00
|
|
|
|
|
|
|
REGISTER_ENUM (Wide);
|
|
|
|
REGISTER_ENUM (Narrow);
|
|
|
|
REGISTER (width);
|
2007-10-11 18:07:47 -04:00
|
|
|
|
|
|
|
REGISTER_ENUM (ImportAsTrack);
|
|
|
|
REGISTER_ENUM (ImportToTrack);
|
|
|
|
REGISTER_ENUM (ImportAsRegion);
|
|
|
|
REGISTER_ENUM (ImportAsTapeTrack);
|
|
|
|
REGISTER (import_mode);
|
2007-11-07 20:40:25 -05:00
|
|
|
|
|
|
|
REGISTER_ENUM (EditAtPlayhead);
|
|
|
|
REGISTER_ENUM (EditAtMouse);
|
|
|
|
REGISTER_ENUM (EditAtSelectedMarker);
|
|
|
|
REGISTER (edit_point);
|
2009-08-25 21:06:31 -04:00
|
|
|
|
|
|
|
REGISTER_ENUM (Overlaid);
|
|
|
|
REGISTER_ENUM (Stacked);
|
|
|
|
REGISTER (layer_display);
|
2010-01-25 15:34:09 -05:00
|
|
|
|
|
|
|
REGISTER_ENUM (ByEndInFile);
|
|
|
|
REGISTER_ENUM (ByLength);
|
|
|
|
REGISTER_ENUM (ByName);
|
|
|
|
REGISTER_ENUM (ByPosition);
|
|
|
|
REGISTER_ENUM (BySourceFileCreationDate);
|
|
|
|
REGISTER_ENUM (BySourceFileFS);
|
|
|
|
REGISTER_ENUM (BySourceFileLength);
|
|
|
|
REGISTER_ENUM (BySourceFileName);
|
|
|
|
REGISTER_ENUM (ByStartInFile);
|
|
|
|
REGISTER_ENUM (ByTimestamp);
|
|
|
|
REGISTER (region_list_sort_type);
|
2007-01-07 17:11:02 -05:00
|
|
|
}
|