created curve editor panel
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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
|
||||
)
|
||||
@@ -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"));
|
||||
}
|
||||
@@ -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
|
||||
@@ -0,0 +1,6 @@
|
||||
#include "curveview.h"
|
||||
|
||||
CurveView::CurveView()
|
||||
{
|
||||
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
#ifndef CURVEVIEW_H
|
||||
#define CURVEVIEW_H
|
||||
|
||||
|
||||
class CurveView
|
||||
{
|
||||
public:
|
||||
CurveView();
|
||||
};
|
||||
|
||||
#endif // CURVEVIEW_H
|
||||
@@ -0,0 +1,6 @@
|
||||
#include "curveview.h"
|
||||
|
||||
CurveView::CurveView()
|
||||
{
|
||||
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
#ifndef CURVEVIEW_H
|
||||
#define CURVEVIEW_H
|
||||
|
||||
|
||||
class CurveView
|
||||
{
|
||||
public:
|
||||
CurveView();
|
||||
};
|
||||
|
||||
#endif // CURVEVIEW_H
|
||||
Reference in New Issue
Block a user