Mercurial > hg > svcore
annotate base/XmlExportable.h @ 34:aaf73f7309f2
* Add "Export Audio File" option
* Make note layer align in frequency with any spectrogram layer on the same
view (if it's set to frequency mode)
* Start to implement mouse editing for ranges of points by dragging the
selection
* First scrappy attempt at a vertical scale for time value layer
author | Chris Cannam |
---|---|
date | Mon, 27 Feb 2006 17:34:41 +0000 |
parents | 070e9e1e40ea |
children | 39ae3dee27b9 |
rev | line source |
---|---|
Chris@3 | 1 /* -*- c-basic-offset: 4 -*- vi:set ts=8 sts=4 sw=4: */ |
Chris@3 | 2 |
Chris@3 | 3 /* |
Chris@3 | 4 A waveform viewer and audio annotation editor. |
Chris@3 | 5 Chris Cannam, Queen Mary University of London, 2005-2006 |
Chris@3 | 6 |
Chris@3 | 7 This is experimental software. Not for distribution. |
Chris@3 | 8 */ |
Chris@3 | 9 |
Chris@3 | 10 #ifndef _XML_EXPORTABLE_H_ |
Chris@3 | 11 #define _XML_EXPORTABLE_H_ |
Chris@3 | 12 |
Chris@3 | 13 #include <QString> |
Chris@3 | 14 #include <QColor> |
Chris@3 | 15 |
Chris@3 | 16 class XmlExportable |
Chris@3 | 17 { |
Chris@3 | 18 public: |
Chris@27 | 19 virtual ~XmlExportable() { } |
Chris@27 | 20 |
Chris@3 | 21 virtual QString toXmlString(QString indent = "", |
Chris@3 | 22 QString extraAttributes = "") const = 0; |
Chris@3 | 23 |
Chris@3 | 24 static QString encodeEntities(QString); |
Chris@3 | 25 |
Chris@3 | 26 static QString encodeColour(QColor); |
Chris@4 | 27 |
Chris@4 | 28 static int getObjectExportId(const void *); // not thread-safe |
Chris@3 | 29 }; |
Chris@3 | 30 |
Chris@3 | 31 #endif |