~ubuntu-filemanager-dev/ubuntu-filemanager-app/nemo-qml-plugins-packaging

« back to all changes in this revision

Viewing changes to alarms/src/plugin.cpp

  • Committer: Timo Jyrinki
  • Date: 2013-03-20 15:03:31 UTC
  • Revision ID: timo.jyrinki@canonical.com-20130320150331-aggtqfb7cufdiuzc
ImportĀ upstreamĀ 0.3.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2012 Jolla Ltd.
 
3
 * Contact: John Brooks <john.brooks@jollamobile.com>
 
4
 *
 
5
 * You may use this file under the terms of the BSD license as follows:
 
6
 *
 
7
 * "Redistribution and use in source and binary forms, with or without
 
8
 * modification, are permitted provided that the following conditions are
 
9
 * met:
 
10
 *   * Redistributions of source code must retain the above copyright
 
11
 *     notice, this list of conditions and the following disclaimer.
 
12
 *   * Redistributions in binary form must reproduce the above copyright
 
13
 *     notice, this list of conditions and the following disclaimer in
 
14
 *     the documentation and/or other materials provided with the
 
15
 *     distribution.
 
16
 *   * Neither the name of Nemo Mobile nor the names of its contributors
 
17
 *     may be used to endorse or promote products derived from this
 
18
 *     software without specific prior written permission.
 
19
 *
 
20
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 
21
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 
22
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 
23
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 
24
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 
25
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 
26
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 
27
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 
28
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
29
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 
30
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
 
31
 */
 
32
 
 
33
#include <QtGlobal>
 
34
#include <QtDeclarative>
 
35
#include "alarmsbackendmodel.h"
 
36
#include "alarmobject.h"
 
37
#include "alarmhandlerinterface.h"
 
38
#include "alarmdialogobject.h"
 
39
#include "interface.h"
 
40
 
 
41
TimedInterface *TimedInterface::instance()
 
42
{
 
43
    static TimedInterface *timed = 0;
 
44
    if (!timed)
 
45
        timed = new TimedInterface;
 
46
    return timed;
 
47
}
 
48
 
 
49
class Q_DECL_EXPORT NemoAlarmsPlugin : public QDeclarativeExtensionPlugin
 
50
{
 
51
public:
 
52
    NemoAlarmsPlugin()
 
53
    {
 
54
    }
 
55
 
 
56
    virtual ~NemoAlarmsPlugin()
 
57
    {
 
58
    }
 
59
 
 
60
    void initializeEngine(QDeclarativeEngine *engine, const char *uri)
 
61
    {
 
62
        Q_ASSERT(uri == QLatin1String("org.nemomobile.alarms"));
 
63
    }
 
64
 
 
65
    void registerTypes(const char *uri)
 
66
    {
 
67
        Q_ASSERT(uri == QLatin1String("org.nemomobile.alarms"));
 
68
        qmlRegisterType<AlarmsBackendModel>(uri, 1, 0, "AlarmsModel");
 
69
        qmlRegisterUncreatableType<AlarmObject>(uri, 1, 0, "Alarm", "Create Alarm via AlarmsModel");
 
70
        qmlRegisterType<AlarmHandlerInterface>(uri, 1, 0, "AlarmHandler");
 
71
    }
 
72
};
 
73
 
 
74
Q_EXPORT_PLUGIN2(nemoalarms, NemoAlarmsPlugin);
 
75