qucs_s/qucs/main.cpp

369 lines
10 KiB
C++
Raw Normal View History

2003-10-15 21:32:36 +00:00
/***************************************************************************
2005-06-23 06:06:40 +00:00
main.cpp
----------
begin : Thu Aug 28 2003
2003-10-15 21:32:36 +00:00
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. *
* *
***************************************************************************/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <stdlib.h>
#include <math.h>
2004-11-06 16:29:51 +00:00
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>
2004-12-27 18:37:29 +00:00
#include <qregexp.h>
2003-10-15 21:32:36 +00:00
#include "qucs.h"
#include "qucsview.h"
#include "main.h"
#include "node.h"
2004-05-25 19:10:00 +00:00
tQucsSettings QucsSettings;
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
2004-12-04 18:41:22 +00:00
QucsApp *QucsMain; // the Qucs application itself
2004-09-11 16:55:12 +00:00
// just dummies for empty lists
QPtrList<Wire> SymbolWires;
QPtrList<Node> SymbolNodes;
QPtrList<Diagram> SymbolDiags;
QPtrList<Component> SymbolComps;
2004-05-25 19:10:00 +00:00
// #########################################################################
// Loads the settings file and stores the settings.
bool loadSettings()
{
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
2004-10-13 19:51:59 +00:00
QucsSettings.largeFontSize
= floor(4.0/3.0 * QucsSettings.font.pointSize());
2004-05-29 13:05:04 +00:00
}
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
{
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 {
2004-08-15 16:24:35 +00:00
Text = QString::number(sqrt(real*real+imag*imag),'g',Precision) + " / ";
2004-06-16 17:41:33 +00:00
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);
2004-08-15 16:24:35 +00:00
Text += " / " + QString::number(atan2(imag,real),'g',Precision) + "rad";
2004-06-16 17:41:33 +00:00
}
return Text;
}
2004-10-10 16:06:55 +00:00
// #########################################################################
QString StringNum(double num, char form, int Precision)
{
int a = 0;
char *p, Buffer[512], Format[6] = "%.00g";
2005-01-16 14:21:24 +00:00
if(Precision < 0) {
Format[1] = form;
Format[2] = 0;
}
else {
Format[4] = form;
Format[2] += Precision / 10;
Format[3] += Precision % 10;
}
2004-10-10 16:06:55 +00:00
sprintf(Buffer, Format, num);
p = strchr(Buffer, 'e');
if(p) {
p++;
2004-12-19 16:06:24 +00:00
if(*(p++) == '+') { a = 1; } // remove '+' of exponent
if(*p == '0') { a++; p++; } // remove leading zeros of exponent
2004-10-10 16:06:55 +00:00
if(a > 0)
do {
*(p-a) = *p;
2004-12-19 16:06:24 +00:00
} while(*(p++) != 0); // override characters not needed
2004-10-10 16:06:55 +00:00
}
2005-06-23 06:06:40 +00:00
return QString(Buffer);
}
// #########################################################################
QString StringNiceNum(double num)
{
char Format[6] = "%.8e";
if(fabs(num) < 1e-250) return QString("0"); // avoid many problems
if(fabs(log10(fabs(num))) < 3.0) Format[3] = 'g';
int a = 0;
char *p, *pe, Buffer[512];
sprintf(Buffer, Format, num);
p = pe = strchr(Buffer, 'e');
if(p) {
if(*(++p) == '+') { a = 1; } // remove '+' of exponent
if(*(++p) == '0') { a++; p++; } // remove leading zeros of exponent
if(a > 0)
do {
*(p-a) = *p;
} while(*(p++) != 0); // override characters not needed
// In 'g' format, trailing zeros are already cut off !!!
p = strchr(Buffer, '.');
if(p) {
if(!pe) pe = Buffer + strlen(Buffer);
p = pe-1;
while(*p == '0') // looking for unneccessary zero characters
if((--p) <= Buffer) break;
if(*p != '.') p++; // no digit after decimal point ?
while( (*(p++) = *(pe++)) != 0 ) ; // overwrite zero characters
}
}
return QString(Buffer);
2004-10-10 16:06:55 +00:00
}
2004-12-27 18:37:29 +00:00
// #########################################################################
void str2num(const QString& s_, double& Number, QString& Unit, double& Factor)
{
QString str = s_.stripWhiteSpace();
/* int i=0;
bool neg = false;
if(str[0] == '-') { // check sign
neg = true;
i++;
}
else if(str[0] == '+') i++;
double num = 0.0;
for(;;) {
if(str[i] >= '0') if(str[i] <= '9') {
num = 10.0*num + double(str[i]-'0');
}
}*/
QRegExp Expr( QRegExp("[^0-9\\x2E\\x2D\\x2B]") );
int i = str.find( Expr );
if(i >= 0)
if((str.at(i).latin1() | 0x20) == 'e') {
int j = str.find( Expr , ++i);
if(j == i) j--;
i = j;
}
Number = str.left(i).toDouble();
Unit = str.mid(i).stripWhiteSpace();
switch(Unit.at(0).latin1()) {
case 'T': Factor = 1e12; break;
case 'G': Factor = 1e9; break;
case 'M': Factor = 1e6; break;
case 'k': Factor = 1e3; break;
case 'c': Factor = 1e-2; break;
case 'm': Factor = 1e-3; break;
case 'u': Factor = 1e-6; break;
case 'n': Factor = 1e-9; break;
case 'p': Factor = 1e-12; break;
case 'f': Factor = 1e-15; break;
// case 'd':
default: Factor = 1.0;
}
return;
}
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[])
{
#if 0
2005-06-23 06:06:40 +00:00
double zD;
zD = 0.0;
qDebug(StringNiceNum(zD));
zD = 112e8;
qDebug(StringNiceNum(zD));
qDebug(" ");
2005-01-16 14:21:24 +00:00
zD = 1.0e5;
2005-06-23 06:06:40 +00:00
qDebug(StringNiceNum(zD));
2005-01-16 14:21:24 +00:00
zD = 1.1e5;
2005-06-23 06:06:40 +00:00
qDebug(StringNiceNum(zD));
2005-01-16 14:21:24 +00:00
zD = 1.12e5;
2005-06-23 06:06:40 +00:00
qDebug(StringNiceNum(zD));
2005-01-16 14:21:24 +00:00
zD = 1.123e5;
2005-06-23 06:06:40 +00:00
qDebug(StringNiceNum(zD));
2005-01-16 14:21:24 +00:00
zD = 1.1234567e5;
2005-06-23 06:06:40 +00:00
qDebug(StringNiceNum(zD));
2005-01-16 14:21:24 +00:00
return 0;
#endif
2005-06-23 06:06:40 +00:00
#if 0
2005-06-23 06:06:40 +00:00
char Zahl1[32] = "12.34e2+j56.7";
char Zahl2[32] = "12.56e2";
char *p = 0;
double z1 = strtod(Zahl1, &p);
qDebug("%p -> %g -> %p", &Zahl1[0], z1, p);
double z2 = strtod(Zahl2, &p);
qDebug("%p -> %g -> %p", &Zahl2[0], z2, p);
return 0;
#endif
2005-01-16 14:21:24 +00:00
// apply default settings
QucsSettings.x = 0;
QucsSettings.y = 0;
QucsSettings.dx = 600;
QucsSettings.dy = 400;
QucsSettings.font = QFont("Helvetica", 12);
QucsSettings.largeFontSize = 16.0;
QucsSettings.BGColor = QColor(255, 250, 225);
QucsSettings.maxUndo = 20;
// is application relocated?
char * var = getenv ("QUCSDIR");
if (var != NULL) {
QDir QucsDir = QDir (var);
QString QucsDirStr = QucsDir.canonicalPath ();
QucsSettings.BinDir =
QDir::convertSeparators (QucsDirStr + "/bin/");
QucsSettings.BitmapDir =
QDir::convertSeparators (QucsDirStr + "/share/qucs/bitmaps/");
QucsSettings.LangDir =
QDir::convertSeparators (QucsDirStr + "/share/qucs/lang/");
QucsSettings.LibDir =
QDir::convertSeparators (QucsDirStr + "/share/qucs/library/");
} else {
QucsSettings.BinDir = BINARYDIR;
QucsSettings.BitmapDir = BITMAPDIR;
QucsSettings.LangDir = LANGUAGEDIR;
QucsSettings.LibDir = LIBRARYDIR;
}
QucsSettings.Editor = QucsSettings.BinDir + "qucsedit";
2004-12-27 18:37:29 +00:00
QucsWorkDir.setPath(QDir::homeDirPath()+QDir::convertSeparators ("/.qucs"));
QucsHomeDir.setPath(QDir::homeDirPath()+QDir::convertSeparators ("/.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 );
tor.load( QString("qucs_") + QTextCodec::locale(), QucsSettings.LangDir);
2003-12-07 15:21:31 +00:00
a.installTranslator( &tor );
2004-05-25 19:10:00 +00:00
2004-12-04 18:41:22 +00:00
QucsMain = new QucsApp();
a.setMainWidget(QucsMain);
QucsMain->show();
2004-06-12 12:35:04 +00:00
int result = a.exec();
2004-12-04 18:41:22 +00:00
saveApplSettings(QucsMain);
2004-06-12 12:35:04 +00:00
return result;
2003-10-15 21:32:36 +00:00
}