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
9ce7dea9
Commit
9ce7dea9
authored
Sep 06, 2009
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: cosmetics and code-cleaning
parent
1c55acae
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
19 deletions
+24
-19
modules/gui/qt4/components/playlist/selector.cpp
modules/gui/qt4/components/playlist/selector.cpp
+18
-15
modules/gui/qt4/components/playlist/selector.hpp
modules/gui/qt4/components/playlist/selector.hpp
+6
-4
No files found.
modules/gui/qt4/components/playlist/selector.cpp
View file @
9ce7dea9
...
...
@@ -38,28 +38,30 @@
#include <vlc_playlist.h>
#include <vlc_services_discovery.h>
PLSelector
::
PLSelector
(
QWidget
*
p
,
intf_thread_t
*
_p_intf
)
:
QWidget
(
p
),
p_intf
(
_p_intf
)
PLSelector
::
PLSelector
(
QWidget
*
p
,
intf_thread_t
*
_p_intf
)
:
QWidget
(
p
),
p_intf
(
_p_intf
)
{
// model = new PLModel( THEPL, p_intf, THEPL->p_root_category, 1, this );
view
=
new
QTreeWidget
;
view
->
setIconSize
(
QSize
(
24
,
24
)
);
// view->setAlternatingRowColors( true );
view
->
setIndentation
(
10
);
view
->
header
()
->
hide
();
view
->
setRootIsDecorated
(
false
);
// model = new PLModel( THEPL, p_intf, THEPL->p_root_category, 1, this );
// view->setModel( model );
view
->
setAcceptDrops
(
true
);
view
->
setDropIndicatorShown
(
true
);
// view->setAcceptDrops(true);
// view->setDropIndicatorShown(true);
createItems
();
CONNECT
(
view
,
itemActivated
(
QTreeWidgetItem
*
,
int
),
this
,
setSource
(
QTreeWidgetItem
*
)
);
CONNECT
(
view
,
itemClicked
(
QTreeWidgetItem
*
,
int
),
this
,
setSource
(
QTreeWidgetItem
*
)
);
/* I believe this is unnecessary, seeing
QStyle::SH_ItemView_ActivateItemOnSingleClick
CONNECT( view, itemClicked( QTreeWidgetItem *, int ),
this, setSource( QTreeWidgetItem *) ); */
QVBoxLayout
*
layout
=
new
QVBoxLayout
()
;
QVBoxLayout
*
layout
=
new
QVBoxLayout
;
layout
->
setSpacing
(
0
);
layout
->
setMargin
(
0
);
layout
->
addWidget
(
view
);
setLayout
(
layout
);
...
...
@@ -103,15 +105,16 @@ void PLSelector::createItems()
pl
->
setText
(
0
,
qtr
(
"Playlist"
)
);
pl
->
setData
(
0
,
Qt
::
UserRole
,
PL_TYPE
);
pl
->
setData
(
0
,
Qt
::
UserRole
+
1
,
QVariant
::
fromValue
(
THEPL
->
p_local_category
)
);
/* QTreeWidgetItem *empty = new QTreeWidgetItem( view );
empty->setFlags(Qt::NoItemFlags);
*/
/* QTreeWidgetItem *empty = new QTreeWidgetItem( view );
empty->setFlags(Qt::NoItemFlags); */
QTreeWidgetItem
*
lib
=
new
QTreeWidgetItem
(
view
);
lib
->
setText
(
0
,
qtr
(
"Library"
)
);
lib
->
setData
(
0
,
Qt
::
UserRole
,
ML_TYPE
);
lib
->
setData
(
0
,
Qt
::
UserRole
+
1
,
QVariant
::
fromValue
(
THEPL
->
p_ml_category
)
);
/*
QTreeWidgetItem *empty2 = new QTreeWidgetItem( view );
/*
QTreeWidgetItem *empty2 = new QTreeWidgetItem( view );
empty2->setFlags(Qt::NoItemFlags);*/
QTreeWidgetItem
*
sds
=
new
QTreeWidgetItem
(
view
);
...
...
@@ -132,8 +135,8 @@ void PLSelector::createItems()
sd_item
->
setData
(
0
,
Qt
::
UserRole
+
1
,
qfu
(
*
ppsz_name
)
);
sds
->
addChild
(
sd_item
);
}
}
PLSelector
::~
PLSelector
()
{
}
modules/gui/qt4/components/playlist/selector.hpp
View file @
9ce7dea9
/*****************************************************************************
* selector.hpp : Playlist source selector
****************************************************************************
* Copyright (C) 2000-200
5
the VideoLAN team
* Copyright (C) 2000-200
9
the VideoLAN team
* $Id$
*
* Authors: Clément Stenac <zorglub@videolan.org>
* Jean-Baptiste Kempf
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
...
...
@@ -28,11 +29,13 @@
# include "config.h"
#endif
#include "components/playlist/playlist_model.hpp"
#include <QWidget>
#include <QTreeWidgetItem>
#include <vlc_playlist.h>
#include "qt4.hpp"
class
QTreeWidget
;
class
PlaylistWidget
;
...
...
@@ -50,7 +53,6 @@ public:
PLSelector
(
QWidget
*
p
,
intf_thread_t
*
_p_intf
);
virtual
~
PLSelector
();
protected:
PLModel
*
model
;
friend
class
PlaylistWidget
;
private:
intf_thread_t
*
p_intf
;
...
...
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