blob: c80cb2357d6f6caad9490b40c6e0726020da2ab6 [file] [log] [blame]
Robert Bieberdf1ff112010-08-06 20:53:50 +00001/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2010 Robert Bieber
11 *
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.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21
22#include <QGraphicsSceneMouseEvent>
Robert Bieberd1a392a2010-08-09 19:37:23 +000023#include <QGraphicsItem>
Robert Bieber56023422010-08-12 05:30:31 +000024#include <QGraphicsProxyWidget>
Robert Bieberdf1ff112010-08-06 20:53:50 +000025
26#include "rbscene.h"
Robert Bieber56023422010-08-12 05:30:31 +000027#include "rbconsole.h"
Robert Bieberdf1ff112010-08-06 20:53:50 +000028
29RBScene::RBScene(QObject* parent)
Robert Bieber56023422010-08-12 05:30:31 +000030 : QGraphicsScene(parent), consoleProxy(0), console(0)
Robert Bieberdf1ff112010-08-06 20:53:50 +000031{
32}
33
34RBScene::~RBScene()
35{
Robert Bieber56023422010-08-12 05:30:31 +000036 if(console)
37 console->deleteLater();
38
39 if(consoleProxy)
40 consoleProxy->deleteLater();
41}
42
43void RBScene::clear()
44{
45 QGraphicsScene::clear();
46
47 console = new RBConsole();
48 consoleProxy = addWidget(console);
49 consoleProxy->setZValue(1000);
50 consoleProxy->resize(screen.width(), screen.height());
51 consoleProxy->hide();
52}
53
54void RBScene::addWarning(QString warning)
55{
56 console->addWarning(warning);
57 console->show();
Robert Bieberdf1ff112010-08-06 20:53:50 +000058}