blob: ac3504814db7737acd0298f3abdccf0dfc9a0706 [file] [log] [blame]
Alexandre Lision8521baa2015-03-13 11:08:00 -04001/*
Alexandre Lision46dc0c32015-09-15 10:22:59 -04002 * Copyright (C) 2015 Savoir-faire Linux Inc.
Alexandre Lision8521baa2015-03-13 11:08:00 -04003 * Author: Alexandre Lision <alexandre.lision@savoirfairelinux.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Alexandre Lision8521baa2015-03-13 11:08:00 -040018 */
Alexandre Lision46dc0c32015-09-15 10:22:59 -040019
20#import <AppKit/NSApplication.h>
21
22//Qt
Alexandre Lision5855b6a2015-02-03 11:31:05 -050023#import <qapplication.h>
Alexandre Lision7a166e42015-09-02 15:04:43 -040024#import <globalinstances.h>
Alexandre Lisione7e01ba2015-03-30 13:30:51 -040025#import <QDebug>
26#import <QDir>
Alexandre Lision46dc0c32015-09-15 10:22:59 -040027#import <QTranslator>
28#import <QLocale>
Alexandre Lision5855b6a2015-02-03 11:31:05 -050029
Alexandre Lision922380d2015-09-15 10:25:17 -040030//LRC
31#import <personmodel.h>
Alexandre Lision34e738e2015-09-24 14:13:23 -040032#import <categorizedhistorymodel.h>
33#import <localhistorycollection.h>
Alexandre Lision922380d2015-09-15 10:25:17 -040034
Alexandre Lision46dc0c32015-09-15 10:22:59 -040035#import "backends/AddressBookBackend.h"
Alexandre Lision7a166e42015-09-02 15:04:43 -040036#import "delegates/ImageManipulationDelegate.h"
37
Alexandre Lision5855b6a2015-02-03 11:31:05 -050038int main(int argc, const char *argv[]) {
Alexandre Lision8521baa2015-03-13 11:08:00 -040039
Alexandre Lisione7e01ba2015-03-30 13:30:51 -040040 QDir dir(QString::fromUtf8(argv[0]));
41 dir.cdUp();
42 dir.cdUp();
43 dir.cd("Plugins");
44 QCoreApplication::addLibraryPath(dir.absolutePath());
45 qDebug() << "" << QCoreApplication::libraryPaths();
Alexandre Lision5855b6a2015-02-03 11:31:05 -050046 //Qt event loop will override native event loop
47 QApplication* app = new QApplication(argc, const_cast<char**>(argv));
48 app->setAttribute(Qt::AA_MacPluginApplication);
49
Alexandre Lision46dc0c32015-09-15 10:22:59 -040050 dir.cdUp();
51 QTranslator translator;
52 if (translator.load(QLocale::system(), "lrc", "_", dir.absolutePath()+"/Resources/QtTranslations")) {
53 app->installTranslator(&translator);
54 }
55
Alexandre Lision34e738e2015-09-24 14:13:23 -040056 CategorizedHistoryModel::instance()->addCollection<LocalHistoryCollection>(LoadOptions::FORCE_ENABLED);
57
Alexandre Lision7a166e42015-09-02 15:04:43 -040058 GlobalInstances::setPixmapManipulator(std::unique_ptr<Interfaces::ImageManipulationDelegate>(new Interfaces::ImageManipulationDelegate()));
Alexandre Lision4dfcafc2015-08-20 12:43:23 -040059 PersonModel::instance()->addCollection<AddressBookBackend>(LoadOptions::FORCE_ENABLED);
Alexandre Lision5855b6a2015-02-03 11:31:05 -050060
61 return NSApplicationMain(argc, argv);
62}