blob: 5e71e99c12d71b9b6ce10675efd248055d769d4a (
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
60
61
62
63
64
65
66
67
68
69
70
71
|
#include <QTranslator>
#include <QApplication>
#include <QDebug>
#include <QFile>
#include "MainUI.h"
#include <LuminaOS.h>
#include <LuminaThemes.h>
#include <LUtils.h>
//==== INPUT FORMAT ====
// lumina-search [-no-excludes] [-dir [directory]] [-search <term>]
// -no-excludes: Don't exclude anything from this search
// -dir [directory]: Setup a file/dir search within the current working dir (or specified dir)
// -search <term>: Start a search with the given term
//===================
int main(int argc, char ** argv)
{
//qDebug() << "Init App...";
LTHEME::LoadCustomEnvSettings();
QApplication a(argc, argv);
//qDebug() << "Init Theme Engine...";
//LuminaThemeEngine theme(&a);
//qDebug() << "Load Translations...";
a.setApplicationName("Search for...");
LUtils::LoadTranslation(&a, "lumina-search");
MainUI w;
//QObject::connect(&theme,SIGNAL(updateIcons()), &w, SLOT(setupIcons()) );
w.show();
if(argc>1){
bool startsearch = false;
for(int i=1; i<argc; i++){
QString val = QString(argv[i]).toLower();
if( val == "-no-excludes"){ w.disableExcludes(); }
else if(val=="-dir"){
//Check the next input value for a directory path
QString dir;
if( argc>(i+1) ){ dir = QString(argv[i+1]); }
//Check the input for validity
if(dir.startsWith("-")){dir.clear(); } //not a directory, just another input
else if(!dir.startsWith("/")){ //not an absolute path
dir = QDir::currentPath()+"/"+dir;
QFileInfo info(dir);
if( !info.exists() || !info.isDir() ){ dir.clear(); } //invalid relative dir
}
if(dir.isEmpty()){ dir= QDir::currentPath(); } //use the current directory
else{ i++; } //using the next input value - skip it for the next iteration
w.setSearchDirectory( dir );
}else if(val=="-search"){
//Check the next input value for a text string
QString text;
if( argc>(i+1) ){ text = QString(argv[i+1]); }
//Check the input for validity
if( !text.isEmpty() ){
i++; //using the next input value - skip it for the next iteration
w.setSearchTerm( text );
startsearch = true;
}
}
}//end loop over inputs
if(startsearch){
//A CLI search was requested, go ahead and start it now
QTimer::singleShot(10, &w, SLOT(startSearch()));
}
} //end check for input arguments
return a.exec();
}
|