Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
f1e2a206
Commit
f1e2a206
authored
Mar 20, 2006
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mosaic wizard: change layout & make VLM command batch display optional.
parent
e591f8ca
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
3 deletions
+12
-3
share/http/dialogs/mosaic
share/http/dialogs/mosaic
+11
-3
share/http/js/functions.js
share/http/js/functions.js
+1
-0
No files found.
share/http/dialogs/mosaic
View file @
f1e2a206
...
...
@@ -27,7 +27,7 @@ This dialog needs the following dialogs to be fully functional: input and
sout.
<vlc
id=
"end"
/>
<div
id=
"mosaic"
class=
"dialog"
style=
"overflow:visible;"
>
<div
id=
"mosaic"
class=
"dialog"
>
<div
class=
"title"
>
VLC media player - Mosaic wizard
<button
id=
"btn_toggle_text"
onclick=
"toggle_btn_text();"
>
...
...
@@ -97,12 +97,20 @@ sout.
<div
class=
"controls"
>
Click on each of the cells to assign inputs. (
<a
href=
"javascript:document.getElementById('mosaic_list').value='';show('mosaic_list');"
>
Show input list
</a>
)
</div>
<div
id=
"mosaic_layout"
class=
"mosaic_bg"
></div>
</div>
<div
id=
"mosaic_layout"
class=
"mosaic_bg"
></div>
<div
class=
"dialog"
style=
"overflow:visible;"
>
<div
class=
"controls"
>
<input
type=
"button"
value=
"Let's go!"
onclick=
"mosaic_batch(document.getElementById('mosaic_code').value);"
/>
<input
type=
"button"
value=
"Stop"
onclick=
"mosaic_stop()"
/>
<input
type=
"button"
id=
"mosaic_code_show"
value=
"Show VLM code"
onclick=
"show('mosaic_code_div');hide('mosaic_code_show');showinline('mosaic_code_hide');"
/>
<input
type=
"button"
id=
"mosaic_code_hide"
style=
"display:none"
value=
"Hide VLM code"
onclick=
"hide('mosaic_code_div');hide('mosaic_code_hide');showinline('mosaic_code_show');"
/>
<br/><br/>
Edit the following VLM command batch if you want to fine tune your mosaic settings:
</div>
<div
id=
"mosaic_code_div"
style=
"display:none;"
>
Edit the following VLM command batch if you want to fine tune your mosaic settings:
<textarea
id=
"mosaic_code"
cols=
"80"
rows=
"30"
></textarea>
</div>
</div>
share/http/js/functions.js
View file @
f1e2a206
...
...
@@ -197,6 +197,7 @@ function toggle_show_node( id )
}
function
show
(
id
){
document
.
getElementById
(
id
).
style
.
display
=
'
block
'
;
}
function
showinline
(
id
){
document
.
getElementById
(
id
).
style
.
display
=
'
inline
'
;
}
function
hide
(
id
){
document
.
getElementById
(
id
).
style
.
display
=
'
none
'
;
}
...
...
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