Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
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
videolan
vlc-gpu
Commits
6232433c
Commit
6232433c
authored
Sep 03, 2010
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt4: put gradfun in the UI
parent
2152eabc
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
67 additions
and
24 deletions
+67
-24
modules/gui/qt4/components/extended_panels.cpp
modules/gui/qt4/components/extended_panels.cpp
+3
-0
modules/gui/qt4/ui/video_effects.ui
modules/gui/qt4/ui/video_effects.ui
+64
-24
No files found.
modules/gui/qt4/components/extended_panels.cpp
View file @
6232433c
...
...
@@ -208,6 +208,9 @@ ExtVideo::ExtVideo( intf_thread_t *_p_intf, QTabWidget *_parent ) :
SETUP_VFILTER_OPTION
(
logoXSpin
,
valueChanged
(
int
)
)
SETUP_VFILTER_OPTION
(
logoOpacitySlider
,
valueChanged
(
int
)
)
SETUP_VFILTER
(
gradfun
)
SETUP_VFILTER_OPTION
(
gradfunRadiusSlider
,
valueChanged
(
int
)
)
if
(
module_exists
(
"atmo"
)
)
{
SETUP_VFILTER
(
atmo
)
...
...
modules/gui/qt4/ui/video_effects.ui
View file @
6232433c
...
...
@@ -18,24 +18,6 @@
<string>
Basic
</string>
</attribute>
<layout
class=
"QGridLayout"
>
<item
row=
"1"
column=
"1"
>
<widget
class=
"QGroupBox"
name=
"transformEnable"
>
<property
name=
"title"
>
<string>
Transform
</string>
</property>
<property
name=
"checkable"
>
<bool>
true
</bool>
</property>
<property
name=
"checked"
>
<bool>
false
</bool>
</property>
<layout
class=
"QGridLayout"
>
<item
row=
"0"
column=
"0"
>
<widget
class=
"QComboBox"
name=
"transformTypeCombo"
/>
</item>
</layout>
</widget>
</item>
<item
row=
"0"
column=
"1"
>
<widget
class=
"QGroupBox"
name=
"sharpenEnable"
>
<property
name=
"title"
>
...
...
@@ -60,9 +42,6 @@
<property
name=
"maximum"
>
<number>
200
</number>
</property>
<property
name=
"singleStep"
>
<number>
1
</number>
</property>
<property
name=
"pageStep"
>
<number>
10
</number>
</property>
...
...
@@ -70,7 +49,7 @@
<enum>
Qt::Horizontal
</enum>
</property>
<property
name=
"tickPosition"
>
<enum>
QSlider::TicksB
othSides
</enum>
<enum>
QSlider::TicksB
elow
</enum>
</property>
<property
name=
"tickInterval"
>
<number>
100
</number>
...
...
@@ -80,7 +59,7 @@
</layout>
</widget>
</item>
<item
row=
"0"
column=
"0"
rowspan=
"
2
"
>
<item
row=
"0"
column=
"0"
rowspan=
"
3
"
>
<widget
class=
"QGroupBox"
name=
"adjustEnable"
>
<property
name=
"enabled"
>
<bool>
true
</bool>
...
...
@@ -223,6 +202,68 @@
</layout>
</widget>
</item>
<item
row=
"2"
column=
"1"
>
<widget
class=
"QGroupBox"
name=
"transformEnable"
>
<property
name=
"title"
>
<string>
Transform
</string>
</property>
<property
name=
"checkable"
>
<bool>
true
</bool>
</property>
<property
name=
"checked"
>
<bool>
false
</bool>
</property>
<layout
class=
"QGridLayout"
>
<item
row=
"0"
column=
"0"
>
<widget
class=
"QComboBox"
name=
"transformTypeCombo"
/>
</item>
</layout>
</widget>
</item>
<item
row=
"1"
column=
"1"
>
<widget
class=
"QGroupBox"
name=
"gradfunEnable"
>
<property
name=
"title"
>
<string>
Gradient
</string>
</property>
<property
name=
"checkable"
>
<bool>
true
</bool>
</property>
<property
name=
"checked"
>
<bool>
false
</bool>
</property>
<layout
class=
"QGridLayout"
name=
"gridLayout_2"
>
<item
row=
"0"
column=
"0"
>
<widget
class=
"QLabel"
name=
"label_32"
>
<property
name=
"text"
>
<string>
Radius
</string>
</property>
</widget>
</item>
<item
row=
"0"
column=
"1"
>
<widget
class=
"QSlider"
name=
"gradfunRadiusSlider"
>
<property
name=
"minimum"
>
<number>
4
</number>
</property>
<property
name=
"maximum"
>
<number>
32
</number>
</property>
<property
name=
"pageStep"
>
<number>
4
</number>
</property>
<property
name=
"orientation"
>
<enum>
Qt::Horizontal
</enum>
</property>
<property
name=
"tickPosition"
>
<enum>
QSlider::TicksBelow
</enum>
</property>
<property
name=
"tickInterval"
>
<number>
4
</number>
</property>
</widget>
</item>
</layout>
</widget>
</item>
</layout>
</widget>
<widget
class=
"QWidget"
name=
"tab_3"
>
...
...
@@ -1392,7 +1433,6 @@
<tabstop>
contrastSlider
</tabstop>
<tabstop>
hueSlider
</tabstop>
<tabstop>
adjustEnable
</tabstop>
<tabstop>
transformEnable
</tabstop>
<tabstop>
brightnessThresholdCheck
</tabstop>
<tabstop>
gammaSlider
</tabstop>
<tabstop>
sharpenSigmaSlider
</tabstop>
...
...
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