aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-textedit/main.cpp
blob: 7c1619b0bf523a9779121cd855d2a35f5ff7dd4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//===========================================
//  Lumina-DE source code
//  Copyright (c) 2015, Ken Moore
//  Available under the 3-clause BSD license
//  See the LICENSE file for full details
//===========================================
#include <QApplication>
#include <QDebug>

#include <LuminaThemes.h>
#include <LUtils.h>

#include "MainUI.h"

int  main(int argc, char *argv[]) {
   LTHEME::LoadCustomEnvSettings();
   QApplication a(argc, argv);
    a.setAttribute(Qt::AA_UseHighDpiPixmaps);   
   LUtils::LoadTranslation(&a, "l-te");
   //Now go ahead and setup the app
   //LuminaThemeEngine theme(&a);
   QStringList args;  //list<string> in c++11 stl container.
   for(int i=1; i<argc; i++){
       // qDebug() << argv[i] << endl;
      args << QString(argv[i]);
   }
   //Now start the window
   MainUI W;

    //QObject::connect(&theme, SIGNAL(updateIcons()), &W, SLOT(updateIcons()) );
    W.LoadArguments(args);
   W.show();
   return  a.exec();
}
bgstack15