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
b6fa76ea
Commit
b6fa76ea
authored
May 14, 2011
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: kill a bunch of warnings
parent
e6a21a3c
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
18 additions
and
14 deletions
+18
-14
modules/gui/qt4/components/playlist/ml_item.cpp
modules/gui/qt4/components/playlist/ml_item.cpp
+1
-1
modules/gui/qt4/components/playlist/ml_item.hpp
modules/gui/qt4/components/playlist/ml_item.hpp
+1
-1
modules/gui/qt4/components/playlist/ml_model.cpp
modules/gui/qt4/components/playlist/ml_model.cpp
+4
-1
modules/gui/qt4/components/playlist/playlist.cpp
modules/gui/qt4/components/playlist/playlist.cpp
+1
-1
modules/gui/qt4/components/playlist/selector.cpp
modules/gui/qt4/components/playlist/selector.cpp
+1
-1
modules/gui/qt4/components/playlist/standardpanel.cpp
modules/gui/qt4/components/playlist/standardpanel.cpp
+6
-4
modules/gui/qt4/components/playlist/standardpanel.hpp
modules/gui/qt4/components/playlist/standardpanel.hpp
+2
-3
modules/gui/qt4/components/playlist/vlc_model.cpp
modules/gui/qt4/components/playlist/vlc_model.cpp
+1
-1
modules/gui/qt4/util/customwidgets.cpp
modules/gui/qt4/util/customwidgets.cpp
+1
-1
No files found.
modules/gui/qt4/components/playlist/ml_item.cpp
View file @
b6fa76ea
...
...
@@ -87,7 +87,7 @@ MLItem::MLItem( const MLModel *p_model,
intf_thread_t
*
_p_intf
,
ml_media_t
*
p_media
,
MLItem
*
p_parent
)
:
model
(
p_model
),
children
(),
parentItem
(
p_parent
),
p_intf
(
_p_intf
)
:
p_intf
(
_p_intf
),
model
(
p_model
),
children
(),
parentItem
(
p_parent
)
{
if
(
p_media
)
ml_gc_incref
(
p_media
);
...
...
modules/gui/qt4/components/playlist/ml_item.hpp
View file @
b6fa76ea
...
...
@@ -74,10 +74,10 @@ public:
private:
ml_media_t
*
media
;
intf_thread_t
*
p_intf
;
const
MLModel
*
model
;
media_library_t
*
p_ml
;
QList
<
MLItem
*
>
children
;
MLItem
*
parentItem
;
const
MLModel
*
model
;
};
#endif
...
...
modules/gui/qt4/components/playlist/ml_model.cpp
View file @
b6fa76ea
...
...
@@ -193,8 +193,9 @@ bool MLModel::isEditable( const QModelIndex &index ) const
case
ML_VOTE
:
case
ML_YEAR
:
return
true
;
default:
return
false
;
}
return
false
;
}
QMimeData
*
MLModel
::
mimeData
(
const
QModelIndexList
&
indexes
)
const
...
...
@@ -261,6 +262,7 @@ int MLModel::getId( QModelIndex index ) const
QVariant
MLModel
::
data
(
const
QModelIndex
&
index
,
int
role
)
const
{
if
(
index
.
isValid
()
)
{
if
(
role
==
Qt
::
DisplayRole
||
role
==
Qt
::
EditRole
)
{
MLItem
*
it
=
static_cast
<
MLItem
*>
(
index
.
internalPointer
()
);
...
...
@@ -272,6 +274,7 @@ QVariant MLModel::data( const QModelIndex &index, int role ) const
return
QVariant
(
true
);
else
if
(
role
==
VLCModel
::
IsCurrentsParentNodeRole
)
return
QVariant
(
false
);
}
return
QVariant
();
}
...
...
modules/gui/qt4/components/playlist/playlist.cpp
View file @
b6fa76ea
...
...
@@ -377,7 +377,7 @@ QSize LocationBar::sizeHint() const
LocationButton
::
LocationButton
(
const
QString
&
text
,
bool
bold
,
bool
arrow
,
QWidget
*
parent
)
:
b_arrow
(
arrow
),
QPushButton
(
parent
)
:
QPushButton
(
parent
),
b_arrow
(
arrow
)
{
QFont
font
;
font
.
setBold
(
bold
);
...
...
modules/gui/qt4/components/playlist/selector.cpp
View file @
b6fa76ea
...
...
@@ -195,7 +195,7 @@ void PLSelector::createItems()
ml
->
treeItem
()
->
setData
(
0
,
SPECIAL_ROLE
,
QVariant
(
IS_ML
)
);
/* SQL ML */
QTreeWidgetItem
*
sql_ml
=
addItem
(
SQL_ML_TYPE
,
"SQL Media Library"
)
->
treeItem
();
addItem
(
SQL_ML_TYPE
,
"SQL Media Library"
)
->
treeItem
();
/* SD nodes */
QTreeWidgetItem
*
mycomp
=
addItem
(
CATEGORY_TYPE
,
N_
(
"My Computer"
)
)
->
treeItem
();
...
...
modules/gui/qt4/components/playlist/standardpanel.cpp
View file @
b6fa76ea
...
...
@@ -57,9 +57,11 @@ StandardPLPanel::StandardPLPanel( PlaylistWidget *_parent,
PLSelector
*
_p_selector
,
PLModel
*
_p_model
,
MLModel
*
_p_plmodel
)
:
QWidget
(
_parent
),
p_intf
(
_p_intf
),
p_selector
(
_p_selector
),
model
(
_p_model
),
mlmodel
(
_p_plmodel
)
:
QWidget
(
_parent
),
model
(
_p_model
),
mlmodel
(
_p_plmodel
),
p_intf
(
_p_intf
),
p_selector
(
_p_selector
)
{
viewStack
=
new
QStackedLayout
(
this
);
viewStack
->
setSpacing
(
0
);
viewStack
->
setMargin
(
0
);
...
...
@@ -401,7 +403,7 @@ void StandardPLPanel::showView( int i_view )
gotoPlayingItem
();
}
const
int
StandardPLPanel
::
currentViewIndex
()
int
StandardPLPanel
::
currentViewIndex
()
const
{
if
(
currentView
==
treeView
)
return
TREE_VIEW
;
...
...
modules/gui/qt4/components/playlist/standardpanel.hpp
View file @
b6fa76ea
...
...
@@ -68,14 +68,13 @@ public:
PICTUREFLOW_VIEW
,
VIEW_COUNT
};
const
int
currentViewIndex
();
int
currentViewIndex
()
const
;
protected:
PLModel
*
model
;
MLModel
*
mlmodel
;
virtual
void
wheelEvent
(
QWheelEvent
*
e
);
private:
intf_thread_t
*
p_intf
;
...
...
modules/gui/qt4/components/playlist/vlc_model.cpp
View file @
b6fa76ea
...
...
@@ -24,7 +24,7 @@
#include "vlc_model.hpp"
VLCModel
::
VLCModel
(
intf_thread_t
*
_p_intf
,
QObject
*
parent
)
:
p_intf
(
_p_intf
),
QAbstractItemModel
(
parent
)
:
QAbstractItemModel
(
parent
),
p_intf
(
_p_intf
)
{
}
...
...
modules/gui/qt4/util/customwidgets.cpp
View file @
b6fa76ea
...
...
@@ -54,7 +54,7 @@ void QFramelessButton::paintEvent( QPaintEvent * )
}
QElidingLabel
::
QElidingLabel
(
const
QString
&
s
,
Qt
::
TextElideMode
mode
,
QWidget
*
parent
)
:
elideMode
(
mode
),
QLabel
(
s
,
parent
)
:
QLabel
(
s
,
parent
),
elideMode
(
mode
)
{
}
void
QElidingLabel
::
setElideMode
(
Qt
::
TextElideMode
mode
)
...
...
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