aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-pdf/main.cpp
blob: f0430fc84acdfc1c5dc9e8421820601a406deac5 (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
#include <QTranslator>
#include <QApplication>
#include <QDebug>
#include <QFile>

#include "mainUI.h"
#include <LUtils.h>
//#include <LuminaThemes.h>

int main(int argc, char ** argv)
{
  //LTHEME::LoadCustomEnvSettings();
  unsetenv("QT_AUTO_SCREEN_SCALE_FACTOR"); //need pixel-perfect geometries
  QApplication a(argc, argv);
  LUtils::LoadTranslation(&a, "l-pdf");

  //Read the input variables
  QString path = "";
  for(int i=1; i<argc; i++){
    path = LUtils::PathToAbsolute( argv[i] );
    if(QFile::exists(path)){ break; } //already found a valid file
  }

  MainUI w;
  if(!path.isEmpty()){  w.loadFile(path); }
  w.show();
  int retCode = a.exec();
  return retCode;
}
bgstack15