mirror of
https://github.com/LMMS/lmms.git
synced 2026-03-11 02:26:19 -04:00
This commit ensures that all defined data types in include/lmms_basics.h are suffxed with "_t" to keep consistency as well as to fix issues on systems with older STL/libstdc++.
333 lines
7.7 KiB
C++
333 lines
7.7 KiB
C++
/*
|
|
* piano_roll.h - declaration of class pianoRoll which is a window where you
|
|
* can set and edit notes in an easy way
|
|
*
|
|
* Copyright (c) 2004-2009 Tobias Doerffel <tobydox/at/users.sourceforge.net>
|
|
* Copyright (c) 2008 Andrew Kelley <superjoe30/at/gmail/dot/com>
|
|
*
|
|
* This file is part of Linux MultiMedia Studio - http://lmms.sourceforge.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; either
|
|
* 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 (see COPYING); if not, write to the
|
|
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301 USA.
|
|
*
|
|
*/
|
|
|
|
|
|
#ifndef _PIANO_ROLL_H
|
|
#define _PIANO_ROLL_H
|
|
|
|
#include <QtGui/QWidget>
|
|
|
|
#include "combobox_model.h"
|
|
#include "serializing_object.h"
|
|
#include "note.h"
|
|
#include "lmms_basics.h"
|
|
#include "song.h"
|
|
|
|
|
|
class QPainter;
|
|
class QPixmap;
|
|
class QScrollBar;
|
|
class QString;
|
|
class QMenu;
|
|
class QSignalMapper;
|
|
|
|
class comboBox;
|
|
class notePlayHandle;
|
|
class pattern;
|
|
class timeLine;
|
|
class toolButton;
|
|
|
|
|
|
class pianoRoll : public QWidget, public serializingObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
void setCurrentPattern( pattern * _new_pattern );
|
|
|
|
inline void stopRecording( void )
|
|
{
|
|
m_recording = false;
|
|
}
|
|
|
|
inline bool isRecording( void ) const
|
|
{
|
|
return m_recording;
|
|
}
|
|
|
|
inline const pattern * currentPattern( void ) const
|
|
{
|
|
return m_pattern;
|
|
}
|
|
|
|
inline bool validPattern( void ) const
|
|
{
|
|
return m_pattern != NULL;
|
|
}
|
|
|
|
song::PlayModes desiredPlayModeForAccompany( void ) const;
|
|
|
|
int quantization( void ) const;
|
|
|
|
|
|
virtual void saveSettings( QDomDocument & _doc, QDomElement & _parent );
|
|
virtual void loadSettings( const QDomElement & _this );
|
|
|
|
inline virtual QString nodeName( void ) const
|
|
{
|
|
return "pianoroll";
|
|
}
|
|
|
|
|
|
public slots:
|
|
void play( void );
|
|
void record( void );
|
|
void recordAccompany( void );
|
|
void stop( void );
|
|
|
|
|
|
protected:
|
|
virtual void closeEvent( QCloseEvent * _ce );
|
|
virtual void keyPressEvent( QKeyEvent * _ke );
|
|
virtual void keyReleaseEvent( QKeyEvent * _ke );
|
|
virtual void leaveEvent( QEvent * _e );
|
|
virtual void mousePressEvent( QMouseEvent * _me );
|
|
virtual void mouseDoubleClickEvent( QMouseEvent * _me );
|
|
virtual void mouseReleaseEvent( QMouseEvent * _me );
|
|
virtual void mouseMoveEvent( QMouseEvent * _me );
|
|
virtual void paintEvent( QPaintEvent * _pe );
|
|
virtual void resizeEvent( QResizeEvent * _re );
|
|
virtual void wheelEvent( QWheelEvent * _we );
|
|
|
|
int getKey( int _y ) const;
|
|
static inline void drawNoteRect( QPainter & _p, int _x, int _y,
|
|
int _width, note * _n );
|
|
void removeSelection( void );
|
|
void selectAll( void );
|
|
void getSelectedNotes( noteVector & _selected_notes );
|
|
|
|
|
|
protected slots:
|
|
void startRecordNote( const note & _n );
|
|
void finishRecordNote( const note & _n );
|
|
|
|
void horScrolled( int _new_pos );
|
|
void verScrolled( int _new_pos );
|
|
|
|
void drawButtonToggled( void );
|
|
void eraseButtonToggled( void );
|
|
void selectButtonToggled( void );
|
|
void detuneButtonToggled( void );
|
|
|
|
void copySelectedNotes( void );
|
|
void cutSelectedNotes( void );
|
|
void pasteNotes( void );
|
|
void deleteSelectedNotes( void );
|
|
|
|
void updatePosition( const midiTime & _t );
|
|
void updatePositionAccompany( const midiTime & _t );
|
|
|
|
void zoomingChanged( void );
|
|
void quantizeChanged( void );
|
|
|
|
void changeNoteEditMode( int i );
|
|
|
|
|
|
private:
|
|
|
|
enum EditModes
|
|
{
|
|
ModeDraw,
|
|
ModeErase,
|
|
ModeSelect,
|
|
ModeOpen
|
|
};
|
|
|
|
enum Actions
|
|
{
|
|
ActionNone,
|
|
ActionMoveNote,
|
|
ActionResizeNote,
|
|
ActionSelectNotes,
|
|
ActionChangeNoteProperty,
|
|
ActionResizeNoteEditArea
|
|
};
|
|
|
|
enum NoteEditMode
|
|
{
|
|
NoteEditVolume,
|
|
NoteEditPanning,
|
|
NoteEditCount // make sure this one is always last
|
|
};
|
|
|
|
enum KeyTypes
|
|
{
|
|
WhiteKeySmall,
|
|
WhiteKeyBig,
|
|
BlackKey
|
|
};
|
|
|
|
QVector<QString> m_nemStr; // gui names of each edit mode
|
|
QMenu * m_noteEditMenu; // when you right click below the key area
|
|
QSignalMapper * m_signalMapper; // to keep track of edit mode events
|
|
|
|
pianoRoll( void );
|
|
pianoRoll( const pianoRoll & );
|
|
virtual ~pianoRoll();
|
|
|
|
void autoScroll( const midiTime & _t );
|
|
|
|
midiTime newNoteLen( void ) const;
|
|
|
|
void shiftPos(int amount);
|
|
void shiftSemiTone(int amount);
|
|
bool isSelection() const;
|
|
int selectionCount() const;
|
|
void testPlayNote( note * n );
|
|
void testPlayKey( int _key, int _vol, int _pan );
|
|
void pauseTestNotes( bool _pause = true );
|
|
|
|
inline int noteEditTop() const;
|
|
inline int keyAreaBottom() const;
|
|
inline int noteEditBottom() const;
|
|
inline int keyAreaTop() const;
|
|
inline int noteEditRight() const;
|
|
inline int noteEditLeft() const;
|
|
|
|
void dragNotes( int x, int y, bool alt );
|
|
|
|
static const int cm_scrollAmtHoriz = 10;
|
|
static const int cm_scrollAmtVert = 1;
|
|
|
|
static QPixmap * s_whiteKeyBigPm;
|
|
static QPixmap * s_whiteKeySmallPm;
|
|
static QPixmap * s_blackKeyPm;
|
|
static QPixmap * s_toolDraw;
|
|
static QPixmap * s_toolErase;
|
|
static QPixmap * s_toolSelect;
|
|
static QPixmap * s_toolMove;
|
|
static QPixmap * s_toolOpen;
|
|
|
|
static KeyTypes s_keyOrder[];
|
|
|
|
|
|
QWidget * m_toolBar;
|
|
|
|
toolButton * m_playButton;
|
|
toolButton * m_recordButton;
|
|
toolButton * m_recordAccompanyButton;
|
|
toolButton * m_stopButton;
|
|
|
|
toolButton * m_drawButton;
|
|
toolButton * m_eraseButton;
|
|
toolButton * m_selectButton;
|
|
toolButton * m_detuneButton;
|
|
|
|
toolButton * m_cutButton;
|
|
toolButton * m_copyButton;
|
|
toolButton * m_pasteButton;
|
|
|
|
comboBox * m_zoomingComboBox;
|
|
comboBox * m_quantizeComboBox;
|
|
comboBox * m_noteLenComboBox;
|
|
|
|
comboBoxModel m_zoomingModel;
|
|
comboBoxModel m_quantizeModel;
|
|
comboBoxModel m_noteLenModel;
|
|
|
|
|
|
|
|
pattern * m_pattern;
|
|
QScrollBar * m_leftRightScroll;
|
|
QScrollBar * m_topBottomScroll;
|
|
|
|
midiTime m_currentPosition;
|
|
bool m_recording;
|
|
QList<note> m_recordingNotes;
|
|
|
|
note * m_currentNote;
|
|
Actions m_action;
|
|
NoteEditMode m_noteEditMode;
|
|
|
|
Uint32 m_selectStartTick;
|
|
int m_selectedTick;
|
|
int m_selectStartKey;
|
|
int m_selectedKeys;
|
|
|
|
// boundary box around all selected notes when dragging
|
|
int m_moveBoundaryLeft;
|
|
int m_moveBoundaryTop;
|
|
int m_moveBoundaryRight;
|
|
int m_moveBoundaryBottom;
|
|
|
|
// remember where the scrolling started when dragging so that
|
|
// we can handle dragging while scrolling with arrow keys
|
|
int m_mouseDownKey;
|
|
int m_mouseDownTick;
|
|
|
|
// remember the last x and y of a mouse movement
|
|
int m_lastMouseX;
|
|
int m_lastMouseY;
|
|
|
|
// x,y of when the user starts a drag
|
|
int m_moveStartX;
|
|
int m_moveStartY;
|
|
|
|
int m_oldNotesEditHeight;
|
|
int m_notesEditHeight;
|
|
int m_ppt;
|
|
int m_totalKeysToScroll;
|
|
|
|
// remember these values to use them
|
|
// for the next note that is set
|
|
midiTime m_lenOfNewNotes;
|
|
volume_t m_lastNoteVolume;
|
|
panning_t m_lastNotePanning;
|
|
|
|
int m_startKey; // first key when drawing
|
|
int m_lastKey;
|
|
|
|
EditModes m_editMode;
|
|
EditModes m_ctrlMode; // mode they were in before they hit ctrl
|
|
|
|
bool m_mouseDownLeft; //true if left click is being held down
|
|
bool m_mouseDownRight; //true if right click is being held down
|
|
|
|
timeLine * m_timeLine;
|
|
bool m_scrollBack;
|
|
|
|
void copy_to_clipboard( const noteVector & _notes ) const;
|
|
|
|
void drawDetuningInfo( QPainter & _p, note * _n, int _x, int _y );
|
|
bool mouseOverNote( void );
|
|
note * noteUnderMouse( void );
|
|
noteVector::const_iterator noteIteratorUnderMouse( void );
|
|
|
|
// turn a selection rectangle into selected notes
|
|
void computeSelectedNotes( bool shift );
|
|
void clearSelectedNotes( void );
|
|
|
|
friend class engine;
|
|
|
|
|
|
signals:
|
|
void positionChanged( const midiTime & );
|
|
|
|
} ;
|
|
|
|
|
|
#endif
|
|
|