12345678910111213141516171819202122232425262728293031323334353637383940 |
- "use strict";
- var DrawingParameters = (function () {
- function DrawingParameters() {
- }
- DrawingParameters.prototype.setForAllOn = function () {
- this.drawHighlights = true;
- this.drawErrors = true;
- this.drawSelectionStartSymbol = true;
- this.drawSelectionEndSymbol = true;
- this.drawCursors = true;
- this.drawActivitySymbols = true;
- this.drawScrollIndicator = true;
- this.drawComments = true;
- this.drawMarkedAreas = true;
- };
- DrawingParameters.prototype.setForThumbmail = function () {
- this.drawHighlights = false;
- this.drawErrors = false;
- this.drawSelectionStartSymbol = false;
- this.drawSelectionStartSymbol = false;
- this.drawCursors = false;
- this.drawActivitySymbols = false;
- this.drawScrollIndicator = false;
- this.drawComments = true;
- this.drawMarkedAreas = true;
- };
- DrawingParameters.prototype.setForLeadsheet = function () {
- this.drawHighlights = false;
- this.drawErrors = false;
- this.drawSelectionStartSymbol = true;
- this.drawSelectionEndSymbol = true;
- this.drawCursors = true;
- this.drawActivitySymbols = false;
- this.drawScrollIndicator = true;
- this.drawComments = true;
- this.drawMarkedAreas = true;
- };
- return DrawingParameters;
- }());
- exports.DrawingParameters = DrawingParameters;
|