summaryrefslogtreecommitdiff
path: root/gtk2_ardour/export_timespan_selector.h
diff options
context:
space:
mode:
authorNikolaus Gullotta <nik@harrisonconsoles.com>2019-07-22 15:47:17 -0500
committerNikolaus Gullotta <nik@harrisonconsoles.com>2019-07-22 15:47:17 -0500
commit31ec8ce7d18e36d3c765beeb0445eb946373addf (patch)
treeff4763aa566c907d82571a3305f9453cca7e66cb /gtk2_ardour/export_timespan_selector.h
parent7d4f72174c2c5b97baf5fe5ec22f41ad28818925 (diff)
Location timestamp changes - can now sort by location creation date: gtk part
Diffstat (limited to 'gtk2_ardour/export_timespan_selector.h')
-rw-r--r--gtk2_ardour/export_timespan_selector.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/gtk2_ardour/export_timespan_selector.h b/gtk2_ardour/export_timespan_selector.h
index 1f7a5ae9c2..86ccfabc6f 100644
--- a/gtk2_ardour/export_timespan_selector.h
+++ b/gtk2_ardour/export_timespan_selector.h
@@ -24,6 +24,8 @@
#include "audio_clock.h"
#include <list>
+#include <ctime>
+
#ifdef interface
#undef interface
@@ -136,8 +138,10 @@ protected:
Gtk::TreeModelColumn<bool> realtime;
Gtk::TreeModelColumn<std::string> name;
Gtk::TreeModelColumn<std::string> length;
+ Gtk::TreeModelColumn<std::string> date;
+ Gtk::TreeModelColumn<time_t> timestamp;
- RangeCols () { add (location); add(label); add(selected); add(realtime); add(name); add(length); }
+ RangeCols () { add (location); add(label); add(selected); add(realtime); add(name); add(length); add(date); add(timestamp);}
};
RangeCols range_cols;