2003-10-15 21:32:36 +00:00
|
|
|
|
/***************************************************************************
|
|
|
|
|
main.cpp - description
|
|
|
|
|
-------------------
|
|
|
|
|
begin : Thu Aug 28 18:17:41 CEST 2003
|
|
|
|
|
copyright : (C) 2003 by Michael Margraf
|
2004-06-12 12:35:04 +00:00
|
|
|
|
email : michael.margraf@alumni.tu-berlin.de
|
2003-10-15 21:32:36 +00:00
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
|
* *
|
|
|
|
|
* 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. *
|
|
|
|
|
* *
|
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
2003-11-29 11:28:15 +00:00
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
# include <config.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2003-10-15 21:32:36 +00:00
|
|
|
|
#include <qapplication.h>
|
|
|
|
|
#include <qstring.h>
|
|
|
|
|
#include <qtextcodec.h>
|
|
|
|
|
#include <qtranslator.h>
|
2004-05-25 19:10:00 +00:00
|
|
|
|
#include <qfile.h>
|
|
|
|
|
#include <qtextstream.h>
|
|
|
|
|
#include <qmessagebox.h>
|
2003-10-15 21:32:36 +00:00
|
|
|
|
|
2004-06-16 17:41:33 +00:00
|
|
|
|
#include <math.h>
|
|
|
|
|
|
2003-10-15 21:32:36 +00:00
|
|
|
|
#include "qucs.h"
|
2004-05-25 19:10:00 +00:00
|
|
|
|
#include "main.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
tQucsSettings QucsSettings
|
2004-05-29 13:05:04 +00:00
|
|
|
|
= {0, 0, 600, 400, // position and size
|
|
|
|
|
QFont("Helvetica", 12), QFont("Helvetica", 16, QFont::DemiBold),
|
|
|
|
|
QFont("Helvetica", 10, QFont::Light),
|
2004-06-26 07:05:47 +00:00
|
|
|
|
QColor(255, 250, 225), 20,
|
|
|
|
|
BINARYDIR "qucsedit"};
|
2004-06-12 12:35:04 +00:00
|
|
|
|
|
|
|
|
|
QFont savingFont; // to remember which font to save in "qucsrc"
|
2004-05-25 19:10:00 +00:00
|
|
|
|
|
|
|
|
|
// #########################################################################
|
|
|
|
|
// Loads the settings file and stores the settings.
|
|
|
|
|
bool loadSettings()
|
|
|
|
|
{
|
2004-07-16 19:16:03 +00:00
|
|
|
|
QFile file(QucsHomeDir.filePath("qucsrc"));
|
2004-05-25 19:10:00 +00:00
|
|
|
|
if(!file.open(IO_ReadOnly)) return false; // settings file doesn't exist
|
|
|
|
|
|
|
|
|
|
QTextStream stream(&file);
|
|
|
|
|
QString Line, Setting;
|
|
|
|
|
|
|
|
|
|
bool ok;
|
|
|
|
|
while(!stream.atEnd()) {
|
|
|
|
|
Line = stream.readLine();
|
|
|
|
|
Setting = Line.section('=',0,0);
|
|
|
|
|
Line = Line.section('=',1,1);
|
|
|
|
|
if(Setting == "Position") {
|
|
|
|
|
QucsSettings.x = Line.section(",",0,0).toInt(&ok);
|
|
|
|
|
QucsSettings.y = Line.section(",",1,1).toInt(&ok); }
|
|
|
|
|
else if(Setting == "Size") {
|
|
|
|
|
QucsSettings.dx = Line.section(",",0,0).toInt(&ok);
|
|
|
|
|
QucsSettings.dy = Line.section(",",1,1).toInt(&ok); }
|
|
|
|
|
else if(Setting == "Font") {
|
2004-05-29 13:05:04 +00:00
|
|
|
|
QucsSettings.font.fromString(Line);
|
2004-06-12 12:35:04 +00:00
|
|
|
|
savingFont = QucsSettings.font;
|
2004-05-29 13:05:04 +00:00
|
|
|
|
|
|
|
|
|
QucsSettings.largeFont = QucsSettings.font;
|
|
|
|
|
int i = QucsSettings.font.pointSize(); i += i/3;
|
|
|
|
|
QucsSettings.largeFont.setPointSize(i); // large font greater
|
|
|
|
|
QucsSettings.largeFont.setWeight(QFont::DemiBold);
|
|
|
|
|
|
|
|
|
|
QucsSettings.smallFont = QucsSettings.font;
|
|
|
|
|
QucsSettings.smallFont.setPointSize(10); // small font 10pt
|
|
|
|
|
QucsSettings.smallFont.setWeight(QFont::Light);
|
|
|
|
|
}
|
2004-05-25 19:10:00 +00:00
|
|
|
|
else if(Setting == "BGColor") {
|
|
|
|
|
QucsSettings.BGColor.setNamedColor(Line);
|
|
|
|
|
if(!QucsSettings.BGColor.isValid())
|
|
|
|
|
QucsSettings.BGColor.setRgb(255, 250, 225); }
|
2004-06-12 12:35:04 +00:00
|
|
|
|
else if(Setting == "maxUndo") {
|
|
|
|
|
QucsSettings.maxUndo = Line.toInt(&ok); }
|
2004-06-26 07:05:47 +00:00
|
|
|
|
else if(Setting == "Editor") {
|
|
|
|
|
QucsSettings.Editor = Line; }
|
2004-05-25 19:10:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
file.close();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// #########################################################################
|
|
|
|
|
// Saves the settings in the settings file.
|
2004-05-29 13:05:04 +00:00
|
|
|
|
bool saveApplSettings(QucsApp *qucs)
|
2004-05-25 19:10:00 +00:00
|
|
|
|
{
|
2004-07-16 19:16:03 +00:00
|
|
|
|
QFile file(QucsHomeDir.filePath("qucsrc"));
|
2004-05-25 19:10:00 +00:00
|
|
|
|
if(!file.open(IO_WriteOnly)) { // settings file cannot be created
|
|
|
|
|
QMessageBox::warning(0, QObject::tr("Warning"),
|
|
|
|
|
QObject::tr("Cannot save settings !"));
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString Line;
|
|
|
|
|
QTextStream stream(&file);
|
|
|
|
|
|
|
|
|
|
stream << "Settings file, Qucs " PACKAGE_VERSION "\n"
|
|
|
|
|
<< "Position=" << qucs->x() << "," << qucs->y() << "\n"
|
|
|
|
|
<< "Size=" << qucs->width() << "," << qucs->height() << "\n"
|
2004-06-12 12:35:04 +00:00
|
|
|
|
<< "Font=" << savingFont.toString() << "\n"
|
2004-05-25 19:10:00 +00:00
|
|
|
|
<< "BGColor=" << qucs->view->viewport()->paletteBackgroundColor().name()
|
2004-06-12 12:35:04 +00:00
|
|
|
|
<< "\n"
|
2004-06-26 07:05:47 +00:00
|
|
|
|
<< "maxUndo=" << QucsSettings.maxUndo << "\n"
|
|
|
|
|
<< "Editor=" << QucsSettings.Editor << "\n";
|
2004-05-25 19:10:00 +00:00
|
|
|
|
file.close();
|
2004-05-29 13:05:04 +00:00
|
|
|
|
|
2004-05-25 19:10:00 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-16 17:41:33 +00:00
|
|
|
|
// #########################################################################
|
|
|
|
|
QString complexRect(double real, double imag, int Precision)
|
|
|
|
|
{
|
|
|
|
|
QString Text;
|
|
|
|
|
if(fabs(imag) < 1e-250) Text = QString::number(real,'g',Precision);
|
|
|
|
|
else {
|
|
|
|
|
Text = QString::number(imag,'g',Precision);
|
|
|
|
|
if(Text.at(0) == '-') {
|
|
|
|
|
Text.at(0) = 'j';
|
|
|
|
|
Text = '-'+Text;
|
|
|
|
|
}
|
|
|
|
|
else Text = "+j"+Text;
|
|
|
|
|
Text = QString::number(real,'g',Precision) + Text;
|
|
|
|
|
}
|
|
|
|
|
return Text;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString complexDeg(double real, double imag, int Precision)
|
|
|
|
|
{
|
|
|
|
|
QString Text;
|
|
|
|
|
if(fabs(imag) < 1e-250) Text = QString::number(real,'g',Precision);
|
|
|
|
|
else {
|
|
|
|
|
Text = QString::number(sqrt(real*real+imag*imag),'g',Precision) + " <";
|
|
|
|
|
Text += QString::number(180.0/M_PI*atan2(imag,real),'g',Precision) + '<EFBFBD>';
|
|
|
|
|
}
|
|
|
|
|
return Text;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString complexRad (double real, double imag, int Precision)
|
|
|
|
|
{
|
|
|
|
|
QString Text;
|
|
|
|
|
if(fabs(imag) < 1e-250) Text = QString::number(real,'g',Precision);
|
|
|
|
|
else {
|
|
|
|
|
Text = QString::number(sqrt(real*real+imag*imag),'g',Precision);
|
|
|
|
|
Text += " <" + QString::number(atan2(imag,real),'g',Precision);
|
|
|
|
|
}
|
|
|
|
|
return Text;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-26 07:05:47 +00:00
|
|
|
|
|
2004-05-25 19:10:00 +00:00
|
|
|
|
// #########################################################################
|
|
|
|
|
// ########## ##########
|
|
|
|
|
// ########## Program Start ##########
|
|
|
|
|
// ########## ##########
|
|
|
|
|
// #########################################################################
|
2003-10-15 21:32:36 +00:00
|
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
|
{
|
2004-07-16 19:16:03 +00:00
|
|
|
|
QucsWorkDir.setPath(QDir::homeDirPath()+"/.qucs");
|
|
|
|
|
QucsHomeDir.setPath(QDir::homeDirPath()+"/.qucs");
|
2004-05-25 19:10:00 +00:00
|
|
|
|
loadSettings();
|
|
|
|
|
|
2003-10-15 21:32:36 +00:00
|
|
|
|
QApplication a(argc, argv);
|
2004-05-25 19:10:00 +00:00
|
|
|
|
a.setFont(QucsSettings.font);
|
|
|
|
|
|
2003-10-15 21:32:36 +00:00
|
|
|
|
QTranslator tor( 0 );
|
2004-01-13 16:11:38 +00:00
|
|
|
|
tor.load( QString("qucs_") + QTextCodec::locale(), LANGUAGEDIR );
|
2003-12-07 15:21:31 +00:00
|
|
|
|
a.installTranslator( &tor );
|
2004-05-25 19:10:00 +00:00
|
|
|
|
|
2004-05-29 13:05:04 +00:00
|
|
|
|
QucsApp *qucs = new QucsApp();
|
2003-10-15 21:32:36 +00:00
|
|
|
|
a.setMainWidget(qucs);
|
|
|
|
|
qucs->show();
|
2004-06-12 12:35:04 +00:00
|
|
|
|
int result = a.exec();
|
|
|
|
|
saveApplSettings(qucs);
|
|
|
|
|
return result;
|
2003-10-15 21:32:36 +00:00
|
|
|
|
}
|