~macslow/unity8/fix-1475678

« back to all changes in this revision

Viewing changes to tests/mocks/Ubuntu/Application/ApplicationInfo.cpp

  • Committer: Michał Sawicz
  • Date: 2013-06-05 22:03:08 UTC
  • Revision ID: michal.sawicz@canonical.com-20130605220308-yny8fv3futtr04fg
Inital unity8 commit.

Previous history can be found at https://code.launchpad.net/~unity-team/unity/phablet

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2013 Canonical, Ltd.
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License as published by
 
6
 * the Free Software Foundation; version 3.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 */
 
16
 
 
17
#include "ApplicationInfo.h"
 
18
 
 
19
#include <QGuiApplication>
 
20
#include <QQuickItem>
 
21
#include <QQuickView>
 
22
#include <QQmlComponent>
 
23
 
 
24
ApplicationInfo::ApplicationInfo(QObject *parent)
 
25
    : QObject(parent)
 
26
     ,m_stage(MainStage)
 
27
     ,m_state(Starting)
 
28
     ,m_fullscreen(false)
 
29
     ,m_windowItem(0)
 
30
     ,m_windowComponent(0)
 
31
     ,m_parentItem(0)
 
32
{
 
33
}
 
34
 
 
35
void ApplicationInfo::onWindowComponentStatusChanged(QQmlComponent::Status status)
 
36
{
 
37
    if (status == QQmlComponent::Ready && !m_windowItem)
 
38
        doCreateWindowItem();
 
39
}
 
40
 
 
41
void ApplicationInfo::createWindowComponent()
 
42
{
 
43
    // The assumptions I make here really should hold.
 
44
    QQuickView *quickView =
 
45
        qobject_cast<QQuickView*>(QGuiApplication::topLevelWindows()[0]);
 
46
 
 
47
    QQmlEngine *engine = quickView->engine();
 
48
 
 
49
    m_windowComponent = new QQmlComponent(engine, this);
 
50
    m_windowComponent->setData(m_windowQml.toLatin1(), QUrl());
 
51
}
 
52
 
 
53
void ApplicationInfo::doCreateWindowItem()
 
54
{
 
55
    m_windowItem = qobject_cast<QQuickItem *>(m_windowComponent->create());
 
56
    m_windowItem->setParentItem(m_parentItem);
 
57
}
 
58
 
 
59
void ApplicationInfo::createWindowItem()
 
60
{
 
61
    if (!m_windowComponent)
 
62
        createWindowComponent();
 
63
 
 
64
    // only create the windowItem once the component is ready
 
65
    if (!m_windowComponent->isReady()) {
 
66
        connect(m_windowComponent, &QQmlComponent::statusChanged,
 
67
                this, &ApplicationInfo::onWindowComponentStatusChanged);
 
68
    } else {
 
69
        doCreateWindowItem();
 
70
    }
 
71
}
 
72
 
 
73
void ApplicationInfo::showWindow(QQuickItem *parent)
 
74
{
 
75
    m_parentItem = parent;
 
76
 
 
77
    if (!m_windowItem)
 
78
        createWindowItem();
 
79
 
 
80
    if (m_windowItem) {
 
81
        m_windowItem->setVisible(true);
 
82
    }
 
83
}
 
84
 
 
85
void ApplicationInfo::hideWindow()
 
86
{
 
87
    if (!m_windowItem)
 
88
        return;
 
89
 
 
90
    m_windowItem->setVisible(false);
 
91
}