comparison layer/TimeValueLayer.h @ 376:e1a9e478b7f2

* juggle some files around in order to free audioio, base, and system libraries from dependency on QtGui
author Chris Cannam
date Wed, 12 Mar 2008 17:42:56 +0000
parents 020c485aa7e0
children 755243c67f59
comparison
equal deleted inserted replaced
375:daaf1c435d98 376:e1a9e478b7f2
140 SparseTimeValueModel::Point m_editingPoint; 140 SparseTimeValueModel::Point m_editingPoint;
141 SparseTimeValueModel::EditCommand *m_editingCommand; 141 SparseTimeValueModel::EditCommand *m_editingCommand;
142 int m_colourMap; 142 int m_colourMap;
143 PlotStyle m_plotStyle; 143 PlotStyle m_plotStyle;
144 VerticalScale m_verticalScale; 144 VerticalScale m_verticalScale;
145
146 void finish(SparseTimeValueModel::EditCommand *command) {
147 Command *c = command->finish();
148 if (c) CommandHistory::getInstance()->addCommand(c, false);
149 }
145 }; 150 };
146 151
147 #endif 152 #endif
148 153