Skip to content

Commit 869c8c8

Browse files
committed
Uniformized file names to PascalCase format
1 parent d49bb47 commit 869c8c8

36 files changed

+110
-110
lines changed

NodalScene.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
#include <QUndoStack>
33
#include <Utils.h>
44
#include "NodalScene.h"
5-
#include "nodeitem.h"
5+
#include "NodeItem.h"
66
#include "Components.h"
7-
#include "pininputitem.h"
8-
#include "linkitem.h"
9-
#include "pinoutputitem.h"
7+
#include "PinInputItem.h"
8+
#include "LinkItem.h"
9+
#include "PinOutputItem.h"
1010
#include "UndoCommands/CreateComponentCommand.h"
1111
#include "UndoCommands/DeleteComponentCommand.h"
1212
#include "UndoCommands/MoveComponentCommand.h"

SoundGenerator.pro

Lines changed: 58 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -36,62 +36,55 @@ SOURCES += \
3636
UndoCommands/UnlinkPinCommand.cpp \
3737
Utils.cpp \
3838
WAVFormat.cpp \
39-
main.cpp \
40-
Components/AddComponent.cpp \
41-
Components/ADSRComponent.cpp \
42-
Components/Component.cpp \
43-
Components/ComponentFactory.cpp \
44-
Components/DelayComponent.cpp \
45-
Components/GeneratorComponent.cpp \
46-
Components/MultiplyComponent.cpp \
47-
Components/OutputComponent.cpp \
48-
Components/RandomComponent.cpp \
49-
Components/RepeatComponent.cpp \
50-
Components/SawToothComponent.cpp \
51-
Components/SinusComponent.cpp \
52-
Components/SquareComponent.cpp \
53-
Components/TriangleComponent.cpp \
54-
UI/mainwindow.cpp \
55-
UI/linkitem.cpp \
56-
UI/nodalview.cpp \
57-
UI/nodeitem.cpp \
58-
UI/pinitem.cpp \
59-
UI/waveformchunk.cpp \
60-
UI/waveformview.cpp \
61-
Random.cpp \
62-
Signal.cpp \
63-
UI/pinoutputitem.cpp \
64-
UI/pininputitem.cpp \
65-
UI/lineeditqreal.cpp \
66-
UI/pushordragbutton.cpp \
67-
UndoCommands/SelectComponentCommand.cpp
39+
main.cpp \
40+
Components/AddComponent.cpp \
41+
Components/ADSRComponent.cpp \
42+
Components/Component.cpp \
43+
Components/ComponentFactory.cpp \
44+
Components/DelayComponent.cpp \
45+
Components/GeneratorComponent.cpp \
46+
Components/MultiplyComponent.cpp \
47+
Components/OutputComponent.cpp \
48+
Components/RandomComponent.cpp \
49+
Components/RepeatComponent.cpp \
50+
Components/SawToothComponent.cpp \
51+
Components/SinusComponent.cpp \
52+
Components/SquareComponent.cpp \
53+
Components/TriangleComponent.cpp \
54+
Random.cpp \
55+
Signal.cpp \
56+
UndoCommands/SelectComponentCommand.cpp \
57+
UI/LineEditQReal.cpp \
58+
UI/LinkItem.cpp \
59+
UI/MainWindow.cpp \
60+
UI/NodalView.cpp \
61+
UI/NodeItem.cpp \
62+
UI/PinInputItem.cpp \
63+
UI/PinItem.cpp \
64+
UI/PinOutputItem.cpp \
65+
UI/PushOrDragButton.cpp \
66+
UI/WaveFormChunk.cpp \
67+
UI/WaveFormView.cpp
6868

6969
HEADERS += \
70-
Components/AddComponent.h \
71-
Components/ADSRComponent.h \
72-
Components/Component.h \
73-
Components/ComponentFactory.h \
74-
Components/DelayComponent.h \
75-
Components/GeneratorComponent.h \
76-
Components/MultiplyComponent.h \
77-
Components/OutputComponent.h \
78-
Components/RandomComponent.h \
79-
Components/RepeatComponent.h \
80-
Components/SawToothComponent.h \
81-
Components/SinusComponent.h \
82-
Components/SquareComponent.h \
83-
Components/TriangleComponent.h \
70+
Components/AddComponent.h \
71+
Components/ADSRComponent.h \
72+
Components/Component.h \
73+
Components/ComponentFactory.h \
74+
Components/DelayComponent.h \
75+
Components/GeneratorComponent.h \
76+
Components/MultiplyComponent.h \
77+
Components/OutputComponent.h \
78+
Components/RandomComponent.h \
79+
Components/RepeatComponent.h \
80+
Components/SawToothComponent.h \
81+
Components/SinusComponent.h \
82+
Components/SquareComponent.h \
83+
Components/TriangleComponent.h \
8484
NodalScene.h \
8585
Types.h \
86-
UI/mainwindow.h \
87-
UI/linkitem.h \
88-
UI/nodalview.h \
89-
UI/nodeitem.h \
90-
UI/pinitem.h \
91-
UI/waveformchunk.h \
92-
UI/waveformview.h \
93-
Random.h \
94-
Signal.h \
86+
Random.h \
87+
Signal.h \
9588
UndoCommands/ChangeInputValueCommand.h \
9689
UndoCommands/CreateComponentCommand.h \
9790
UndoCommands/DeleteComponentCommand.h \
@@ -100,14 +93,21 @@ HEADERS += \
10093
UndoCommands/UnlinkPinCommand.h \
10194
Utils.h \
10295
WAVFormat.h \
103-
UI/pinoutputitem.h \
104-
UI/pininputitem.h \
105-
UI/lineeditqreal.h \
106-
UI/pushordragbutton.h \
107-
UndoCommands/SelectComponentCommand.h
96+
UndoCommands/SelectComponentCommand.h \
97+
UI/LineEditQReal.h \
98+
UI/LinkItem.h \
99+
UI/MainWindow.h \
100+
UI/NodalView.h \
101+
UI/NodeItem.h \
102+
UI/PinInputItem.h \
103+
UI/PinItem.h \
104+
UI/PinOutputItem.h \
105+
UI/PushOrDragButton.h \
106+
UI/WaveFormChunk.h \
107+
UI/WaveFormView.h
108108

109109
FORMS += \
110-
UI/mainwindow.ui
110+
UI/mainwindow.ui
111111

112112
# Default rules for deployment.
113113
qnx: target.path = /tmp/$${TARGET}/bin

types.h renamed to Types.h

File renamed without changes.

UI/lineeditqreal.cpp renamed to UI/LineEditQReal.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
*
1919
*/
2020

21-
#include "lineeditqreal.h"
21+
#include "LineEditQReal.h"
2222
#include <QDoubleValidator>
2323
#include <QTimer>
2424

File renamed without changes.

UI/linkitem.cpp renamed to UI/LinkItem.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
*
1919
*/
2020

21-
#include "linkitem.h"
22-
#include "nodalview.h"
23-
#include "pinitem.h"
21+
#include "LinkItem.h"
22+
#include "NodalView.h"
23+
#include "PinItem.h"
2424
#include <QtMath>
2525

2626
QVector<LinkItem*> LinkItem::s_linkList;
File renamed without changes.

UI/mainwindow.cpp renamed to UI/MainWindow.cpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@
1818
*
1919
*/
2020

21-
#include "mainwindow.h"
21+
#include "MainWindow.h"
2222
#include "ui_mainwindow.h"
23-
#include "nodeitem.h"
24-
#include "nodalview.h"
25-
#include "waveformchunk.h"
26-
#include "waveformview.h"
27-
#include "pininputitem.h"
28-
#include "lineeditqreal.h"
29-
#include "pushordragbutton.h"
23+
#include "NodeItem.h"
24+
#include "NodalView.h"
25+
#include "WaveFormChunk.h"
26+
#include "WaveFormView.h"
27+
#include "PinInputItem.h"
28+
#include "LineEditQReal.h"
29+
#include "PushOrDragButton.h"
3030
#include "NodalScene.h"
3131
#include <QStyle>
3232
#include <Utils.h>
File renamed without changes.

UI/nodalview.cpp renamed to UI/NodalView.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
*
1919
*/
2020

21-
#include "nodalview.h"
21+
#include "NodalView.h"
2222
#include <Utils.h>
23-
#include "nodeitem.h"
23+
#include "NodeItem.h"
2424
#include "NodalScene.h"
25-
#include "linkitem.h"
26-
#include "pinitem.h"
25+
#include "LinkItem.h"
26+
#include "PinItem.h"
2727

2828
const int NodalView::gridUnit = 20;
2929

0 commit comments

Comments
 (0)