2010-06-30 19:35:00 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Robert Bieber
|
|
|
|
*
|
|
|
|
* 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 the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef RBALBUMART_H
|
|
|
|
#define RBALBUMART_H
|
|
|
|
|
|
|
|
#include <QGraphicsItem>
|
|
|
|
|
2010-08-03 22:29:26 +00:00
|
|
|
#include "rbmovable.h"
|
|
|
|
|
2010-08-05 08:03:32 +00:00
|
|
|
class ParseTreeNode;
|
|
|
|
|
2010-08-03 22:29:26 +00:00
|
|
|
class RBAlbumArt : public RBMovable
|
2010-06-30 19:35:00 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
RBAlbumArt(QGraphicsItem* parent, int x, int y, int maxWidth, int maxHeight,
|
2010-08-05 08:03:32 +00:00
|
|
|
int artWidth, int artHeight, ParseTreeNode* node,
|
|
|
|
char hAlign = 'c', char vAlign = 'c');
|
2010-06-30 19:35:00 +00:00
|
|
|
|
|
|
|
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option,
|
|
|
|
QWidget *widget);
|
|
|
|
|
2010-07-01 02:49:44 +00:00
|
|
|
void position(){ this->setPos(size.x(), size.y()); }
|
2010-08-05 08:03:32 +00:00
|
|
|
void enableMove(){
|
|
|
|
setFlag(ItemSendsGeometryChanges, true);
|
|
|
|
}
|
2010-07-01 02:49:44 +00:00
|
|
|
|
2010-08-03 22:29:26 +00:00
|
|
|
protected:
|
|
|
|
void saveGeometry();
|
|
|
|
|
2010-06-30 19:35:00 +00:00
|
|
|
private:
|
|
|
|
int artWidth;
|
|
|
|
int artHeight;
|
|
|
|
char hAlign;
|
|
|
|
char vAlign;
|
|
|
|
QPixmap texture;
|
2010-08-05 08:03:32 +00:00
|
|
|
|
|
|
|
ParseTreeNode* node;
|
2010-06-30 19:35:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // RBALBUMART_H
|