summaryrefslogtreecommitdiff
path: root/muse2/muse/midiedit/piano.h
blob: c2044dd4cd6474f6fee6fce815545029bfb12ce1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
//=========================================================
//  MusE
//  Linux Music Editor
//    $Id: piano.h,v 1.2 2004/05/31 11:48:55 lunar_shuttle Exp $
//  (C) Copyright 1999 Werner Schweer (ws@seh.de)
//  (C) Copyright 2012 Tim E. Real (terminator356 on users dot sourceforge dot net)
//
//  This program is free software; you can redistribute it and/or
//  modify it under the terms of the GNU General Public License
//  as published by the Free Software Foundation; version 2 of
//  the License, or (at your option) any later version.
//
//  This program is distributed in the hope that it will be useful,
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
//  GNU General Public License for more details.
//
//  You should have received a copy of the GNU General Public License
//  along with this program; if not, write to the Free Software
//  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
//
//=========================================================

#ifndef __PIANO_H__
#define __PIANO_H__

#include "view.h"

class QEvent;
class QMouseEvent;
class QWheelEvent;
class QPainter;
class QPixmap;

#define KH  13

namespace MusEGui {

class MidiEditor;

//---------------------------------------------------------
//   Piano
//---------------------------------------------------------

class Piano : public View
      {
      Q_OBJECT

      MidiEditor* _midiEditor;
      int curPitch;
      int _curSelectedPitch;
      QPixmap* octave;
      QPixmap* c_keys[10];
      QPixmap* mk1;
      QPixmap* mk2;
      QPixmap* mk3;
      QPixmap* mk4;
      QPixmap* mk5;
      QPixmap* mk6;
      QPixmap* mk7;
      QPixmap* mk8;
      int keyDown;
      bool shift;
      int button;

      
      int y2pitch(int) const;
      int pitch2y(int) const;
      void viewMouseMoveEvent(QMouseEvent* event);
      virtual void leaveEvent(QEvent*e);

      virtual void viewMousePressEvent(QMouseEvent* event);
      virtual void viewMouseReleaseEvent(QMouseEvent*);
      virtual void wheelEvent(QWheelEvent* e);

   protected:
      virtual void draw(QPainter&, const QRect&);

   signals:
      void pitchChanged(int);
      void keyPressed(int, int, bool);
      void keyReleased(int, bool);
      void curSelectedPitchChanged(int);
      void redirectWheelEvent(QWheelEvent*);

   public slots:
      void setPitch(int);

   public:
      Piano(QWidget* parent, int ymag, MidiEditor* editor = 0);
      int curSelectedPitch() const { return _curSelectedPitch; } 
      void setCurSelectedPitch(int pitch);
      };

} // namespace MusEGui
      
#endif