~ken-vandine/gwibber/qml

« back to all changes in this revision

Viewing changes to src/gwibber-application.cpp

  • Committer: Ken VanDine
  • Date: 2013-02-26 21:41:32 UTC
  • Revision ID: ken.vandine@canonical.com-20130226214132-phyk6fg2hrn06qia
Refactored

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 "gwibber-application.h"
 
18
#include <QtQuick/QQuickView>
 
19
#include <QtGui/QGuiApplication>
 
20
#include <QtQml/QQmlEngine>
 
21
#include <QtQml>
 
22
#include <QtQuick/QQuickItem>
 
23
#include <QtCore/QCoreApplication>
 
24
#include <dee-1.0/dee.h>
 
25
#include <deelistmodel.h>
 
26
 
 
27
 
 
28
static void printUsage(const QStringList& arguments)
 
29
{
 
30
    qDebug() << "usage:"
 
31
             << arguments.at(0).toUtf8().constData()
 
32
             << "[-testability] [--fullscreen]";
 
33
}
 
34
 
 
35
GwibberApplication::GwibberApplication(int &argc, char **argv)
 
36
    : QGuiApplication(argc, argv), m_view(0)
 
37
{
 
38
    // The testability driver is only loaded by QApplication but not by QGuiApplication.
 
39
    // However, QApplication depends on QWidget which would add some unneeded overhead => Let's load the testability driver on our own.
 
40
    if (arguments().contains(QLatin1String("-testability"))) {
 
41
        QLibrary testLib(QLatin1String("qttestability"));
 
42
        if (testLib.load()) {
 
43
            typedef void (*TasInitialize)(void);
 
44
            TasInitialize initFunction = (TasInitialize)testLib.resolve("qt_testability_init");
 
45
            if (initFunction) {
 
46
                initFunction();
 
47
            } else {
 
48
                qCritical("Library qttestability resolve failed!");
 
49
            }
 
50
        } else {
 
51
            qCritical("Library qttestability load failed!");
 
52
        }
 
53
    }
 
54
}
 
55
 
 
56
inline bool isRunningInstalled() {
 
57
    static bool installed = (QCoreApplication::applicationDirPath() ==
 
58
                             QDir(("/usr/bin")).canonicalPath());
 
59
    return installed;
 
60
}
 
61
 
 
62
inline QString getAppDirectory() {
 
63
    if (isRunningInstalled()) {
 
64
        return QString("/usr/share/gwibber-qml/qml/");
 
65
    } else {
 
66
        return QString(QCoreApplication::applicationDirPath() + "/../qml/");
 
67
    }
 
68
}
 
69
 
 
70
void
 
71
onSynchronizedChanged(GObject* parent, GParamSpec *pspec, gpointer user_data)
 
72
{
 
73
    DeeListModel *results_model = (DeeListModel*)user_data;
 
74
    DeeModel *model = (DeeModel*)parent;
 
75
    DeeFilter _sort_filter;
 
76
    dee_filter_new_collator (6, &_sort_filter);
 
77
    DeeModel* _sorted_model = dee_filter_model_new (model, &_sort_filter);
 
78
    results_model->setModel (_sorted_model);
 
79
}
 
80
 
 
81
 
 
82
bool GwibberApplication::setup()
 
83
{
 
84
    GwibberApplication::setApplicationName("Gwibber");
 
85
    QQuickView* m_view = new QQuickView();
 
86
    QQmlContext* context = m_view->rootContext();
 
87
    DeeModel* _shared_model = dee_shared_model_new ("com.canonical.Friends.Streams");
 
88
    DeeListModel *_m = new DeeListModel ();
 
89
    context->setContextProperty("_friendsModel", _m);
 
90
    g_signal_connect(_shared_model, "notify::synchronized", G_CALLBACK(onSynchronizedChanged), G_OBJECT(_m));
 
91
 
 
92
    m_view->setResizeMode(QQuickView::SizeRootObjectToView);
 
93
    m_view->setTitle("Gwibber");
 
94
    m_view->engine()->setBaseUrl(QUrl::fromLocalFile(getAppDirectory()));
 
95
    QObject::connect(m_view->engine(), SIGNAL(quit()), qApp, SLOT(quit()));
 
96
    m_view->setSource(QUrl::fromLocalFile("GwibberApplication.qml"));
 
97
    m_view->setColor("transparent");
 
98
    connect(m_view->engine(), SIGNAL(quit()), SLOT(quit()));
 
99
    if (arguments().contains(QLatin1String("--fullscreen"))) m_view->showFullScreen();
 
100
    else m_view->show();
 
101
 
 
102
    return true;
 
103
}
 
104
 
 
105
GwibberApplication::~GwibberApplication()
 
106
{
 
107
    if (m_view) {
 
108
        delete m_view;
 
109
    }
 
110
}