comparison data/model/PathModel.h @ 425:f5e8f12d2e58

* Add audio device selection to preferences * Add (not yet functional) insert, delete, edit buttons to data edit window * Add proper set methods for time fields in data edit window (using general sparse model base class)
author Chris Cannam
date Fri, 13 Jun 2008 21:09:43 +0000
parents 88ad01799040
children 59e7fe1b1003
comparison
equal deleted inserted replaced
424:eafef13bb0b3 425:f5e8f12d2e58
78 (out, 78 (out,
79 indent, 79 indent,
80 QString("%1 subtype=\"path\"") 80 QString("%1 subtype=\"path\"")
81 .arg(extraAttributes)); 81 .arg(extraAttributes));
82 } 82 }
83
84 /**
85 * TabularModel is inherited via SparseModel, but we don't need it here.
86 */
87 virtual QString getHeading(int) const { return ""; }
88 virtual bool isColumnTimeValue(int) const { return false; }
89 virtual SortType getSortType(int) const { return SortNumeric; }
90
83 }; 91 };
84 92
85 93
86 #endif 94 #endif