Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
kdenlive
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Scott Petrovic
kdenlive
Commits
81789d38
Commit
81789d38
authored
Jun 16, 2016
by
Jean-Baptiste Mardelle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleanup: remove unused Plotting frameworks
parent
a8f6fe51
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1 addition
and
14 deletions
+1
-14
CMakeLists.txt
CMakeLists.txt
+1
-1
src/CMakeLists.txt
src/CMakeLists.txt
+0
-1
src/effectstack/CMakeLists.txt
src/effectstack/CMakeLists.txt
+0
-2
src/effectstack/parametercontainer.cpp
src/effectstack/parametercontainer.cpp
+0
-10
No files found.
CMakeLists.txt
View file @
81789d38
...
...
@@ -76,7 +76,7 @@ find_package(Qt5 REQUIRED COMPONENTS Core DBus Widgets Script Svg Quick )
find_package
(
Qt5 OPTIONAL_COMPONENTS WebKitWidgets QUIET
)
find_package
(
KF5 REQUIRED COMPONENTS Archive Bookmarks CoreAddons Config ConfigWidgets
DBusAddons KIO WidgetsAddons
Plotting
NotifyConfig NewStuff XmlGui Notifications GuiAddons TextWidgets IconThemes DocTools Crash OPTIONAL_COMPONENTS FileMetaData
)
DBusAddons KIO WidgetsAddons NotifyConfig NewStuff XmlGui Notifications GuiAddons TextWidgets IconThemes DocTools Crash OPTIONAL_COMPONENTS FileMetaData
)
if
(
KF5FileMetaData_FOUND
)
message
(
STATUS
"Found KF5 FileMetadata to extract file metadata"
)
...
...
src/CMakeLists.txt
View file @
81789d38
...
...
@@ -248,7 +248,6 @@ include_directories(
target_link_libraries
(
kdenlive
KF5::WidgetsAddons
KF5::Plotting
KF5::Archive
KF5::CoreAddons
KF5::KIOCore
...
...
src/effectstack/CMakeLists.txt
View file @
81789d38
...
...
@@ -4,7 +4,6 @@ set(kdenlive_SRCS
effectstack/abstractcollapsiblewidget.cpp
effectstack/collapsibleeffect.cpp
effectstack/collapsiblegroup.cpp
effectstack/complexparameter.cpp
effectstack/dragvalue.cpp
effectstack/effectstackedit.cpp
effectstack/effectstackview2.cpp
...
...
@@ -14,7 +13,6 @@ set(kdenlive_SRCS
effectstack/keyframehelper.cpp
effectstack/animkeyframeruler.cpp
effectstack/parametercontainer.cpp
effectstack/parameterplotter.cpp
effectstack/positionedit.cpp
effectstack/widgets/animationwidget.cpp
effectstack/widgets/choosecolorwidget.cpp
...
...
src/effectstack/parametercontainer.cpp
View file @
81789d38
...
...
@@ -19,7 +19,6 @@
#include "parametercontainer.h"
#include "complexparameter.h"
#include "geometryval.h"
#include "positionedit.h"
#include "dragvalue.h"
...
...
@@ -364,12 +363,6 @@ ParameterContainer::ParameterContainer(const QDomElement &effect, const ItemInfo
m_conditionalWidgets
<<
m_animationWidget
;
}
}
}
else
if
(
type
==
QLatin1String
(
"complex"
))
{
ComplexParameter
*
pl
=
new
ComplexParameter
;
pl
->
setupParam
(
effect
,
pa
.
attribute
(
QStringLiteral
(
"name"
)),
0
,
100
);
m_vbox
->
addWidget
(
pl
);
m_valueItems
[
paramName
+
"complex"
]
=
pl
;
connect
(
pl
,
SIGNAL
(
parameterChanged
()),
this
,
SLOT
(
slotCollectAllParameters
()));
}
else
if
(
type
==
QLatin1String
(
"geometry"
))
{
m_acceptDrops
=
true
;
if
(
true
)
{
...
...
@@ -1000,9 +993,6 @@ void ParameterContainer::slotCollectAllParameters()
ChooseColorWidget
*
choosecolor
=
static_cast
<
ChooseColorWidget
*>
(
m_valueItems
.
value
(
paramName
));
if
(
choosecolor
)
setValue
=
choosecolor
->
getColor
();
if
(
pa
.
hasAttribute
(
QStringLiteral
(
"paramprefix"
)))
setValue
.
prepend
(
pa
.
attribute
(
QStringLiteral
(
"paramprefix"
)));
}
else
if
(
type
==
QLatin1String
(
"complex"
))
{
ComplexParameter
*
complex
=
static_cast
<
ComplexParameter
*>
(
m_valueItems
.
value
(
paramName
));
if
(
complex
)
namenode
.
item
(
i
)
=
complex
->
getParamDesc
();
}
else
if
(
type
==
QLatin1String
(
"geometry"
))
{
if
(
m_geometryWidget
)
namenode
.
item
(
i
).
toElement
().
setAttribute
(
QStringLiteral
(
"value"
),
m_geometryWidget
->
getValue
());
}
else
if
(
type
==
QLatin1String
(
"addedgeometry"
))
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment