MuseScore  3.4
Music composition and notation
navigate.h
Go to the documentation of this file.
1 //=============================================================================
2 // MuseScore
3 // Music Composition & Notation
4 //
5 // Copyright (C) 2002-2011 Werner Schweer
6 //
7 // This program is free software; you can redistribute it and/or modify
8 // it under the terms of the GNU General Public License version 2
9 // as published by the Free Software Foundation and appearing in
10 // the file LICENCE.GPL
11 //=============================================================================
12 
13 #ifndef __NAVIGATE_H__
14 #define __NAVIGATE_H__
15 
16 namespace Ms {
17 
18 class ChordRest;
19 
20 extern int pitch2y(int pitch, int enh, int clefOffset, int key, int& prefix, const char* tversatz);
21 extern ChordRest* nextChordRest(ChordRest* cr, bool skipGrace = false);
22 extern ChordRest* prevChordRest(ChordRest* cr, bool skipGrace = false);
23 
24 
25 } // namespace Ms
26 #endif
27 
Definition: aeolus.cpp:26
ChordRest * prevChordRest(ChordRest *cr, bool skipGrace)
Definition: navigate.cpp:117
int pitch2y(int pitch, int enh, int clefOffset, int key, int &prefix, const char *tversatz)
ChordRest * nextChordRest(ChordRest *cr, bool skipGrace)
Definition: navigate.cpp:39