58 lines
1.9 KiB
C++
Raw Normal View History

/***************************************************************************
main.cpp
----------------
begin : Wed Apr 10 2014
copyright : (C) 2014 by Vadim Kuznetsov
email : ra3xdh@gmail.com
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
2014-11-09 11:06:54 +04:00
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <stdlib.h>
#include <QtCore>
#include <QApplication>
#include "qucsactivefilter.h"
int main(int argc, char *argv[])
{
2014-11-09 11:06:54 +04:00
QString Lang,LangDir;
QSettings settings("qucs","qucs");
if(settings.contains("Language")) {
Lang=settings.value("Language").toString();
}
char * var = getenv ("QUCSDIR");
if (var != NULL) {
QDir QucsDir = QDir (var);
QString QucsDirStr = QucsDir.canonicalPath ();
LangDir =
QDir::convertSeparators (QucsDirStr + "/share/qucs/lang/");
} else {
LangDir = LANGUAGEDIR;
}
QApplication a(argc, argv);
2014-11-09 11:06:54 +04:00
QTranslator tor( 0 );
if(Lang.isEmpty())
Lang = QString(QLocale::system().name());
tor.load( QString("qucs_") + Lang, LangDir);
a.installTranslator( &tor );
QucsActiveFilter w;
w.show();
return a.exec();
}