Initial commit
[tietoopcom] / src / main.cpp
1 /** \file main.h
2  * \brief Implementation of programĀ“s main function
3  * 
4  * Tieto Open Communicator - Client for the Telepathy communications framework.
5  * Copyright (c) 2010, Tieto Corporation
6  *
7  * All rights reserved.
8  * Redistribution and use in source and binary forms, with or without modification,
9  * are permitted provided that the following conditions are met:
10  *
11  *      Redistributions of source code must retain the above copyright notice,
12  *      this list of conditions and the following disclaimer.
13  *      Redistributions in binary form must reproduce the above copyright notice,
14  *      this list of conditions and the following disclaimer in the documentation
15  *      and/or other materials provided with the distribution.
16  *      Neither the name of the Tieto Corporation nor the names of its contributors 
17  *      may be used to endorse or promote products derived from this software without
18  *      specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
22  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23  * IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
24  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
28  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  * 
30  */
31
32 #include "TocMainWindow"
33 #include "TocEngine"
34
35 #include <QtGui>
36 #include <QApplication>
37 #include <QtDBus>
38
39 int main(int argc, char *argv[])
40 {
41     QApplication app(argc, argv);
42     app.setAttribute(Qt::AA_DontShowIconsInMenus, false);
43     
44     TocEngine* engine = new TocEngine(&app);
45     TocMainWindow w(engine);
46     
47       if (!QDBusConnection::sessionBus().isConnected()) {
48         qWarning("Cannot connect to the D-Bus session bus.");
49         exit(1);
50     }
51  
52     if (!QDBusConnection::sessionBus().registerService("org.indt.tietoopcom")) {
53         qWarning("%s", qPrintable(QDBusConnection::sessionBus().lastError().message()));
54         exit(2);
55     }
56  
57     if (!QDBusConnection::sessionBus().registerObject("/org/indt/tietoopcom", &w,
58         QDBusConnection::ExportScriptableSlots)) {
59         qWarning("%s", qPrintable(QDBusConnection::sessionBus().lastError().message()));
60         exit(3);
61     }
62     
63     w.show();
64     bool ret = app.exec();
65     delete engine;
66     return ret;
67 }