blob: f8ba362079a64a16aa6ad2e918ea046a524ad687 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
#include <QTranslator>
#include <QApplication>
#include <QDebug>
#include <QFile>
#include "MainUI.h"
#include <LuminaUtils.h>
#include <LuminaThemes.h>
int main(int argc, char ** argv)
{
LTHEME::LoadCustomEnvSettings();
QApplication a(argc, argv);
LUtils::LoadTranslation(&a, "lumina-fileinfo");
LuminaThemeEngine theme(&a);
//Read the input variables
QString path = "";
QString flag = "";
if (argc==2) {
path = QString::fromLocal8Bit(argv[1]);
}else if (argc==3) {
flag = QString::fromLocal8Bit(argv[1]);
path = QString::fromLocal8Bit(argv[2]);
}
//Check the input variables
// - path
if(!path.isEmpty()){ path = LUtils::PathToAbsolute(path); }
// - flag
if(!flag.isEmpty()){
if(flag=="-application"){
flag = "APP"; //for internal use
}else if(flag=="-link"){
flag = "LINK"; //for internal use
}else{
//Invalid flag - clear the path as well
path.clear();
}
}
if(!path.isEmpty()){
//if(!QFile::exists(path)){ LUtils::writeFile(path,QStringList()); } //create an empty file
MainUI w;
QObject::connect(&theme, SIGNAL(updateIcons()), &w, SLOT(UpdateIcons()) );
w.LoadFile(path, flag);
w.show();
int retCode = a.exec();
return retCode;
}else{
//Show an error text and exit
QStringList msg;
msg << "ERROR: Invalid input arguments";
msg << "Usage: \"lumina-fileinfo [-application | -link] <file>";
qDebug() << msg.join("\n");
return 1;
}
}
|