~unity-team/+junk/dashboard-playground

« back to all changes in this revision

Viewing changes to tests/qmltests/plugins/Unity/fake_unity_plugin.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
 * Author: Nick Dedekind <nick.dedekind@canonical.com>
 
17
 */
 
18
 
 
19
// Self
 
20
#include "fake_unity_plugin.h"
 
21
 
 
22
// local
 
23
#include "fake_lenses.h"
 
24
#include "categories.h"
 
25
#include "categoryfilter.h"
 
26
#include "fake_launchermodel.h"
 
27
 
 
28
// External
 
29
#include <glib-object.h>
 
30
#include <QtQml>
 
31
 
 
32
void FakeUnityPlugin::registerTypes(const char *uri)
 
33
{
 
34
#ifndef GLIB_VERSION_2_36
 
35
  g_type_init();
 
36
#endif
 
37
 
 
38
    Q_ASSERT(uri == QLatin1String("Unity"));
 
39
 
 
40
    qmlRegisterType<Lenses>(uri, 0, 1, "Lenses");
 
41
    qmlRegisterType<Lens>(uri, 0, 1, "Lens");
 
42
    qmlRegisterType<Categories>(uri, 0, 1, "Categories");
 
43
    qmlRegisterType<CategoryFilter>(uri, 0, 1, "CategoryFilter");
 
44
    qmlRegisterType<LauncherModel>(uri, 0, 1, "LauncherModel");
 
45
    qmlRegisterUncreatableType<LauncherItem>(uri, 0, 1, "LauncherItem", "Can't create");
 
46
}