Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
442
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
af2b9b2c
Commit
af2b9b2c
authored
17 years ago
by
Jean-Baptiste Kempf
Browse files
Options
Downloads
Patches
Plain Diff
Update the list of objects after a VLM import. Patch By Jean-François Massol, slightly modified.
parent
786adcfe
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
modules/gui/qt4/dialogs/vlm.cpp
+72
-3
72 additions, 3 deletions
modules/gui/qt4/dialogs/vlm.cpp
modules/gui/qt4/dialogs/vlm.hpp
+1
-0
1 addition, 0 deletions
modules/gui/qt4/dialogs/vlm.hpp
with
73 additions
and
3 deletions
modules/gui/qt4/dialogs/vlm.cpp
+
72
−
3
View file @
af2b9b2c
...
...
@@ -162,11 +162,15 @@ VLMDialog::VLMDialog( QWidget *parent, intf_thread_t *_p_intf ) : QVLCDialog( pa
VLMDialog
::~
VLMDialog
()
{
msg_Dbg
(
p_intf
,
"Destroying VLM Dialog"
);
delete
vlmWrapper
;
/* FIXME :you have to destroy vlm here to close
* but we shouldn't destroy vlm here in case somebody else wants it */
msg_Dbg
(
p_intf
,
"Destroying VLM Dialog"
);
if
(
p_vlm
)
{
vlm_Delete
(
p_vlm
);
}
}
void
VLMDialog
::
showScheduleWidget
(
int
i
)
...
...
@@ -275,6 +279,57 @@ bool VLMDialog::exportVLMConf()
return
false
;
}
void
VLMDialog
::
mediasPopulator
()
{
if
(
p_vlm
)
{
int
i_nMedias
;
QString
typeShortName
;
int
vlmItemCount
;
vlm_media_t
***
ppp_dsc
=
(
vlm_media_t
***
)
malloc
(
sizeof
(
vlm_media_t
)
);
/* Get medias informations and numbers */
vlm_Control
(
p_vlm
,
VLM_GET_MEDIAS
,
ppp_dsc
,
&
i_nMedias
);
/* Loop on all of them */
for
(
int
i
=
0
;
i
<
i_nMedias
;
i
++
)
{
VLMAWidget
*
vlmAwidget
;
vlmItemCount
=
vlmItems
.
size
();
QString
mediaName
=
qfu
(
(
*
ppp_dsc
)[
i
]
->
psz_name
);
/* It may have several inputs, we take the first one by default
- an evolution will be to manage these inputs in the gui */
QString
inputText
=
qfu
(
(
*
ppp_dsc
)[
i
]
->
ppsz_input
[
0
]
);
QString
outputText
=
qfu
(
(
*
ppp_dsc
)[
i
]
->
psz_output
);
/* Schedule media is a quite especial, maybe there is another way to grab informations */
if
(
(
*
ppp_dsc
)[
i
]
->
b_vod
)
{
typeShortName
=
"VOD"
;
QString
mux
=
qfu
(
(
*
ppp_dsc
)[
i
]
->
vod
.
psz_mux
);
vlmAwidget
=
new
VLMVod
(
mediaName
,
inputText
,
outputText
,
(
*
ppp_dsc
)[
i
]
->
b_enabled
,
mux
,
this
);
}
else
{
typeShortName
=
"Bcast"
;
vlmAwidget
=
new
VLMBroadcast
(
mediaName
,
inputText
,
outputText
,
(
*
ppp_dsc
)[
i
]
->
b_enabled
,
(
*
ppp_dsc
)[
i
]
->
broadcast
.
b_loop
,
this
);
}
/* Add an Item of the Side List */
ui
.
vlmListItem
->
addItem
(
typeShortName
+
" : "
+
mediaName
);
ui
.
vlmListItem
->
setCurrentRow
(
vlmItemCount
-
1
);
/* Add a new VLMAWidget on the main List */
vlmItemLayout
->
insertWidget
(
vlmItemCount
,
vlmAwidget
);
vlmItems
.
append
(
vlmAwidget
);
clearWidgets
();
}
free
(
ppp_dsc
);
}
}
bool
VLMDialog
::
importVLMConf
()
{
...
...
@@ -286,9 +341,19 @@ bool VLMDialog::importVLMConf()
if
(
!
openVLMConfFileName
.
isEmpty
()
)
{
vlm_message_t
*
message
;
int
status
;
QString
command
=
"load
\"
"
+
openVLMConfFileName
+
"
\"
"
;
vlm_ExecuteCommand
(
p_vlm
,
qtu
(
command
)
,
&
message
);
status
=
vlm_ExecuteCommand
(
p_vlm
,
qtu
(
command
)
,
&
message
);
vlm_MessageDelete
(
message
);
if
(
status
==
0
)
{
mediasPopulator
();
}
else
{
msg_Dbg
(
p_intf
,
"Failed to import vlm configuration file : %s"
,
qtu
(
command
)
);
return
false
;
}
return
true
;
}
return
false
;
...
...
@@ -587,7 +652,9 @@ VLMWrapper::VLMWrapper( vlm_t *_p_vlm )
}
VLMWrapper
::~
VLMWrapper
()
{}
{
p_vlm
=
NULL
;
}
void
VLMWrapper
::
AddBroadcast
(
const
QString
name
,
QString
input
,
QString
output
,
...
...
@@ -684,12 +751,14 @@ void VLMWrapper::EditVod( const QString name, const QString input,
QString
command
=
"setup
\"
"
+
name
+
"
\"
input
\"
"
+
input
+
"
\"
"
;
vlm_ExecuteCommand
(
p_vlm
,
qtu
(
command
),
&
message
);
vlm_MessageDelete
(
message
);
if
(
!
output
.
isEmpty
()
)
{
command
=
"setup
\"
"
+
name
+
"
\"
output
\"
"
+
output
+
"
\"
"
;
vlm_ExecuteCommand
(
p_vlm
,
qtu
(
command
),
&
message
);
vlm_MessageDelete
(
message
);
}
if
(
b_enabled
)
{
command
=
"setup
\"
"
+
name
+
"
\"
enabled"
;
...
...
This diff is collapsed.
Click to expand it.
modules/gui/qt4/dialogs/vlm.hpp
+
1
−
0
View file @
af2b9b2c
...
...
@@ -98,6 +98,7 @@ private:
QDateTimeEdit
*
time
,
*
date
,
*
repeatTime
;
QSpinBox
*
scherepeatnumber
,
*
repeatDays
;
bool
isNameGenuine
(
QString
);
void
mediasPopulator
();
public
slots
:
void
removeVLMItem
(
VLMAWidget
*
);
void
startModifyVLMItem
(
VLMAWidget
*
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment