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
992cf22c
Commit
992cf22c
authored
Feb 10, 2010
by
Jakob Leben
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: cleanups and organization
parent
dee8d5f4
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
22 additions
and
41 deletions
+22
-41
modules/gui/qt4/components/playlist/playlist_model.cpp
modules/gui/qt4/components/playlist/playlist_model.cpp
+3
-6
modules/gui/qt4/components/playlist/playlist_model.hpp
modules/gui/qt4/components/playlist/playlist_model.hpp
+18
-17
modules/gui/qt4/components/playlist/selector.cpp
modules/gui/qt4/components/playlist/selector.cpp
+0
-4
modules/gui/qt4/components/playlist/standardpanel.cpp
modules/gui/qt4/components/playlist/standardpanel.cpp
+1
-14
No files found.
modules/gui/qt4/components/playlist/playlist_model.cpp
View file @
992cf22c
...
...
@@ -51,9 +51,6 @@ QIcon PLModel::icons[ITEM_TYPE_NUMBER];
* Playlist model implementation
*************************************************************************/
/*
This model is called two times, for the selector and the standard panel
*/
PLModel
::
PLModel
(
playlist_t
*
_p_playlist
,
/* THEPL */
intf_thread_t
*
_p_intf
,
/* main Qt p_intf */
playlist_item_t
*
p_root
,
...
...
@@ -81,7 +78,7 @@ PLModel::PLModel( playlist_t *_p_playlist, /* THEPL */
ADD_ICON
(
NODE
,
":/type/node"
);
#undef ADD_ICON
rebuild
(
p_root
,
true
);
rebuild
(
p_root
);
CONNECT
(
THEMIM
->
getIM
(),
metaChanged
(
input_item_t
*
),
this
,
processInputItemUpdate
(
input_item_t
*
)
);
CONNECT
(
THEMIM
,
inputChanged
(
input_thread_t
*
),
...
...
@@ -640,10 +637,10 @@ end:
void
PLModel
::
rebuild
()
{
rebuild
(
NULL
,
false
);
rebuild
(
NULL
);
}
void
PLModel
::
rebuild
(
playlist_item_t
*
p_root
,
bool
b_first
)
void
PLModel
::
rebuild
(
playlist_item_t
*
p_root
)
{
playlist_item_t
*
p_item
;
...
...
modules/gui/qt4/components/playlist/playlist_model.hpp
View file @
992cf22c
...
...
@@ -97,7 +97,8 @@ public:
void
search
(
const
QString
&
search_text
);
void
sort
(
int
column
,
Qt
::
SortOrder
order
);
void
sort
(
int
i_root_id
,
int
column
,
Qt
::
SortOrder
order
);
void
rebuild
();
void
rebuild
(
playlist_item_t
*
,
bool
b_first
=
false
);
void
rebuild
();
void
rebuild
(
playlist_item_t
*
);
inline
PLItem
*
getItem
(
QModelIndex
index
)
const
{
...
...
@@ -106,30 +107,38 @@ public:
else
return
rootItem
;
}
private:
signals:
void
currentChanged
(
const
QModelIndex
&
);
void
rootChanged
();
public
slots
:
void
activateItem
(
const
QModelIndex
&
index
);
void
activateItem
(
playlist_item_t
*
p_item
);
private:
/* General */
PLItem
*
rootItem
;
playlist_t
*
p_playlist
;
intf_thread_t
*
p_intf
;
int
i_depth
;
static
QIcon
icons
[
ITEM_TYPE_NUMBER
];
/* Actions */
void
recurseDelete
(
QList
<
PLItem
*>
children
,
QModelIndexList
*
fullList
);
/* Shallow actions (do not affect core playlist) */
void
updateTreeItem
(
PLItem
*
);
void
removeItem
(
PLItem
*
);
void
removeItem
(
int
);
void
recurseDelete
(
QList
<
PLItem
*>
children
,
QModelIndexList
*
fullList
);
void
takeItem
(
PLItem
*
);
//will not delete item
void
insertChildren
(
PLItem
*
node
,
QList
<
PLItem
*>&
items
,
int
i_pos
);
void
dropAppendCopy
(
QByteArray
&
data
,
PLItem
*
target
);
void
dropMove
(
QByteArray
&
data
,
PLItem
*
target
,
int
new_pos
);
/* The following actions will not signal the view! */
/* ...of which the following will not update the views */
void
updateChildren
(
PLItem
*
);
void
updateChildren
(
playlist_item_t
*
,
PLItem
*
);
/* Deep actions (affect core playlist) */
void
dropAppendCopy
(
QByteArray
&
data
,
PLItem
*
target
);
void
dropMove
(
QByteArray
&
data
,
PLItem
*
target
,
int
new_pos
);
/* Popup */
int
i_popup_item
,
i_popup_parent
,
i_popup_column
;
QModelIndexList
current_selection
;
...
...
@@ -138,23 +147,15 @@ private:
PLItem
*
findById
(
PLItem
*
,
int
);
PLItem
*
findByInput
(
PLItem
*
,
int
);
PLItem
*
findInner
(
PLItem
*
,
int
,
bool
);
int
columnFromMeta
(
int
meta_column
)
const
;
int
columnToMeta
(
int
column
)
const
;
bool
canEdit
()
const
;
PLItem
*
p_cached_item
;
PLItem
*
p_cached_item_bi
;
int
i_cached_id
;
int
i_cached_input_id
;
signals:
void
currentChanged
(
const
QModelIndex
&
);
void
rootChanged
();
public
slots
:
void
activateItem
(
const
QModelIndex
&
index
);
void
activateItem
(
playlist_item_t
*
p_item
);
private
slots
:
void
popupPlay
();
void
popupDel
();
...
...
modules/gui/qt4/components/playlist/selector.cpp
View file @
992cf22c
...
...
@@ -460,7 +460,6 @@ void PLSelector::podcastAdd( PLSelItem* item )
void
PLSelector
::
podcastRemove
(
PLSelItem
*
item
)
{
//FIXME will translators know to leave that %1 somewhere inside?
QString
question
(
qtr
(
"Do you really want to unsubscribe from %1?"
)
);
question
=
question
.
arg
(
item
->
text
()
);
QMessageBox
::
StandardButton
res
=
...
...
@@ -495,9 +494,6 @@ void PLSelector::drawBranches ( QPainter * painter, const QRect & rect, const QM
QStyleOption
option
;
option
.
initFrom
(
this
);
option
.
rect
=
rect
.
adjusted
(
rect
.
width
()
-
indentation
(),
0
,
0
,
0
);
/*option.state = QStyle::State_Children;
if( isExpanded( index ) ) option.state |= QStyle::State_Open;*/
style
()
->
drawPrimitive
(
isExpanded
(
index
)
?
QStyle
::
PE_IndicatorArrowDown
:
QStyle
::
PE_IndicatorArrowRight
,
&
option
,
painter
);
...
...
modules/gui/qt4/components/playlist/standardpanel.cpp
View file @
992cf22c
...
...
@@ -69,14 +69,6 @@ StandardPLPanel::StandardPLPanel( PlaylistWidget *_parent,
currentRootId
=
-
1
;
last_activated_id
=
-
1
;
/* Title label */
/*title = new QLabel;
QFont titleFont;
titleFont.setPointSize( titleFont.pointSize() + 6 );
titleFont.setFamily( "Verdana" );
title->setFont( titleFont );
layout->addWidget( title, 0, 0 );*/
locationBar
=
new
LocationBar
(
model
);
layout
->
addWidget
(
locationBar
,
0
,
0
);
CONNECT
(
model
,
rootChanged
(),
locationBar
,
setRootIndex
()
);
...
...
@@ -405,7 +397,6 @@ void StandardPLPanel::activate( const QModelIndex &index )
{
if
(
currentView
==
iconView
)
{
iconView
->
setRootIndex
(
index
);
//title->setText( index.data().toString() );
locationBar
->
setIndex
(
index
);
}
}
...
...
@@ -414,7 +405,7 @@ void StandardPLPanel::activate( const QModelIndex &index )
playlist_Lock
(
THEPL
);
playlist_item_t
*
p_item
=
playlist_ItemGetById
(
THEPL
,
model
->
itemId
(
index
)
);
p_item
->
i_flags
|=
PLAYLIST_SUBITEM_STOP_FLAG
;
last_activated_id
=
p_item
->
p_input
->
i_id
;
//model->getItem( index )->inputItem()->i_id;
last_activated_id
=
p_item
->
p_input
->
i_id
;
playlist_Unlock
(
THEPL
);
model
->
activateItem
(
index
);
}
...
...
@@ -517,11 +508,7 @@ void LocationButton::paintEvent ( QPaintEvent * event )
{
QStyleOptionButton
option
;
option
.
initFrom
(
this
);
//option.rect = rect();
//option.features = QStyleOptionButton::Flat;
option
.
state
|=
QStyle
::
State_Enabled
;
//option.state |= isChecked() ? QStyle::State_On : QStyle::State_Off;
//if( isDown() ) option.state |= QStyle::State_Sunken;
QPainter
p
(
this
);
if
(
underMouse
()
)
...
...
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