PianoRoll: renamed class and file name to match current coding style

This commit is contained in:
Tobias Doerffel
2014-03-09 23:19:46 +01:00
parent 5b0ddf7e5c
commit 24a9ef01f9
27 changed files with 146 additions and 151 deletions

View File

@@ -1,10 +1,10 @@
/*
* piano_roll.h - declaration of class pianoRoll which is a window where you
* can set and edit notes in an easy way
* PianoRoll.h - declaration of class PianoRoll which is a window where you
* can set and edit notes in an easy way
*
* Copyright (c) 2004-2014 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
@@ -24,7 +24,6 @@
*
*/
#ifndef _PIANO_ROLL_H
#define _PIANO_ROLL_H
@@ -50,7 +49,7 @@ class pattern;
class timeLine;
class toolButton;
class pianoRoll : public QWidget, public SerializingObject
class PianoRoll : public QWidget, public SerializingObject
{
Q_OBJECT
public:
@@ -186,7 +185,7 @@ private:
stmaMarkCurrentChord,
};
enum pianoRollKeyTypes
enum PianoRollKeyTypes
{
PR_WHITE_KEY_SMALL,
PR_WHITE_KEY_BIG,
@@ -199,9 +198,9 @@ private:
QList<int> m_markedSemiTones;
QMenu * m_semiToneMarkerMenu; // when you right click on the key area
pianoRoll();
pianoRoll( const pianoRoll & );
virtual ~pianoRoll();
PianoRoll();
PianoRoll( const PianoRoll & );
virtual ~PianoRoll();
void autoScroll( const MidiTime & _t );
@@ -239,7 +238,7 @@ private:
static QPixmap * s_toolMove;
static QPixmap * s_toolOpen;
static pianoRollKeyTypes prKeyOrder[];
static PianoRollKeyTypes prKeyOrder[];
QWidget * m_toolBar;

View File

@@ -41,7 +41,7 @@ class FxMixerView;
class ProjectJournal;
class MainWindow;
class Mixer;
class pianoRoll;
class PianoRoll;
class projectNotes;
class song;
class songEditor;
@@ -117,7 +117,7 @@ public:
return s_bbEditor;
}
static pianoRoll * getPianoRoll()
static PianoRoll* pianoRoll()
{
return s_pianoRoll;
}
@@ -191,7 +191,7 @@ private:
static songEditor * s_songEditor;
static AutomationEditor * s_automationEditor;
static bbEditor * s_bbEditor;
static pianoRoll * s_pianoRoll;
static PianoRoll* s_pianoRoll;
static projectNotes * s_projectNotes;
static ladspa2LMMS * s_ladspaManager;