forked from len0rd/rockbox
Theme Editor: Added album art display
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27199 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
3e599f4d37
commit
8114979e8e
10 changed files with 207 additions and 17 deletions
|
|
@ -28,7 +28,8 @@
|
|||
|
||||
RBScreen::RBScreen(const RBRenderInfo& info, bool remote,
|
||||
QGraphicsItem *parent)
|
||||
:QGraphicsItem(parent), backdrop(0), project(project)
|
||||
:QGraphicsItem(parent), backdrop(0), project(project),
|
||||
albumArt(0)
|
||||
{
|
||||
|
||||
if(remote)
|
||||
|
|
@ -80,6 +81,9 @@ RBScreen::~RBScreen()
|
|||
if(backdrop)
|
||||
delete backdrop;
|
||||
|
||||
if(albumArt)
|
||||
delete albumArt;
|
||||
|
||||
QMap<int, RBFont*>::iterator i;
|
||||
for(i = fonts.begin(); i != fonts.end(); i++)
|
||||
delete (*i);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue