summaryrefslogtreecommitdiff
path: root/gtk2_ardour/enums.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-01-25 20:34:09 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-01-25 20:34:09 +0000
commit832aa18a813f5ed4cb8e1228c52d89ee6d8946c7 (patch)
tree7f6edd7d4cabb58ccddceac9aa18d38cc2987313 /gtk2_ardour/enums.cc
parent10395d2feeeac8949e9fd491173e467c9852879e (diff)
a boatload of minor and middle-sized changes to try to speed up undo. imperfect, unfinished, but probably right to commit now
git-svn-id: svn://localhost/ardour2/branches/3.0@6561 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/enums.cc')
-rw-r--r--gtk2_ardour/enums.cc13
1 files changed, 13 insertions, 0 deletions
diff --git a/gtk2_ardour/enums.cc b/gtk2_ardour/enums.cc
index 4820a930ac..4b20514175 100644
--- a/gtk2_ardour/enums.cc
+++ b/gtk2_ardour/enums.cc
@@ -40,6 +40,7 @@ setup_gtk_ardour_enums ()
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()
@@ -71,4 +72,16 @@ setup_gtk_ardour_enums ()
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);
}