~unity-2d-team/unity-2d/charlotte-real-transparency

« back to all changes in this revision

Viewing changes to places/QtDee/plugin.h

  • Committer: Florian Boucault
  • Date: 2010-10-12 00:30:29 UTC
  • Revision ID: florian@boucault.net-20101012003029-hbbetm8fcbb7fpx5
Added experimental places:
- experimental Qt bindings for libdee with a C++ and QML test programs
- an early stages QML grid view showing applications from the applications place
- a unity-qt-places binary that loads the QML grid view

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2010 Canonical, Ltd.
 
3
 *
 
4
 * Authors:
 
5
 *  Florian Boucault <florian.boucault@canonical.com>
 
6
 *
 
7
 * This program is free software; you can redistribute it and/or modify
 
8
 * it under the terms of the GNU General Public License as published by
 
9
 * the Free Software Foundation; version 3.
 
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
#ifndef QTDEEPLUGIN_H
 
21
#define QTDEEPLUGIN_H
 
22
 
 
23
#include <QtDeclarative/QDeclarativeExtensionPlugin>
 
24
 
 
25
class QtDeePlugin : public QDeclarativeExtensionPlugin
 
26
{
 
27
    Q_OBJECT
 
28
public:
 
29
    void registerTypes(const char *uri);
 
30
    void initializeEngine(QDeclarativeEngine *engine, const char *uri);
 
31
};
 
32
 
 
33
 
 
34
#endif // QTDEEPLUGIN_H