mirror of
https://github.com/microtherion/VocalEasel.git
synced 2024-12-22 19:23:59 +00:00
35 lines
939 B
C
35 lines
939 B
C
//
|
|
// VLSheetViewInternal.h
|
|
// Vocalese
|
|
//
|
|
// Created by Matthias Neeracher on 1/4/06.
|
|
// Copyright 2006 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
const float kLineX = 5;
|
|
const float kLineH = 10;
|
|
const float kSystemH = 15.0f*kLineH;
|
|
const float kSystemY = 3.0f*kLineH;
|
|
const float kClefX = 20.5f;
|
|
const float kClefY =-15.0f;
|
|
const float kClefW = 30.0f;
|
|
const float kMeasNoX = 10.0f;
|
|
const float kMeasNoY = 4.5f*kLineH;
|
|
const float kNoteW = 12.0f;
|
|
const float kKeyW = 10.0f;
|
|
const float kAccW = 10.0f;
|
|
const float kSharpY =-15.0f;
|
|
const float kFlatY = -7.0f;
|
|
const float kImgScale = 0.04f;
|
|
const float kChordW = 40.0f;
|
|
const float kChordH = 25.0f;
|
|
const float kNoteX = 7.0f;
|
|
const float kNoteY = 5.0f;
|
|
const float kStemX = 0.0f;
|
|
const float kStemY = 1.0f;
|
|
const float kStemH = 30.0f;
|
|
const float kWholeRestY = 20.0f;
|
|
const float kHalfRestY = 15.0f;
|
|
const float kTieDepth = 10.0f;
|
|
const int kMaxLedgers = 3;
|