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
fdbec554
Commit
fdbec554
authored
Mar 04, 2006
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix ordering of widgets in sout panel (Closes:#469)
parent
d3e8be3f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
10 deletions
+13
-10
modules/gui/wxwidgets/dialogs/streamout.cpp
modules/gui/wxwidgets/dialogs/streamout.cpp
+13
-10
No files found.
modules/gui/wxwidgets/dialogs/streamout.cpp
View file @
fdbec554
...
...
@@ -179,12 +179,12 @@ SoutDialog::SoutDialog( intf_thread_t *_p_intf, wxWindow* _p_parent ):
mrl_sizer
->
Add
(
mrl_combo
,
1
,
wxALL
|
wxALIGN_CENTER
,
5
);
mrl_sizer_sizer
->
Add
(
mrl_sizer
,
1
,
wxEXPAND
|
wxALL
,
5
);
/* Create the output encapsulation panel */
encapsulation_panel
=
EncapsulationPanel
(
panel
);
/* Create the access output panel */
access_panel
=
AccessPanel
(
panel
);
/* Create the output encapsulation panel */
encapsulation_panel
=
EncapsulationPanel
(
panel
);
/* Create the transcoding panel */
transcoding_panel
=
TranscodingPanel
(
panel
);
...
...
@@ -602,10 +602,15 @@ wxPanel *SoutDialog::MiscPanel( wxWindow* parent )
wxT
(
""
),
wxDefaultPosition
,
wxSize
(
100
,
-
1
),
wxTE_PROCESS_ENTER
);
wxStaticText
*
ttl_label
=
new
wxStaticText
(
misc_subpanels
[
TTL_MISC_SOUT
],
-
1
,
wxU
(
_
(
"Time-To-Live (TTL)"
))
);
ttl_spin
=
new
wxSpinCtrl
(
misc_subpanels
[
TTL_MISC_SOUT
],
-
1
,
wxEmptyString
,
wxDefaultPosition
,
wxDefaultSize
,
0
,
1
,
255
,
config_GetInt
(
p_intf
,
"ttl"
)
);
sout_all_checkbox
=
new
wxCheckBox
(
misc_subpanels
[
TTL_MISC_SOUT
],
SoutAll_Event
,
wxU
(
_
(
"Select all elementary streams"
))
);
wxStaticText
*
ttl_label
=
new
wxStaticText
(
misc_subpanels
[
TTL_MISC_SOUT
],
-
1
,
wxU
(
_
(
"Time-To-Live (TTL)"
))
);
ttl_spin
=
new
wxSpinCtrl
(
misc_subpanels
[
TTL_MISC_SOUT
],
-
1
,
wxEmptyString
,
wxDefaultPosition
,
wxDefaultSize
,
0
,
1
,
255
,
config_GetInt
(
p_intf
,
"ttl"
)
);
subpanel_sizer
->
Add
(
sap_checkbox
,
0
,
wxALIGN_RIGHT
|
wxALIGN_CENTER_VERTICAL
);
...
...
@@ -620,9 +625,7 @@ wxPanel *SoutDialog::MiscPanel( wxWindow* parent )
subpanel_sizer
->
Add
(
subpanel_sub_sizer
,
1
,
wxEXPAND
|
wxALIGN_LEFT
|
wxALIGN_CENTER_VERTICAL
);
sout_all_checkbox
=
new
wxCheckBox
(
misc_subpanels
[
TTL_MISC_SOUT
],
SoutAll_Event
,
wxU
(
_
(
"Select all elementary streams"
))
);
subpanel2_sizer
->
Add
(
sout_all_checkbox
,
1
,
subpanel2_sizer
->
Add
(
sout_all_checkbox
,
1
,
wxALIGN_LEFT
|
wxALIGN_CENTER_VERTICAL
|
wxLEFT
,
5
);
subpanel2_sizer
->
Add
(
ttl_label
,
0
,
wxALIGN_RIGHT
|
wxALIGN_CENTER_VERTICAL
);
subpanel2_sizer
->
Add
(
ttl_spin
,
0
,
wxALIGN_RIGHT
|
wxALIGN_CENTER_VERTICAL
);
...
...
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