Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
82352081
Commit
82352081
authored
Oct 26, 2010
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: playlist views, correct virtualness
parent
415dab3b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
15 deletions
+15
-15
modules/gui/qt4/components/playlist/icon_view.hpp
modules/gui/qt4/components/playlist/icon_view.hpp
+15
-15
No files found.
modules/gui/qt4/components/playlist/icon_view.hpp
View file @
82352081
...
...
@@ -46,8 +46,8 @@ class PlIconViewItemDelegate : public AbstractPlViewItemDelegate
public:
PlIconViewItemDelegate
(
QWidget
*
parent
=
0
)
:
AbstractPlViewItemDelegate
(
parent
)
{}
void
paint
(
QPainter
*
painter
,
const
QStyleOptionViewItem
&
option
,
const
QModelIndex
&
index
)
const
;
QSize
sizeHint
(
const
QStyleOptionViewItem
&
option
=
QStyleOptionViewItem
(),
v
irtual
v
oid
paint
(
QPainter
*
painter
,
const
QStyleOptionViewItem
&
option
,
const
QModelIndex
&
index
)
const
;
virtual
QSize
sizeHint
(
const
QStyleOptionViewItem
&
option
=
QStyleOptionViewItem
(),
const
QModelIndex
&
index
=
QModelIndex
()
)
const
;
};
...
...
@@ -58,8 +58,8 @@ class PlListViewItemDelegate : public AbstractPlViewItemDelegate
public:
PlListViewItemDelegate
(
QWidget
*
parent
=
0
)
:
AbstractPlViewItemDelegate
(
parent
)
{}
void
paint
(
QPainter
*
painter
,
const
QStyleOptionViewItem
&
option
,
const
QModelIndex
&
index
)
const
;
QSize
sizeHint
(
const
QStyleOptionViewItem
&
option
,
const
QModelIndex
&
index
)
const
;
v
irtual
v
oid
paint
(
QPainter
*
painter
,
const
QStyleOptionViewItem
&
option
,
const
QModelIndex
&
index
)
const
;
virtual
QSize
sizeHint
(
const
QStyleOptionViewItem
&
option
,
const
QModelIndex
&
index
)
const
;
};
class
PlIconView
:
public
QListView
...
...
@@ -68,9 +68,9 @@ class PlIconView : public QListView
public:
PlIconView
(
PLModel
*
model
,
QWidget
*
parent
=
0
);
pr
ivate
:
void
startDrag
(
Qt
::
DropActions
supportedActions
);
void
dragMoveEvent
(
QDragMoveEvent
*
event
);
pr
otected
:
v
irtual
v
oid
startDrag
(
Qt
::
DropActions
supportedActions
);
v
irtual
v
oid
dragMoveEvent
(
QDragMoveEvent
*
event
);
};
class
PlListView
:
public
QListView
...
...
@@ -79,20 +79,20 @@ class PlListView : public QListView
public:
PlListView
(
PLModel
*
model
,
QWidget
*
parent
=
0
);
pr
ivate
:
void
startDrag
(
Qt
::
DropActions
supportedActions
);
void
dragMoveEvent
(
QDragMoveEvent
*
event
);
void
keyPressEvent
(
QKeyEvent
*
event
);
pr
otected
:
v
irtual
v
oid
startDrag
(
Qt
::
DropActions
supportedActions
);
v
irtual
v
oid
dragMoveEvent
(
QDragMoveEvent
*
event
);
v
irtual
v
oid
keyPressEvent
(
QKeyEvent
*
event
);
};
class
PlTreeView
:
public
QTreeView
{
Q_OBJECT
pr
ivate
:
void
startDrag
(
Qt
::
DropActions
supportedActions
);
void
dragMoveEvent
(
QDragMoveEvent
*
event
);
void
keyPressEvent
(
QKeyEvent
*
event
);
pr
otected
:
v
irtual
v
oid
startDrag
(
Qt
::
DropActions
supportedActions
);
v
irtual
v
oid
dragMoveEvent
(
QDragMoveEvent
*
event
);
v
irtual
v
oid
keyPressEvent
(
QKeyEvent
*
event
);
};
#endif
...
...
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