#include #include #include #include #include "MainUI.h" #include #include #include int main(int argc, char ** argv) { //qDebug() << "Init App..."; 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(); return a.exec(); }