1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
9 * Copyright (C) 2007 by Dominik Wenger
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version 2
14 * of the License, or (at your option) any later version.
16 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
17 * KIND, either express or implied.
19 ****************************************************************************/
28 #include "ui_previewfrm.h"
31 class PreviewDlg
: public QDialog
36 PreviewDlg(QWidget
*parent
= 0);
37 void setPixmap(QPixmap p
);
38 void setText(QString text
);
41 void changeEvent(QEvent
*event
);
42 void mouseMoveEvent(QMouseEvent
* event
);
43 void leaveEvent(QEvent
* event
);
52 class PreviewLabel
: public QLabel
57 PreviewLabel(QWidget
* parent
= 0, Qt::WindowFlags f
= 0);
59 void setPixmap(QPixmap p
);
60 void setText(QString text
);
62 void mouseMoveEvent(QMouseEvent
* event
);
63 void enterEvent(QEvent
* event
);
64 void leaveEvent(QEvent
* event
);