Fix wordwrap when using Qt > 4.6.3
[quassel.git] / src / qtui / webpreviewitem.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-09 by the Quassel Project                          *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #include "webpreviewitem.h"
22
23 #ifdef HAVE_WEBKIT
24
25 #include <QGraphicsProxyWidget>
26 #include <QPainter>
27 #include <QWebView>
28
29 WebPreviewItem::WebPreviewItem(const QUrl &url)
30   : QGraphicsItem(0), // needs to be a top level item as we otherwise cannot guarantee that it's on top of other chatlines
31     _boundingRect(0, 0, 400, 300)
32 {
33   qreal frameWidth = 5;
34
35   QWebView *webView = new QWebView;
36   webView->load(url);
37   webView->resize(1000, 750);
38   QGraphicsProxyWidget *proxyItem = new QGraphicsProxyWidget(this);
39   proxyItem->setWidget(webView);
40   proxyItem->setAcceptHoverEvents(false);
41
42   qreal xScale = (_boundingRect.width() - 2 * frameWidth) / webView->width();
43   qreal yScale = (_boundingRect.height() - 2 * frameWidth) / webView->height();
44   proxyItem->scale(xScale, yScale);
45   proxyItem->setPos(frameWidth, frameWidth);
46
47   setZValue(30);
48 }
49
50 void WebPreviewItem::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) {
51   Q_UNUSED(option); Q_UNUSED(widget);
52   painter->setClipRect(boundingRect());
53   painter->setPen(QPen(Qt::black, 5));
54   painter->setBrush(Qt::black);
55   painter->setRenderHints(QPainter::Antialiasing);
56   painter->drawRoundedRect(boundingRect(), 10, 10);
57 }
58
59 #endif //#ifdef HAVE_WEBKIT