moved several files around

Mostly moved classes that became node derivatives into the node/ folder.
This commit is contained in:
itsmattkc
2021-04-08 12:15:59 +10:00
parent 2791e8d738
commit cb75e37e77
115 changed files with 159 additions and 128 deletions
-1
View File
@@ -47,7 +47,6 @@ add_subdirectory(dialog)
add_subdirectory(node)
add_subdirectory(packaging)
add_subdirectory(panel)
add_subdirectory(project)
add_subdirectory(render)
add_subdirectory(shaders)
add_subdirectory(task)
+1 -1
View File
@@ -30,11 +30,11 @@
#include "common/ffmpegutils.h"
#include "common/filefunctions.h"
#include "common/timecodefunctions.h"
#include "node/project/project.h"
#ifdef USE_OTIO
#include "task/project/loadotio/loadotio.h"
#endif
#include "task/taskmanager.h"
#include "project/project.h"
namespace olive {
+2 -2
View File
@@ -35,8 +35,8 @@ extern "C" {
#include "codec/samplebuffer.h"
#include "codec/waveoutput.h"
#include "common/rational.h"
#include "project/item/footage/footage.h"
#include "project/item/footage/footagedescription.h"
#include "node/project/footage/footage.h"
#include "node/project/footage/footagedescription.h"
namespace olive {
+1 -1
View File
@@ -45,11 +45,11 @@
#include "dialog/sequence/sequence.h"
#include "dialog/task/task.h"
#include "dialog/preferences/preferences.h"
#include "node/color/colormanager/colormanager.h"
#include "node/factory.h"
#include "panel/panelmanager.h"
#include "panel/project/project.h"
#include "panel/viewer/viewer.h"
#include "render/colormanager.h"
#include "render/diskmanager.h"
#include "render/rendermanager.h"
#ifdef USE_OTIO
+4 -4
View File
@@ -28,10 +28,10 @@
#include "common/rational.h"
#include "common/timecodefunctions.h"
#include "project/item/footage/footage.h"
#include "project/item/sequence/sequence.h"
#include "project/project.h"
#include "project/projectviewmodel.h"
#include "node/project/footage/footage.h"
#include "node/project/project.h"
#include "node/project/projectviewmodel.h"
#include "node/project/sequence/sequence.h"
#include "task/task.h"
#include "tool/tool.h"
#include "undo/undostack.h"
+1 -1
View File
@@ -23,8 +23,8 @@
#include <QDialog>
#include "node/color/colormanager/colormanager.h"
#include "render/color.h"
#include "render/colormanager.h"
#include "render/managedcolor.h"
#include "widget/colorwheel/colorgradientwidget.h"
#include "widget/colorwheel/colorspacechooser.h"
+2 -2
View File
@@ -33,8 +33,8 @@
#include "common/qtutils.h"
#include "core.h"
#include "dialog/task/task.h"
#include "project/item/sequence/sequence.h"
#include "project/project.h"
#include "node/project/project.h"
#include "node/project/sequence/sequence.h"
#include "ui/icons/icons.h"
namespace olive {
+1 -1
View File
@@ -28,7 +28,7 @@
#include "core.h"
#include "exportadvancedvideodialog.h"
#include "render/colormanager.h"
#include "node/color/colormanager/colormanager.h"
#include "task/export/exportparams.h"
namespace olive {
+1 -1
View File
@@ -28,7 +28,7 @@
#include "common/rational.h"
#include "dialog/export/codec/h264section.h"
#include "dialog/export/codec/imagesection.h"
#include "render/colormanager.h"
#include "node/color/colormanager/colormanager.h"
#include "widget/colorwheel/colorspacechooser.h"
#include "widget/slider/integerslider.h"
#include "widget/standardcombos/standardcombos.h"
@@ -24,7 +24,7 @@
#include <QDialog>
#include <QTreeWidget>
#include "project/item/footage/footage.h"
#include "node/project/footage/footage.h"
namespace olive {
@@ -28,7 +28,7 @@
#include "common/autoscroll.h"
#include "core.h"
#include "dialog/sequence/sequence.h"
#include "project/item/sequence/sequence.h"
#include "node/project/sequence/sequence.h"
namespace olive {
@@ -26,7 +26,7 @@
#include <QSpinBox>
#include "dialog/configbase/configdialogbase.h"
#include "project/item/sequence/sequence.h"
#include "node/project/sequence/sequence.h"
#include "widget/slider/floatslider.h"
#include "widget/slider/integerslider.h"
+1 -1
View File
@@ -25,7 +25,7 @@
#include <QDialog>
#include <QSpinBox>
#include "project/item/sequence/sequence.h"
#include "node/project/sequence/sequence.h"
#include "sequencedialogparametertab.h"
#include "sequencedialogpresettab.h"
#include "undo/undocommand.h"
@@ -5,7 +5,7 @@
#include <QList>
#include <QSpinBox>
#include "project/item/sequence/sequence.h"
#include "node/project/sequence/sequence.h"
#include "sequencepreset.h"
#include "widget/slider/integerslider.h"
#include "widget/standardcombos/standardcombos.h"
+1
View File
@@ -16,6 +16,7 @@
add_subdirectory(audio)
add_subdirectory(block)
add_subdirectory(color)
add_subdirectory(distort)
add_subdirectory(filter)
add_subdirectory(generator)
+2
View File
@@ -31,6 +31,8 @@ class PanNode : public Node
public:
PanNode();
NODE_DEFAULT_DESTRUCTOR(PanNode)
virtual Node* copy() const override;
virtual QString Name() const override;
+2
View File
@@ -31,6 +31,8 @@ class VolumeNode : public MathNodeBase
public:
VolumeNode();
NODE_DEFAULT_DESTRUCTOR(VolumeNode)
virtual Node* copy() const override;
virtual QString Name() const override;
+2
View File
@@ -37,6 +37,8 @@ class Block : public Node
public:
Block();
NODE_DEFAULT_DESTRUCTOR(Block)
enum Type {
kClip,
kGap,
+2
View File
@@ -34,6 +34,8 @@ class ClipBlock : public Block
public:
ClipBlock();
NODE_DEFAULT_DESTRUCTOR(ClipBlock)
virtual Node* copy() const override;
virtual Type type() const override;
+2
View File
@@ -34,6 +34,8 @@ class GapBlock : public Block
public:
GapBlock();
NODE_DEFAULT_DESTRUCTOR(GapBlock)
virtual Node * copy() const override;
virtual Type type() const override;
@@ -31,6 +31,8 @@ class CrossDissolveTransition : public TransitionBlock
public:
CrossDissolveTransition();
NODE_DEFAULT_DESTRUCTOR(CrossDissolveTransition)
virtual Node* copy() const override;
virtual QString Name() const override;
@@ -31,6 +31,8 @@ class DipToColorTransition : public TransitionBlock
public:
DipToColorTransition();
NODE_DEFAULT_DESTRUCTOR(DipToColorTransition)
virtual Node* copy() const override;
virtual QString Name() const override;
+2
View File
@@ -31,6 +31,8 @@ class TransitionBlock : public Block
public:
TransitionBlock();
NODE_DEFAULT_DESTRUCTOR(TransitionBlock)
virtual Type type() const override;
virtual void Retranslate() override;
@@ -14,10 +14,9 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
add_subdirectory(colormanager)
set(OLIVE_SOURCES
${OLIVE_SOURCES}
project/item/folder/folder.h
project/item/folder/folder.cpp
PARENT_SCOPE
)
@@ -14,13 +14,9 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
add_subdirectory(item)
set(OLIVE_SOURCES
${OLIVE_SOURCES}
project/project.h
project/project.cpp
project/projectviewmodel.h
project/projectviewmodel.cpp
node/color/colormanager/colormanager.cpp
node/color/colormanager/colormanager.h
PARENT_SCOPE
)
@@ -25,8 +25,8 @@
#include <QMutex>
#include "codec/frame.h"
#include "colorprocessor.h"
#include "node/node.h"
#include "render/colorprocessor.h"
#define OCIO_SET_C_LOCALE_FOR_SCOPE ColorManager::SetLocale d("C")
+2
View File
@@ -33,6 +33,8 @@ class CropDistortNode : public Node
public:
CropDistortNode();
NODE_DEFAULT_DESTRUCTOR(CropDistortNode)
virtual Node* copy() const override
{
return new CropDistortNode();
@@ -31,6 +31,8 @@ class TransformDistortNode : public MatrixGenerator
public:
TransformDistortNode();
NODE_DEFAULT_DESTRUCTOR(TransformDistortNode)
virtual Node* copy() const override
{
return new TransformDistortNode();
+3 -3
View File
@@ -43,9 +43,9 @@
#include "math/trigonometry/trigonometry.h"
#include "output/track/track.h"
#include "output/viewer/viewer.h"
#include "project/item/folder/folder.h"
#include "project/item/footage/footage.h"
#include "project/item/sequence/sequence.h"
#include "project/folder/folder.h"
#include "project/footage/footage.h"
#include "project/sequence/sequence.h"
namespace olive {
QList<Node*> NodeFactory::library_;
+2
View File
@@ -31,6 +31,8 @@ class BlurFilterNode : public Node
public:
BlurFilterNode();
NODE_DEFAULT_DESTRUCTOR(BlurFilterNode)
virtual Node* copy() const override;
virtual QString Name() const override;
@@ -31,6 +31,8 @@ class MosaicFilterNode : public Node
public:
MosaicFilterNode();
NODE_DEFAULT_DESTRUCTOR(MosaicFilterNode)
virtual Node* copy() const override
{
return new MosaicFilterNode();
+2
View File
@@ -31,6 +31,8 @@ class StrokeFilterNode : public Node
public:
StrokeFilterNode();
NODE_DEFAULT_DESTRUCTOR(StrokeFilterNode)
virtual Node* copy() const override;
virtual QString Name() const override;
+2
View File
@@ -34,6 +34,8 @@ class MatrixGenerator : public Node
public:
MatrixGenerator();
NODE_DEFAULT_DESTRUCTOR(MatrixGenerator)
virtual Node* copy() const override;
virtual QString Name() const override;
+2
View File
@@ -32,6 +32,8 @@ class PolygonGenerator : public Node
public:
PolygonGenerator();
NODE_DEFAULT_DESTRUCTOR(PolygonGenerator)
virtual Node* copy() const override;
virtual QString Name() const override;
+2
View File
@@ -31,6 +31,8 @@ class SolidGenerator : public Node
public:
SolidGenerator();
NODE_DEFAULT_DESTRUCTOR(SolidGenerator)
virtual Node* copy() const override;
virtual QString Name() const override;
+2
View File
@@ -31,6 +31,8 @@ class TextGenerator : public Node
public:
TextGenerator();
NODE_DEFAULT_DESTRUCTOR(TextGenerator)
virtual Node* copy() const override;
virtual QString Name() const override;
+2
View File
@@ -31,6 +31,8 @@ class TimeInput : public Node
public:
TimeInput();
NODE_DEFAULT_DESTRUCTOR(TimeInput)
virtual Node* copy() const override;
virtual QString Name() const override;
+2
View File
@@ -31,6 +31,8 @@ class MathNode : public MathNodeBase
public:
MathNode();
NODE_DEFAULT_DESTRUCTOR(MathNode)
virtual Node* copy() const override;
virtual QString Name() const override;
+2
View File
@@ -30,6 +30,8 @@ class MathNodeBase : public Node
public:
MathNodeBase() = default;
NODE_DEFAULT_DESTRUCTOR(MathNodeBase)
enum Operation {
kOpAdd,
kOpSubtract,
+2
View File
@@ -31,6 +31,8 @@ class MergeNode : public Node
public:
MergeNode();
NODE_DEFAULT_DESTRUCTOR(MergeNode)
virtual Node* copy() const override;
virtual QString Name() const override;
@@ -31,6 +31,8 @@ class TrigonometryNode : public Node
public:
TrigonometryNode();
NODE_DEFAULT_DESTRUCTOR(TrigonometryNode)
virtual Node* copy() const override;
virtual QString Name() const override;
+1 -1
View File
@@ -31,8 +31,8 @@
#include "common/xmlutils.h"
#include "core.h"
#include "config/config.h"
#include "node/project/footage/footage.h"
#include "project/project.h"
#include "project/item/footage/footage.h"
#include "ui/colorcoding.h"
#include "ui/icons/icons.h"
#include "widget/nodeview/nodeviewundo.h"
+2
View File
@@ -45,6 +45,8 @@
namespace olive {
#define NODE_DEFAULT_DESTRUCTOR(x) virtual ~x() override {DisconnectAll();}
class NodeGraph;
class Folder;
+1 -1
View File
@@ -25,7 +25,7 @@
#include <QUndoCommand>
#include "node/node.h"
#include "project/item/sequence/sequence.h"
#include "node/project/sequence/sequence.h"
namespace olive {
-5
View File
@@ -55,11 +55,6 @@ Track::Track() :
track_height_ = kTrackHeightDefault;
}
Track::~Track()
{
DisconnectAll();
}
void Track::set_type(const Type &track_type)
{
track_type_ = track_type;
+1 -1
View File
@@ -44,7 +44,7 @@ public:
Track();
virtual ~Track() override;
NODE_DEFAULT_DESTRUCTOR(Track)
const Track::Type& type() const;
void set_type(const Track::Type& track_type);
+1 -1
View File
@@ -24,7 +24,7 @@
#include "node/math/math/math.h"
#include "node/math/merge/merge.h"
#include "node/output/viewer/viewer.h"
#include "project/item/sequence/sequence.h"
#include "node/project/sequence/sequence.h"
namespace olive {
-8
View File
@@ -57,14 +57,6 @@ ViewerOutput::ViewerOutput(bool create_default_streams) :
}
}
ViewerOutput::~ViewerOutput()
{
// Should prevent traversing graph unnecessarily
BeginOperation();
DisconnectAll();
EndOperation();
}
Node *ViewerOutput::copy() const
{
return new ViewerOutput();
+2 -1
View File
@@ -45,7 +45,8 @@ class ViewerOutput : public Node
Q_OBJECT
public:
ViewerOutput(bool create_default_streams = true);
virtual ~ViewerOutput() override;
NODE_DEFAULT_DESTRUCTOR(ViewerOutput)
virtual Node* copy() const override;
+7
View File
@@ -14,9 +14,16 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
add_subdirectory(folder)
add_subdirectory(footage)
add_subdirectory(projectsettings)
add_subdirectory(sequence)
set(OLIVE_SOURCES
${OLIVE_SOURCES}
node/project/project.h
node/project/project.cpp
node/project/projectviewmodel.h
node/project/projectviewmodel.cpp
PARENT_SCOPE
)
@@ -17,7 +17,7 @@
set(OLIVE_SOURCES
${OLIVE_SOURCES}
project/item/sequence/sequence.h
project/item/sequence/sequence.cpp
node/project/folder/folder.h
node/project/folder/folder.cpp
PARENT_SCOPE
)
@@ -21,8 +21,8 @@
#include "folder.h"
#include "common/xmlutils.h"
#include "project/item/footage/footage.h"
#include "project/item/sequence/sequence.h"
#include "node/project/footage/footage.h"
#include "node/project/sequence/sequence.h"
#include "ui/icons/icons.h"
namespace olive {
@@ -37,6 +37,8 @@ class Folder : public Node
public:
Folder();
NODE_DEFAULT_DESTRUCTOR(Folder)
virtual Node* copy() const override
{
return new Folder();
@@ -17,9 +17,9 @@
set(OLIVE_SOURCES
${OLIVE_SOURCES}
project/item/footage/footage.cpp
project/item/footage/footage.h
project/item/footage/footagedescription.cpp
project/item/footage/footagedescription.h
node/project/footage/footage.cpp
node/project/footage/footage.h
node/project/footage/footagedescription.cpp
node/project/footage/footagedescription.h
PARENT_SCOPE
)
@@ -49,6 +49,8 @@ public:
*/
Footage(const QString& filename = QString());
NODE_DEFAULT_DESTRUCTOR(Footage)
virtual Node* copy() const override
{
return new Footage();
@@ -25,10 +25,10 @@
#include <QObject>
#include <QUuid>
#include "node/project/projectsettings/projectsettings.h"
#include "node/color/colormanager/colormanager.h"
#include "node/output/viewer/viewer.h"
#include "render/colormanager.h"
#include "project/item/folder/folder.h"
#include "node/project/footage/footage.h"
#include "node/project/projectsettings/projectsettings.h"
#include "window/mainwindow/mainwindowlayoutinfo.h"
namespace olive {
@@ -31,6 +31,8 @@ class ProjectSettingsNode : public Node
public:
ProjectSettingsNode();
NODE_DEFAULT_DESTRUCTOR(ProjectSettingsNode)
virtual QString Name() const override
{
return tr("Project Settings");
@@ -14,11 +14,10 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
add_subdirectory(folder)
add_subdirectory(footage)
add_subdirectory(sequence)
set(OLIVE_SOURCES
${OLIVE_SOURCES}
node/project/sequence/sequence.h
node/project/sequence/sequence.cpp
PARENT_SCOPE
)
@@ -53,14 +53,6 @@ Sequence::Sequence()
}
}
Sequence::~Sequence()
{
// Should prevent traversing graph unnecessarily
BeginOperation();
DisconnectAll();
EndOperation();
}
void Sequence::add_default_nodes(MultiUndoCommand* command)
{
// Create tracks and connect them to the viewer
@@ -36,7 +36,7 @@ class Sequence : public ViewerOutput
public:
Sequence();
virtual ~Sequence() override;
NODE_DEFAULT_DESTRUCTOR(Sequence)
virtual Node* copy() const override
{
+1 -1
View File
@@ -23,7 +23,7 @@
#include <QList>
#include "project/item/footage/footage.h"
#include "node/project/footage/footage.h"
namespace olive {
+1 -1
View File
@@ -24,10 +24,10 @@
#include <QVBoxLayout>
#include "core.h"
#include "node/project/sequence/sequence.h"
#include "panel/footageviewer/footageviewer.h"
#include "panel/timeline/timeline.h"
#include "panel/panelmanager.h"
#include "project/item/sequence/sequence.h"
#include "widget/menu/menushared.h"
#include "widget/projecttoolbar/projecttoolbar.h"
#include "window/mainwindow/mainwindow.h"
+1 -1
View File
@@ -22,7 +22,7 @@
#define PROJECT_PANEL_H
#include "footagemanagementpanel.h"
#include "project/project.h"
#include "node/project/project.h"
#include "widget/panel/panel.h"
#include "widget/projectexplorer/projectexplorer.h"
-2
View File
@@ -26,8 +26,6 @@ set(OLIVE_SOURCES
render/audioplaybackcache.h
render/color.cpp
render/color.h
render/colormanager.cpp
render/colormanager.h
render/colorprocessor.cpp
render/colorprocessor.h
render/colorprocessorcache.h
+1 -1
View File
@@ -22,7 +22,7 @@
#include "common/define.h"
#include "common/ocioutils.h"
#include "colormanager.h"
#include "node/color/colormanager/colormanager.h"
namespace olive {
+1 -1
View File
@@ -27,7 +27,7 @@
#include <QTimer>
#include "common/define.h"
#include "project/project.h"
#include "node/project/project.h"
namespace olive {
+1 -1
View File
@@ -21,7 +21,7 @@
#ifndef FOOTAGEJOB_H
#define FOOTAGEJOB_H
#include "project/item/footage/footage.h"
#include "node/project/footage/footage.h"
namespace olive {
+2 -2
View File
@@ -21,8 +21,8 @@
#include "playbackcache.h"
#include "node/output/viewer/viewer.h"
#include "project/item/sequence/sequence.h"
#include "project/project.h"
#include "node/project/project.h"
#include "node/project/sequence/sequence.h"
#include "render/diskmanager.h"
namespace olive {
+1 -1
View File
@@ -3,7 +3,7 @@
#include <QApplication>
#include <QtConcurrent/QtConcurrent>
#include "project/project.h"
#include "node/project/project.h"
#include "render/rendermanager.h"
#include "render/renderprocessor.h"
+2 -2
View File
@@ -5,10 +5,10 @@
#include "config/config.h"
#include "node/graph.h"
#include "node/color/colormanager/colormanager.h"
#include "node/node.h"
#include "node/output/viewer/viewer.h"
#include "project/project.h"
#include "render/colormanager.h"
#include "node/project/project.h"
#include "threading/threadticketwatcher.h"
namespace olive {
+1 -1
View File
@@ -25,7 +25,7 @@
#include <QVector3D>
#include <QVector4D>
#include "project/project.h"
#include "node/project/project.h"
#include "rendermanager.h"
namespace olive {
+1 -1
View File
@@ -6,7 +6,7 @@
#include "codec/decoder.h"
#include "common/rational.h"
#include "project/item/footage/footage.h"
#include "node/project/footage/footage.h"
#include "render/texture.h"
namespace olive {
+1 -1
View File
@@ -21,7 +21,7 @@
#ifndef CONFORMTASK_H
#define CONFORMTASK_H
#include "project/item/footage/footage.h"
#include "node/project/footage/footage.h"
#include "render/audioparams.h"
#include "task/task.h"
+1 -1
View File
@@ -21,7 +21,7 @@
#include "export.h"
#include "common/timecodefunctions.h"
#include "render/colormanager.h"
#include "node/color/colormanager/colormanager.h"
namespace olive {
+1 -1
View File
@@ -20,7 +20,7 @@
#include "precachetask.h"
#include "project/project.h"
#include "node/project/project.h"
namespace olive {
+2 -2
View File
@@ -21,8 +21,8 @@
#ifndef PRECACHETASK_H
#define PRECACHETASK_H
#include "project/item/footage/footage.h"
#include "project/item/sequence/sequence.h"
#include "node/project/footage/footage.h"
#include "node/project/sequence/sequence.h"
#include "task/render/render.h"
namespace olive {
+1 -1
View File
@@ -25,7 +25,7 @@
#include "config/config.h"
#include "core.h"
#include "project/item/footage/footage.h"
#include "node/project/footage/footage.h"
#include "widget/nodeview/nodeviewundo.h"
namespace olive {
+1 -1
View File
@@ -25,7 +25,7 @@
#include <QUndoCommand>
#include "codec/decoder.h"
#include "project/projectviewmodel.h"
#include "node/project/projectviewmodel.h"
#include "task/task.h"
namespace olive {
+1 -1
View File
@@ -21,7 +21,7 @@
#ifndef PROJECTLOADBASETASK_H
#define PROJECTLOADBASETASK_H
#include "project/project.h"
#include "node/project/project.h"
#include "task/task.h"
namespace olive {
+3 -3
View File
@@ -31,9 +31,9 @@
#include "node/block/clip/clip.h"
#include "node/block/gap/gap.h"
#include "project/item/folder/folder.h"
#include "project/item/footage/footage.h"
#include "project/item/sequence/sequence.h"
#include "node/project/folder/folder.h"
#include "node/project/footage/footage.h"
#include "node/project/sequence/sequence.h"
#include "widget/timelinewidget/timelineundo.h"
#define OTIO opentimelineio::v1_0
+1 -1
View File
@@ -23,7 +23,7 @@
#ifdef USE_OTIO
#include "project/project.h"
#include "node/project/project.h"
#include "task/project/load/loadbasetask.h"
namespace olive {
+1 -1
View File
@@ -21,7 +21,7 @@
#ifndef PROJECTSAVEMANAGER_H
#define PROJECTSAVEMANAGER_H
#include "project/project.h"
#include "node/project/project.h"
#include "task/task.h"
namespace olive {
+1 -1
View File
@@ -29,7 +29,7 @@
#include <opentimelineio/transition.h>
#include "node/block/transition/transition.h"
#include "project/item/footage/footage.h"
#include "node/project/footage/footage.h"
namespace olive {
+1 -1
View File
@@ -26,7 +26,7 @@
#include <opentimelineio/timeline.h>
#include <opentimelineio/track.h>
#include "project/project.h"
#include "node/project/project.h"
#include "task/task.h"
namespace olive {
+1 -1
View File
@@ -23,8 +23,8 @@
#include <QtConcurrent/QtConcurrent>
#include "node/color/colormanager/colormanager.h"
#include "node/output/viewer/viewer.h"
#include "render/colormanager.h"
#include "task/task.h"
#include "threading/threadticket.h"
#include "threading/threadticketwatcher.h"
+1 -1
View File
@@ -23,7 +23,7 @@
#include <QPushButton>
#include "render/colormanager.h"
#include "node/color/colormanager/colormanager.h"
#include "render/managedcolor.h"
namespace olive {
+1 -1
View File
@@ -24,7 +24,7 @@
#include <QComboBox>
#include <QGroupBox>
#include "render/colormanager.h"
#include "node/color/colormanager/colormanager.h"
namespace olive {
+1 -1
View File
@@ -24,8 +24,8 @@
#include <QWidget>
#include "colorpreviewbox.h"
#include "node/color/colormanager/colormanager.h"
#include "render/color.h"
#include "render/colormanager.h"
#include "widget/slider/floatslider.h"
namespace olive {
+1 -1
View File
@@ -21,7 +21,7 @@
#include "keyframeviewundo.h"
#include "node/node.h"
#include "project/item/sequence/sequence.h"
#include "node/project/sequence/sequence.h"
namespace olive {
+1 -1
View File
@@ -25,7 +25,7 @@
#include <QOpenGLContext>
#include <QOpenGLWidget>
#include "render/colormanager.h"
#include "node/color/colormanager/colormanager.h"
#include "render/renderer.h"
#include "widget/menu/menu.h"
@@ -27,8 +27,8 @@
#include "common/qtutils.h"
#include "core.h"
#include "node/project/sequence/sequence.h"
#include "nodeparamviewundo.h"
#include "project/item/sequence/sequence.h"
namespace olive {
@@ -21,7 +21,7 @@
#include "nodeparamviewundo.h"
#include "node/node.h"
#include "project/item/sequence/sequence.h"
#include "node/project/sequence/sequence.h"
namespace olive {
@@ -28,10 +28,10 @@
#include "core.h"
#include "node/node.h"
#include "node/project/sequence/sequence.h"
#include "nodeparamviewarraywidget.h"
#include "nodeparamviewrichtext.h"
#include "nodeparamviewundo.h"
#include "project/item/sequence/sequence.h"
#include "undo/undostack.h"
#include "widget/colorbutton/colorbutton.h"
#include "widget/filefield/filefield.h"

Some files were not shown because too many files have changed in this diff Show More