Mercurial > hg > svgui
comparison layer/Layer.h @ 806:4c8ca536b54f warnfix_no_size_t
Some more unsigned/long removal
author | Chris Cannam |
---|---|
date | Tue, 17 Jun 2014 15:36:56 +0100 |
parents | 1d526ba11a24 |
children | e0f08e108064 |
comparison
equal
deleted
inserted
replaced
805:1d526ba11a24 | 806:4c8ca536b54f |
---|---|
523 | 523 |
524 signals: | 524 signals: |
525 void modelChanged(); | 525 void modelChanged(); |
526 void modelCompletionChanged(); | 526 void modelCompletionChanged(); |
527 void modelAlignmentCompletionChanged(); | 527 void modelAlignmentCompletionChanged(); |
528 void modelChanged(int startFrame, int endFrame); | 528 void modelChangedWithin(int startFrame, int endFrame); |
529 void modelReplaced(); | 529 void modelReplaced(); |
530 | 530 |
531 void layerParametersChanged(); | 531 void layerParametersChanged(); |
532 void layerParameterRangesChanged(); | 532 void layerParameterRangesChanged(); |
533 void layerMeasurementRectsChanged(); | 533 void layerMeasurementRectsChanged(); |
544 | 544 |
545 struct MeasureRect { | 545 struct MeasureRect { |
546 | 546 |
547 mutable QRect pixrect; | 547 mutable QRect pixrect; |
548 bool haveFrames; | 548 bool haveFrames; |
549 long startFrame; // only valid if haveFrames | 549 int startFrame; // only valid if haveFrames |
550 long endFrame; // ditto | 550 int endFrame; // ditto |
551 double startY; | 551 double startY; |
552 double endY; | 552 double endY; |
553 | 553 |
554 bool operator<(const MeasureRect &mr) const; | 554 bool operator<(const MeasureRect &mr) const; |
555 void toXml(QTextStream &stream, QString indent) const; | 555 void toXml(QTextStream &stream, QString indent) const; |