#include "mainwindow.h" #include #include #include #include #ifdef _WIN32 #include #endif int main(int argc, char *argv[]) { QApplication a(argc, argv); #ifdef _WIN32 QString exePath = a.applicationDirPath(); exePath = exePath.append("\\plugins"); wchar_t Path[10000]; ::GetEnvironmentVariable(L"PATH", Path, sizeof(Path) / sizeof(TCHAR)); QString pathVar = QString::fromWCharArray(Path); QString newPath = exePath.append(";").append(pathVar); ::SetEnvironmentVariable(TEXT("PATH"), newPath.toStdWString().c_str()); #endif QTranslator qtTranslator; qtTranslator.load("qt_" + QLocale::system().name(), QLibraryInfo::location(QLibraryInfo::TranslationsPath)); a.installTranslator(&qtTranslator); QTranslator myappTranslator; myappTranslator.load(":/translations/prodejna_" + QLocale::system().name()); a.installTranslator(&myappTranslator); MainWindow w; w.move(QApplication::desktop()->screen()->rect().center() - w.rect().center()); w.showMaximized(); return a.exec(); }