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
c1e1c430
Commit
c1e1c430
authored
Mar 12, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qt_vlm: add some const for the QString.
parent
9f84f025
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
51 additions
and
50 deletions
+51
-50
modules/gui/qt4/dialogs/vlm.cpp
modules/gui/qt4/dialogs/vlm.cpp
+33
-32
modules/gui/qt4/dialogs/vlm.hpp
modules/gui/qt4/dialogs/vlm.hpp
+18
-18
No files found.
modules/gui/qt4/dialogs/vlm.cpp
View file @
c1e1c430
...
...
@@ -186,7 +186,7 @@ void VLMDialog::selectVLMItem( int i )
ui
.
vlmItemScroll
->
ensureWidgetVisible
(
vlmItems
.
at
(
i
)
);
}
bool
VLMDialog
::
isNameGenuine
(
QString
name
)
bool
VLMDialog
::
isNameGenuine
(
const
QString
&
name
)
{
for
(
int
i
=
0
;
i
<
vlmItems
.
size
();
i
++
)
{
...
...
@@ -480,9 +480,9 @@ void VLMDialog::saveModifications()
* VLMAWidget - Abstract class
********************************/
VLMAWidget
::
VLMAWidget
(
QString
_name
,
QString
_input
,
QString
_output
,
VLMAWidget
::
VLMAWidget
(
const
QString
&
_name
,
const
QString
&
_input
,
const
QString
&
_output
,
bool
_enabled
,
VLMDialog
*
_parent
,
int
_type
)
...
...
@@ -538,8 +538,9 @@ void VLMAWidget::toggleEnabled( bool b_enable )
/****************
* VLMBroadcast
****************/
VLMBroadcast
::
VLMBroadcast
(
QString
_name
,
QString
_input
,
QString
_output
,
bool
_enabled
,
bool
_looped
,
VLMDialog
*
_parent
)
VLMBroadcast
::
VLMBroadcast
(
const
QString
&
_name
,
const
QString
&
_input
,
const
QString
&
_output
,
bool
_enabled
,
bool
_looped
,
VLMDialog
*
_parent
)
:
VLMAWidget
(
_name
,
_input
,
_output
,
_enabled
,
_parent
,
QVLM_Broadcast
)
{
...
...
@@ -605,10 +606,10 @@ void VLMBroadcast::stop()
/****************
* VLMSchedule
****************/
VLMSchedule
::
VLMSchedule
(
QString
name
,
QString
input
,
QString
out
put
,
QDateTime
_schetime
,
QDateTime
_schedat
e
,
int
_scherepeatnumber
,
int
_repeatDays
,
bool
enabled
,
VLMDialog
*
parent
)
VLMSchedule
::
VLMSchedule
(
const
QString
&
name
,
const
QString
&
in
put
,
const
QString
&
output
,
QDateTime
_schetim
e
,
QDateTime
_schedate
,
int
_scherepeatnumber
,
int
_repeatDays
,
bool
enabled
,
VLMDialog
*
parent
)
:
VLMAWidget
(
name
,
input
,
output
,
enabled
,
parent
,
QVLM_Schedule
)
{
nameLabel
->
setText
(
qtr
(
"Schedule: "
)
+
name
);
...
...
@@ -629,8 +630,8 @@ void VLMSchedule::update()
/****************
* VLMVOD
****************/
VLMVod
::
VLMVod
(
QString
name
,
QString
input
,
QString
output
,
bool
enabled
,
QString
_mux
,
VLMDialog
*
parent
)
VLMVod
::
VLMVod
(
const
QString
&
name
,
const
QString
&
input
,
const
QString
&
output
,
bool
enabled
,
const
QString
&
_mux
,
VLMDialog
*
parent
)
:
VLMAWidget
(
name
,
input
,
output
,
enabled
,
parent
,
QVLM_VOD
)
{
nameLabel
->
setText
(
qtr
(
"VOD: "
)
+
name
);
...
...
@@ -664,8 +665,8 @@ VLMWrapper::~VLMWrapper()
p_vlm
=
NULL
;
}
void
VLMWrapper
::
AddBroadcast
(
const
QString
name
,
QString
input
,
QString
output
,
void
VLMWrapper
::
AddBroadcast
(
const
QString
&
name
,
const
QString
&
input
,
const
QString
&
output
,
bool
b_enabled
,
bool
b_loop
)
{
vlm_message_t
*
message
;
...
...
@@ -675,8 +676,8 @@ void VLMWrapper::AddBroadcast( const QString name, QString input,
EditBroadcast
(
name
,
input
,
output
,
b_enabled
,
b_loop
);
}
void
VLMWrapper
::
EditBroadcast
(
const
QString
name
,
const
QString
input
,
const
QString
output
,
void
VLMWrapper
::
EditBroadcast
(
const
QString
&
name
,
const
QString
&
input
,
const
QString
&
output
,
bool
b_enabled
,
bool
b_loop
)
{
vlm_message_t
*
message
;
...
...
@@ -708,7 +709,7 @@ void VLMWrapper::EditBroadcast( const QString name, const QString input,
}
}
void
VLMWrapper
::
EnableItem
(
const
QString
name
,
bool
b_enable
)
void
VLMWrapper
::
EnableItem
(
const
QString
&
name
,
bool
b_enable
)
{
vlm_message_t
*
message
;
QString
command
=
"setup
\"
"
+
name
+
(
b_enable
?
" enable"
:
" disable"
);
...
...
@@ -716,7 +717,7 @@ void VLMWrapper::EnableItem( const QString name, bool b_enable )
vlm_MessageDelete
(
message
);
}
void
VLMWrapper
::
ControlBroadcast
(
const
QString
name
,
int
BroadcastStatus
,
void
VLMWrapper
::
ControlBroadcast
(
const
QString
&
name
,
int
BroadcastStatus
,
unsigned
int
seek
)
{
vlm_message_t
*
message
;
...
...
@@ -741,9 +742,9 @@ void VLMWrapper::ControlBroadcast( const QString name, int BroadcastStatus,
vlm_MessageDelete
(
message
);
}
void
VLMWrapper
::
AddVod
(
const
QString
name
,
const
QString
input
,
const
QString
output
,
bool
b_enabled
,
const
QString
mux
)
void
VLMWrapper
::
AddVod
(
const
QString
&
name
,
const
QString
&
input
,
const
QString
&
output
,
bool
b_enabled
,
const
QString
&
mux
)
{
vlm_message_t
*
message
;
QString
command
=
"new
\"
"
+
name
+
"
\"
vod"
;
...
...
@@ -752,10 +753,10 @@ void VLMWrapper::AddVod( const QString name, const QString input,
EditVod
(
name
,
input
,
output
,
b_enabled
,
mux
);
}
void
VLMWrapper
::
EditVod
(
const
QString
name
,
const
QString
input
,
const
QString
output
,
void
VLMWrapper
::
EditVod
(
const
QString
&
name
,
const
QString
&
input
,
const
QString
&
output
,
bool
b_enabled
,
const
QString
mux
)
const
QString
&
mux
)
{
vlm_message_t
*
message
;
QString
command
=
"setup
\"
"
+
name
+
"
\"
input
\"
"
+
input
+
"
\"
"
;
...
...
@@ -783,11 +784,11 @@ void VLMWrapper::EditVod( const QString name, const QString input,
}
}
void
VLMWrapper
::
AddSchedule
(
const
QString
name
,
const
QString
input
,
const
QString
output
,
QDateTime
_schetime
,
void
VLMWrapper
::
AddSchedule
(
const
QString
&
name
,
const
QString
&
input
,
const
QString
&
output
,
QDateTime
_schetime
,
QDateTime
_schedate
,
int
_scherepeatnumber
,
int
_repeatDays
,
bool
b_enabled
,
const
QString
mux
)
bool
b_enabled
,
const
QString
&
mux
)
{
vlm_message_t
*
message
;
QString
command
=
"new
\"
"
+
name
+
"
\"
schedule"
;
...
...
@@ -797,11 +798,11 @@ void VLMWrapper::AddSchedule( const QString name, const QString input,
_scherepeatnumber
,
_repeatDays
,
b_enabled
,
mux
);
}
void
VLMWrapper
::
EditSchedule
(
const
QString
name
,
const
QString
input
,
const
QString
output
,
QDateTime
_schetime
,
void
VLMWrapper
::
EditSchedule
(
const
QString
&
name
,
const
QString
&
input
,
const
QString
&
output
,
QDateTime
_schetime
,
QDateTime
_schedate
,
int
_scherepeatnumber
,
int
_repeatDays
,
bool
b_enabled
,
const
QString
mux
)
const
QString
&
mux
)
{
vlm_message_t
*
message
;
QString
command
=
"setup
\"
"
+
name
+
"
\"
input
\"
"
+
input
+
"
\"
"
;
...
...
modules/gui/qt4/dialogs/vlm.hpp
View file @
c1e1c430
...
...
@@ -96,7 +96,7 @@ private:
QComboBox
*
mediatype
;
QDateTimeEdit
*
time
,
*
date
,
*
repeatTime
;
QSpinBox
*
scherepeatnumber
,
*
repeatDays
;
bool
isNameGenuine
(
QString
);
bool
isNameGenuine
(
const
QString
&
);
void
mediasPopulator
();
public
slots
:
void
removeVLMItem
(
VLMAWidget
*
);
...
...
@@ -119,27 +119,27 @@ public:
VLMWrapper
(
vlm_t
*
);
virtual
~
VLMWrapper
();
static
void
AddBroadcast
(
const
QString
,
const
QString
,
const
QString
,
static
void
AddBroadcast
(
const
QString
&
,
const
QString
&
,
const
QString
&
,
bool
b_enabled
=
true
,
bool
b_loop
=
false
);
static
void
EditBroadcast
(
const
QString
,
const
QString
,
const
QString
,
static
void
EditBroadcast
(
const
QString
&
,
const
QString
&
,
const
QString
&
,
bool
b_enabled
=
true
,
bool
b_loop
=
false
);
static
void
EditSchedule
(
const
QString
,
const
QString
,
const
QString
,
static
void
EditSchedule
(
const
QString
&
,
const
QString
&
,
const
QString
&
,
QDateTime
_schetime
,
QDateTime
_schedate
,
int
_scherepeatnumber
,
int
_repeatDays
,
bool
b_enabled
=
true
,
QString
mux
=
""
);
static
void
AddVod
(
const
QString
,
const
QString
,
const
QString
,
bool
b_enabled
=
true
,
QString
mux
=
""
);
static
void
EditVod
(
const
QString
,
const
QString
,
const
QString
,
bool
b_enabled
=
true
,
QString
mux
=
""
);
static
void
AddSchedule
(
const
QString
,
const
QString
,
const
QString
,
bool
b_enabled
=
true
,
const
QString
&
mux
=
""
);
static
void
AddVod
(
const
QString
&
,
const
QString
&
,
const
QString
&
,
bool
b_enabled
=
true
,
const
QString
&
mux
=
""
);
static
void
EditVod
(
const
QString
&
,
const
QString
&
,
const
QString
&
,
bool
b_enabled
=
true
,
const
QString
&
mux
=
""
);
static
void
AddSchedule
(
const
QString
&
,
const
QString
&
,
const
QString
&
,
QDateTime
_schetime
,
QDateTime
_schedate
,
int
_scherepeatnumber
,
int
_repeatDays
,
bool
b_enabled
=
true
,
QString
mux
=
""
);
bool
b_enabled
=
true
,
const
QString
&
mux
=
""
);
static
void
ControlBroadcast
(
const
QString
,
int
,
unsigned
int
seek
=
0
);
static
void
EnableItem
(
const
QString
,
bool
);
static
void
ControlBroadcast
(
const
QString
&
,
int
,
unsigned
int
seek
=
0
);
static
void
EnableItem
(
const
QString
&
,
bool
);
/* We don't have yet the accessors in the core, so the following is commented */
//unsigned int NbMedia() { if( p_vlm ) return p_vlm->i_media; return 0; }
...
...
@@ -155,7 +155,7 @@ class VLMAWidget : public QGroupBox
Q_OBJECT
friend
class
VLMDialog
;
public:
VLMAWidget
(
QString
name
,
QString
input
,
QString
output
,
VLMAWidget
(
const
QString
&
name
,
const
QString
&
input
,
const
QString
&
output
,
bool
_enable
,
VLMDialog
*
parent
,
int
_type
=
QVLM_Broadcast
);
virtual
void
update
()
=
0
;
protected:
...
...
@@ -178,7 +178,7 @@ class VLMBroadcast : public VLMAWidget
Q_OBJECT
friend
class
VLMDialog
;
public:
VLMBroadcast
(
QString
name
,
QString
input
,
QString
output
,
VLMBroadcast
(
const
QString
&
name
,
const
QString
&
input
,
const
QString
&
output
,
bool
_enable
,
bool
_loop
,
VLMDialog
*
parent
);
void
update
();
private:
...
...
@@ -196,8 +196,8 @@ class VLMVod : public VLMAWidget
Q_OBJECT
friend
class
VLMDialog
;
public:
VLMVod
(
QString
name
,
QString
input
,
QString
output
,
bool
_enable
,
QString
_mux
,
VLMDialog
*
parent
);
VLMVod
(
const
QString
&
name
,
const
QString
&
input
,
const
QString
&
output
,
bool
_enable
,
const
QString
&
_mux
,
VLMDialog
*
parent
);
void
update
();
private:
QString
mux
;
...
...
@@ -209,7 +209,7 @@ class VLMSchedule : public VLMAWidget
Q_OBJECT
friend
class
VLMDialog
;
public:
VLMSchedule
(
QString
name
,
QString
input
,
QString
output
,
VLMSchedule
(
const
QString
&
name
,
const
QString
&
input
,
const
QString
&
output
,
QDateTime
schetime
,
QDateTime
schedate
,
int
repeatnumber
,
int
repeatdays
,
bool
enabled
,
VLMDialog
*
parent
);
void
update
();
...
...
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