Remove two unused defines.
[maemo-rb.git] / utils / themeeditor / graphics / rbalbumart.h
blobd862f2565950a772d870bfb4434a6c9ace6b3b4c
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2010 Robert Bieber
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
22 #ifndef RBALBUMART_H
23 #define RBALBUMART_H
25 #include <QGraphicsItem>
27 #include "rbmovable.h"
29 class ParseTreeNode;
31 class RBAlbumArt : public RBMovable
33 public:
34 RBAlbumArt(QGraphicsItem* parent, int x, int y, int maxWidth, int maxHeight,
35 int artWidth, int artHeight, ParseTreeNode* node,
36 char hAlign = 'c', char vAlign = 'c');
38 void paint(QPainter *painter, const QStyleOptionGraphicsItem *option,
39 QWidget *widget);
41 void position(){ this->setPos(size.x(), size.y()); }
42 void enableMove(){
43 setFlag(ItemSendsGeometryChanges, true);
46 protected:
47 void saveGeometry();
49 private:
50 int artWidth;
51 int artHeight;
52 char hAlign;
53 char vAlign;
54 QPixmap texture;
56 ParseTreeNode* node;
59 #endif // RBALBUMART_H