X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fenums.cc;h=4b205141750105c21381f9b59a3ff85eab163458;hb=8dd31447be22c20a51f019c8ea77c27ba975815c;hp=73675dc84c85df8c25e5b3f2c43534aa18fe47bb;hpb=52fc310cfb540f9fd7d459453cbbaaa4bde47e9e;p=ardour.git diff --git a/gtk2_ardour/enums.cc b/gtk2_ardour/enums.cc index 73675dc84c..4b20514175 100644 --- a/gtk2_ardour/enums.cc +++ b/gtk2_ardour/enums.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2000-2007 Paul Davis + Copyright (C) 2000-2007 Paul Davis 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 @@ -39,13 +39,15 @@ setup_gtk_ardour_enums () Width width; ImportMode import_mode; EditPoint edit_point; + LayerDisplay layer_display; + RegionListSortType region_list_sort_type; #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) - REGISTER_CLASS_ENUM (AudioClock, SMPTE); + REGISTER_CLASS_ENUM (AudioClock, Timecode); REGISTER_CLASS_ENUM (AudioClock, BBT); REGISTER_CLASS_ENUM (AudioClock, MinSec); REGISTER_CLASS_ENUM (AudioClock, Frames); @@ -66,4 +68,20 @@ setup_gtk_ardour_enums () REGISTER_ENUM (EditAtMouse); REGISTER_ENUM (EditAtSelectedMarker); REGISTER (edit_point); + + REGISTER_ENUM (Overlaid); + REGISTER_ENUM (Stacked); + REGISTER (layer_display); + + 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); }