~mateo-salta/uvolman/uvolman

« back to all changes in this revision

Viewing changes to backend/UVolMan/backend.cpp

  • Committer: Devid Antonio Filoni
  • Date: 2016-07-29 19:40:57 UTC
  • Revision ID: git-v1:cdfff2c72a8eb5247b10da7d60874d8a3f600168
Initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * This file is part of uvolman.dfiloni
 
3
 *
 
4
 * Copyright (C) 2016 Devid Antonio Filoni https://launchpad.net/~d.filoni
 
5
 *
 
6
 * This program is free software: you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as published by
 
8
 * the Free Software Foundation, either version 3 of the License, or
 
9
 * (at your option) any later version.
 
10
 *
 
11
 * This program is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
 */
 
19
 
 
20
#include <QtQml>
 
21
#include <QtQml/QQmlContext>
 
22
#include "backend.h"
 
23
#include "IndicatorSoundService.h"
 
24
#include "DBus/PulseRestoreEntry.h"
 
25
#include "DBus/PulseStreamRestore.h"
 
26
 
 
27
void BackendPlugin::registerTypes(const char *uri)
 
28
{
 
29
    Q_ASSERT(uri == QLatin1String("UVolMan"));
 
30
 
 
31
    //qmlRegisterType<PulseRestoreEntry>(uri, 1, 0, "PulseRestoreEntry");
 
32
    qmlRegisterType<PulseStreamRestore>(uri, 1, 0, "PulseStreamRestore");
 
33
    qmlRegisterType<IndicatorSoundService>(uri, 1, 0, "IndicatorSoundService");
 
34
}
 
35
 
 
36
void BackendPlugin::initializeEngine(QQmlEngine *engine, const char *uri)
 
37
{
 
38
    QQmlExtensionPlugin::initializeEngine(engine, uri);
 
39
}
 
40