1 //=============================================================================
2 //  MuseScore
3 //  Music Composition & Notation
4 //
5 //  Copyright (C) 2009-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 __PIANOROLLEDITTOOL_H__
14 #define __PIANOROLLEDITTOOL_H__
15 
16 namespace Ms {
17 
18 enum PianoRollEditTool
19 {
20     SELECT,
21     INSERT_NOTE,
22     APPEND_NOTE,
23     CUT_CHORD,
24     CHANGE_LENGTH,
25     ERASE,
26     TIE,
27 
28     LAST  //Marker for end of list - not a tool
29 };
30 
31 } // namespace Ms
32 
33 #endif
34 
35