MuseScore/mscore/editpitch.h
Joachim Schmitz 55b0344478 Add missing top 7 pitches to editpitch dialog
also avoid code duplication and make code independant from number of
rows
2018-01-13 15:07:48 +01:00

50 lines
1.6 KiB
C++

//=============================================================================
// MusE Score
// Linux Music Score Editor
// $Id: editpitch.h 3775 2010-12-17 23:55:35Z miwarre $
//
// Copyright (C) 2002-2016 Werner Schweer and others
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2.
//
// 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., 675 Mass Ave, Cambridge, MA 02139, USA.
//=============================================================================
#ifndef EDITPITCH_H
#define EDITPITCH_H
#include "ui_editpitch.h"
namespace Ms {
//---------------------------------------------------------
// EditPitch
//---------------------------------------------------------
class EditPitch : public QDialog, private Ui::EditPitchBase {
Q_OBJECT
virtual void hideEvent(QHideEvent*);
private slots:
void on_tableWidget_cellDoubleClicked(int row, int column);
void accept();
void reject() { done(-1); } // return an invalid pitch MIDI code
public:
EditPitch(QWidget *parent);
EditPitch(QWidget * parent, int midiCode);
~EditPitch() {}
};
}
#endif // EDITPITCH_H