Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
a15751bb
Commit
a15751bb
authored
Sep 20, 2012
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: profiles_selector: change/simplify widgets reset/selection behavior
parent
43084cb6
Changes
3
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
433 additions
and
361 deletions
+433
-361
modules/gui/qt4/components/sout/profile_selector.cpp
modules/gui/qt4/components/sout/profile_selector.cpp
+34
-46
modules/gui/qt4/components/sout/profile_selector.hpp
modules/gui/qt4/components/sout/profile_selector.hpp
+2
-3
modules/gui/qt4/ui/profiles.ui
modules/gui/qt4/ui/profiles.ui
+397
-312
No files found.
modules/gui/qt4/components/sout/profile_selector.cpp
View file @
a15751bb
...
@@ -75,7 +75,6 @@ VLCProfileSelector::VLCProfileSelector( QWidget *_parent ): QWidget( _parent )
...
@@ -75,7 +75,6 @@ VLCProfileSelector::VLCProfileSelector( QWidget *_parent ): QWidget( _parent )
CONNECT
(
profileBox
,
activated
(
int
),
CONNECT
(
profileBox
,
activated
(
int
),
this
,
updateOptions
(
int
)
);
this
,
updateOptions
(
int
)
);
updateOptions
(
0
);
updateOptions
(
0
);
}
}
...
@@ -385,15 +384,6 @@ VLCProfileEditor::VLCProfileEditor( const QString& qs_name, const QString& value
...
@@ -385,15 +384,6 @@ VLCProfileEditor::VLCProfileEditor( const QString& qs_name, const QString& value
}
}
loadCapabilities
();
loadCapabilities
();
registerCodecs
();
registerCodecs
();
CONNECT
(
ui
.
valueholder_video_enable
,
toggled
(
bool
),
this
,
setVTranscodeOptions
(
bool
)
);
CONNECT
(
ui
.
valueholder_audio_enable
,
toggled
(
bool
),
this
,
setATranscodeOptions
(
bool
)
);
CONNECT
(
ui
.
valueholder_subtitles_enable
,
toggled
(
bool
),
this
,
setSTranscodeOptions
(
bool
)
);
setVTranscodeOptions
(
false
);
setATranscodeOptions
(
false
);
setSTranscodeOptions
(
false
);
QPushButton
*
saveButton
=
new
QPushButton
(
QPushButton
*
saveButton
=
new
QPushButton
(
(
qs_name
.
isEmpty
()
)
?
qtr
(
"Create"
)
:
qtr
(
"Save"
)
);
(
qs_name
.
isEmpty
()
)
?
qtr
(
"Create"
)
:
qtr
(
"Save"
)
);
...
@@ -403,6 +393,12 @@ VLCProfileEditor::VLCProfileEditor( const QString& qs_name, const QString& value
...
@@ -403,6 +393,12 @@ VLCProfileEditor::VLCProfileEditor( const QString& qs_name, const QString& value
ui
.
buttonBox
->
addButton
(
cancelButton
,
QDialogButtonBox
::
RejectRole
);
ui
.
buttonBox
->
addButton
(
cancelButton
,
QDialogButtonBox
::
RejectRole
);
BUTTONACT
(
cancelButton
,
reject
()
);
BUTTONACT
(
cancelButton
,
reject
()
);
CONNECT
(
ui
.
valueholder_video_copy
,
stateChanged
(
int
),
this
,
activatePanels
()
);
CONNECT
(
ui
.
valueholder_audio_copy
,
stateChanged
(
int
),
this
,
activatePanels
()
);
reset
();
fillProfile
(
value
);
fillProfile
(
value
);
muxSelected
();
muxSelected
();
}
}
...
@@ -570,6 +566,11 @@ void VLCProfileEditor::fillProfile( const QString& qs )
...
@@ -570,6 +566,11 @@ void VLCProfileEditor::fillProfile( const QString& qs )
QCheckBox
*
box
=
qobject_cast
<
QCheckBox
*>
(
object
);
QCheckBox
*
box
=
qobject_cast
<
QCheckBox
*>
(
object
);
box
->
setChecked
(
!
value
.
isEmpty
()
);
box
->
setChecked
(
!
value
.
isEmpty
()
);
}
}
else
if
(
object
->
inherits
(
"QGroupBox"
)
)
{
QGroupBox
*
box
=
qobject_cast
<
QGroupBox
*>
(
object
);
box
->
setChecked
(
!
value
.
isEmpty
()
);
}
else
if
(
object
->
inherits
(
"QSpinBox"
)
)
else
if
(
object
->
inherits
(
"QSpinBox"
)
)
{
{
QSpinBox
*
box
=
qobject_cast
<
QSpinBox
*>
(
object
);
QSpinBox
*
box
=
qobject_cast
<
QSpinBox
*>
(
object
);
...
@@ -636,42 +637,6 @@ void VLCProfileEditor::fillProfileOldFormat( const QString& qs )
...
@@ -636,42 +637,6 @@ void VLCProfileEditor::fillProfileOldFormat( const QString& qs )
ui
.
valueholder_subtitles_overlay
->
setChecked
(
options
[
15
].
toInt
()
);
ui
.
valueholder_subtitles_overlay
->
setChecked
(
options
[
15
].
toInt
()
);
}
}
void
VLCProfileEditor
::
setVTranscodeOptions
(
bool
b_trans
)
{
ui
.
vCodecLabel
->
setEnabled
(
b_trans
);
ui
.
valueholder_video_codec
->
setEnabled
(
b_trans
);
ui
.
vBitrateLabel
->
setEnabled
(
b_trans
);
ui
.
valueholder_vcodec_bitrate
->
setEnabled
(
b_trans
);
ui
.
vScaleLabel
->
setEnabled
(
b_trans
);
ui
.
valueholder_vcodec_scale
->
setEnabled
(
b_trans
);
ui
.
valueholder_vcodec_height
->
setEnabled
(
b_trans
);
ui
.
heightLabel
->
setEnabled
(
b_trans
);
ui
.
valueholder_vcodec_width
->
setEnabled
(
b_trans
);
ui
.
widthLabel
->
setEnabled
(
b_trans
);
ui
.
valueholder_vcodec_framerate
->
setEnabled
(
b_trans
);
ui
.
vFrameLabel
->
setEnabled
(
b_trans
);
ui
.
valueholder_video_copy
->
setEnabled
(
b_trans
);
}
void
VLCProfileEditor
::
setATranscodeOptions
(
bool
b_trans
)
{
ui
.
aCodecLabel
->
setEnabled
(
b_trans
);
ui
.
valueholder_audio_codec
->
setEnabled
(
b_trans
);
ui
.
aBitrateLabel
->
setEnabled
(
b_trans
);
ui
.
valueholder_acodec_bitrate
->
setEnabled
(
b_trans
);
ui
.
aChannelsLabel
->
setEnabled
(
b_trans
);
ui
.
valueholder_acodec_channels
->
setEnabled
(
b_trans
);
ui
.
aSampleLabel
->
setEnabled
(
b_trans
);
ui
.
valueholder_acodec_samplerate
->
setEnabled
(
b_trans
);
ui
.
valueholder_audio_copy
->
setEnabled
(
b_trans
);
}
void
VLCProfileEditor
::
setSTranscodeOptions
(
bool
b_trans
)
{
ui
.
valueholder_subtitles_codec
->
setEnabled
(
b_trans
);
ui
.
valueholder_subtitles_overlay
->
setEnabled
(
b_trans
);
}
void
VLCProfileEditor
::
close
()
void
VLCProfileEditor
::
close
()
{
{
if
(
ui
.
profileLine
->
text
().
isEmpty
()
)
if
(
ui
.
profileLine
->
text
().
isEmpty
()
)
...
@@ -717,6 +682,11 @@ QString VLCProfileEditor::transcodeValue()
...
@@ -717,6 +682,11 @@ QString VLCProfileEditor::transcodeValue()
const
QCheckBox
*
box
=
qobject_cast
<
const
QCheckBox
*>
(
object
);
const
QCheckBox
*
box
=
qobject_cast
<
const
QCheckBox
*>
(
object
);
value
=
box
->
isChecked
()
?
"yes"
:
""
;
value
=
box
->
isChecked
()
?
"yes"
:
""
;
}
}
else
if
(
object
->
inherits
(
"QGroupBox"
)
)
{
const
QGroupBox
*
box
=
qobject_cast
<
const
QGroupBox
*>
(
object
);
value
=
box
->
isChecked
()
?
"yes"
:
""
;
}
else
if
(
object
->
inherits
(
"QSpinBox"
)
)
else
if
(
object
->
inherits
(
"QSpinBox"
)
)
{
{
const
QSpinBox
*
box
=
qobject_cast
<
const
QSpinBox
*>
(
object
);
const
QSpinBox
*
box
=
qobject_cast
<
const
QSpinBox
*>
(
object
);
...
@@ -741,6 +711,24 @@ QString VLCProfileEditor::transcodeValue()
...
@@ -741,6 +711,24 @@ QString VLCProfileEditor::transcodeValue()
return
configuration
.
join
(
";"
);
return
configuration
.
join
(
";"
);
}
}
void
VLCProfileEditor
::
reset
()
{
/* reset to default state as we can only check/enable existing values */
ui
.
valueholder_video_copy
->
setChecked
(
false
);
ui
.
valueholder_audio_copy
->
setChecked
(
false
);
activatePanels
();
/* end with top level ones for cascaded setEnabled() */
ui
.
valueholder_video_enable
->
setChecked
(
false
);
ui
.
valueholder_audio_enable
->
setChecked
(
false
);
ui
.
valueholder_subtitles_enable
->
setChecked
(
false
);
}
void
VLCProfileEditor
::
activatePanels
()
{
ui
.
transcodevideo
->
setEnabled
(
!
ui
.
valueholder_video_copy
->
isChecked
()
);
ui
.
transcodeaudio
->
setEnabled
(
!
ui
.
valueholder_audio_copy
->
isChecked
()
);
}
#undef CATPROP2NAME
#undef CATPROP2NAME
#undef CATANDPROP
#undef CATANDPROP
#undef OLDFORMAT
#undef OLDFORMAT
modules/gui/qt4/components/sout/profile_selector.hpp
View file @
a15751bb
...
@@ -78,13 +78,12 @@ private:
...
@@ -78,13 +78,12 @@ private:
typedef
QSet
<
QString
>
resultset
;
typedef
QSet
<
QString
>
resultset
;
QHash
<
QString
,
resultset
>
caps
;
QHash
<
QString
,
resultset
>
caps
;
void
loadCapabilities
();
void
loadCapabilities
();
void
reset
();
protected
slots
:
protected
slots
:
virtual
void
close
();
virtual
void
close
();
private
slots
:
private
slots
:
void
setVTranscodeOptions
(
bool
);
void
setATranscodeOptions
(
bool
);
void
setSTranscodeOptions
(
bool
);
void
muxSelected
();
void
muxSelected
();
void
activatePanels
();
};
};
#endif
#endif
modules/gui/qt4/ui/profiles.ui
View file @
a15751bb
This diff is collapsed.
Click to expand it.
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