2005-03-05 14:52:09 +00:00
|
|
|
/***************************************************************************
|
|
|
|
main.cpp - description
|
|
|
|
-------------------
|
|
|
|
begin : Thu Aug 28 18:17:41 CEST 2003
|
|
|
|
copyright : (C) 2005 by Michael Margraf
|
|
|
|
email : michael.margraf@alumni.tu-berlin.de
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
* *
|
|
|
|
* 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. *
|
|
|
|
* *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
|
|
|
|
2005-03-19 11:51:25 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2005-03-05 14:52:09 +00:00
|
|
|
#include <qapplication.h>
|
|
|
|
#include <qstring.h>
|
|
|
|
#include <qtextcodec.h>
|
|
|
|
#include <qtranslator.h>
|
|
|
|
#include <qfile.h>
|
2012-10-31 09:15:06 +01:00
|
|
|
#include <q3textstream.h>
|
2005-03-05 14:52:09 +00:00
|
|
|
#include <qmessagebox.h>
|
|
|
|
#include <qdir.h>
|
|
|
|
#include <qfont.h>
|
|
|
|
|
|
|
|
#include "qucsfilter.h"
|
|
|
|
|
2005-03-19 11:51:25 +00:00
|
|
|
struct tQucsSettings QucsSettings;
|
2005-03-05 14:52:09 +00:00
|
|
|
|
|
|
|
// #########################################################################
|
|
|
|
// Loads the settings file and stores the settings.
|
|
|
|
bool loadSettings()
|
|
|
|
{
|
2006-02-17 07:20:07 +00:00
|
|
|
bool result = true;
|
2005-03-05 14:52:09 +00:00
|
|
|
|
2006-02-17 07:20:07 +00:00
|
|
|
QFile file(QDir::homeDirPath()+QDir::convertSeparators ("/.qucs/filterrc"));
|
2012-10-31 09:15:06 +01:00
|
|
|
if(!file.open(QIODevice::ReadOnly))
|
2006-02-17 07:20:07 +00:00
|
|
|
result = false; // settings file doesn't exist
|
|
|
|
else {
|
2012-10-31 09:15:06 +01:00
|
|
|
Q3TextStream stream(&file);
|
2006-02-17 07:20:07 +00:00
|
|
|
QString Line, Setting;
|
|
|
|
while(!stream.atEnd()) {
|
|
|
|
Line = stream.readLine();
|
|
|
|
Setting = Line.section('=',0,0);
|
|
|
|
Line = Line.section('=',1,1);
|
|
|
|
if(Setting == "FilterWindow") {
|
|
|
|
QucsSettings.x = Line.section(",",0,0).toInt();
|
|
|
|
QucsSettings.y = Line.section(",",1,1).toInt();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
file.close();
|
2005-03-05 14:52:09 +00:00
|
|
|
}
|
|
|
|
|
2005-03-19 11:51:25 +00:00
|
|
|
file.setName(QDir::homeDirPath()+QDir::convertSeparators ("/.qucs/qucsrc"));
|
2012-10-31 09:15:06 +01:00
|
|
|
if(!file.open(QIODevice::ReadOnly))
|
2006-02-17 07:20:07 +00:00
|
|
|
result = true; // qucs settings not necessary
|
|
|
|
else {
|
2012-10-31 09:15:06 +01:00
|
|
|
Q3TextStream stream(&file);
|
2006-02-17 07:20:07 +00:00
|
|
|
QString Line, Setting;
|
|
|
|
while(!stream.atEnd()) {
|
|
|
|
Line = stream.readLine();
|
|
|
|
Setting = Line.section('=',0,0);
|
|
|
|
Line = Line.section('=',1,1).stripWhiteSpace();
|
|
|
|
if(Setting == "Font")
|
2005-03-05 14:52:09 +00:00
|
|
|
QucsSettings.font.fromString(Line);
|
2006-02-17 07:20:07 +00:00
|
|
|
else if(Setting == "Language")
|
2006-02-14 07:25:27 +00:00
|
|
|
QucsSettings.Language = Line;
|
2006-02-17 07:20:07 +00:00
|
|
|
}
|
|
|
|
file.close();
|
2005-03-05 14:52:09 +00:00
|
|
|
}
|
2006-02-17 07:20:07 +00:00
|
|
|
return result;
|
2005-03-05 14:52:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// #########################################################################
|
|
|
|
// Saves the settings in the settings file.
|
|
|
|
bool saveApplSettings(QucsFilter *qucs)
|
|
|
|
{
|
|
|
|
if(qucs->x() == QucsSettings.x)
|
|
|
|
if(qucs->y() == QucsSettings.y)
|
|
|
|
return true; // nothing has changed
|
|
|
|
|
|
|
|
|
2005-03-19 11:51:25 +00:00
|
|
|
QFile file(QDir::homeDirPath()+QDir::convertSeparators ("/.qucs/filterrc"));
|
2012-10-31 09:15:06 +01:00
|
|
|
if(!file.open(QIODevice::WriteOnly)) {
|
2005-03-05 14:52:09 +00:00
|
|
|
QMessageBox::warning(0, QObject::tr("Warning"),
|
|
|
|
QObject::tr("Cannot save settings !"));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString Line;
|
2012-10-31 09:15:06 +01:00
|
|
|
Q3TextStream stream(&file);
|
2005-03-05 14:52:09 +00:00
|
|
|
|
|
|
|
stream << "Settings file, Qucs Filter " PACKAGE_VERSION "\n"
|
|
|
|
<< "FilterWindow=" << qucs->x() << ',' << qucs->y() << '\n';
|
|
|
|
|
|
|
|
file.close();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// #########################################################################
|
|
|
|
// ########## ##########
|
|
|
|
// ########## Program Start ##########
|
|
|
|
// ########## ##########
|
|
|
|
// #########################################################################
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2005-03-19 11:51:25 +00:00
|
|
|
// apply default settings
|
|
|
|
QucsSettings.x = 200;
|
|
|
|
QucsSettings.y = 100;
|
|
|
|
QucsSettings.font = QFont("Helvetica", 12);
|
|
|
|
|
|
|
|
// is application relocated?
|
|
|
|
char * var = getenv ("QUCSDIR");
|
|
|
|
if (var != NULL) {
|
|
|
|
QDir QucsDir = QDir (var);
|
|
|
|
QString QucsDirStr = QucsDir.canonicalPath ();
|
|
|
|
QucsSettings.BitmapDir =
|
|
|
|
QDir::convertSeparators (QucsDirStr + "/share/qucs/bitmaps/");
|
|
|
|
QucsSettings.LangDir =
|
|
|
|
QDir::convertSeparators (QucsDirStr + "/share/qucs/lang/");
|
|
|
|
} else {
|
|
|
|
QucsSettings.BitmapDir = BITMAPDIR;
|
|
|
|
QucsSettings.LangDir = LANGUAGEDIR;
|
|
|
|
}
|
|
|
|
|
2005-03-05 14:52:09 +00:00
|
|
|
loadSettings();
|
|
|
|
|
|
|
|
QApplication a(argc, argv);
|
|
|
|
a.setFont(QucsSettings.font);
|
|
|
|
|
|
|
|
QTranslator tor( 0 );
|
2006-02-14 07:25:27 +00:00
|
|
|
QString lang = QucsSettings.Language;
|
|
|
|
if(lang.isEmpty())
|
|
|
|
lang = QTextCodec::locale();
|
|
|
|
tor.load( QString("qucs_") + lang, QucsSettings.LangDir);
|
2005-03-05 14:52:09 +00:00
|
|
|
a.installTranslator( &tor );
|
|
|
|
|
|
|
|
QucsFilter *qucs = new QucsFilter();
|
|
|
|
a.setMainWidget(qucs);
|
|
|
|
qucs->move(QucsSettings.x, QucsSettings.y); // position before "show" !!!
|
|
|
|
qucs->show();
|
|
|
|
int result = a.exec();
|
|
|
|
saveApplSettings(qucs);
|
|
|
|
return result;
|
|
|
|
}
|