created curve editor panel

This commit is contained in:
itsmattkc
2019-12-28 00:26:42 +11:00
parent bbef9badc7
commit 3c9b16555f
8 changed files with 100 additions and 0 deletions
+1
View File
@@ -15,6 +15,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
add_subdirectory(audiomonitor)
add_subdirectory(curve)
add_subdirectory(node)
add_subdirectory(param)
add_subdirectory(project)
+22
View File
@@ -0,0 +1,22 @@
# Olive - Non-Linear Video Editor
# Copyright (C) 2019 Olive Team
#
# 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 3 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. If not, see <http://www.gnu.org/licenses/>.
set(OLIVE_SOURCES
${OLIVE_SOURCES}
panel/curve/curve.h
panel/curve/curve.cpp
PARENT_SCOPE
)
+24
View File
@@ -0,0 +1,24 @@
#include "curve.h"
CurvePanel::CurvePanel(QWidget *parent) :
PanelWidget(parent)
{
// FIXME: This won't work if there's ever more than one of this panel
setObjectName("CurvePanel");
// Set strings
Retranslate();
}
void CurvePanel::changeEvent(QEvent *e)
{
if (e->type() == QEvent::LanguageChange) {
Retranslate();
}
PanelWidget::changeEvent(e);
}
void CurvePanel::Retranslate()
{
SetTitle(tr("Curve Editor"));
}
+19
View File
@@ -0,0 +1,19 @@
#ifndef CURVEPANEL_H
#define CURVEPANEL_H
#include "widget/panel/panel.h"
class CurvePanel : public PanelWidget
{
public:
CurvePanel(QWidget* parent);
protected:
virtual void changeEvent(QEvent* e) override;
private:
void Retranslate();
};
#endif // CURVEPANEL_H
+6
View File
@@ -0,0 +1,6 @@
#include "curveview.h"
CurveView::CurveView()
{
}
+11
View File
@@ -0,0 +1,11 @@
#ifndef CURVEVIEW_H
#define CURVEVIEW_H
class CurveView
{
public:
CurveView();
};
#endif // CURVEVIEW_H
+6
View File
@@ -0,0 +1,6 @@
#include "curveview.h"
CurveView::CurveView()
{
}
+11
View File
@@ -0,0 +1,11 @@
#ifndef CURVEVIEW_H
#define CURVEVIEW_H
class CurveView
{
public:
CurveView();
};
#endif // CURVEVIEW_H