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. *
|
|
|
|
|
* *
|
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
2003-11-29 11:28:15 +00:00
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
# include <config.h>
|
|
|
|
|
#endif
|
2012-10-31 09:15:06 +01:00
|
|
|
|
#include <QtGui>
|
2005-02-28 09:30:41 +00:00
|
|
|
|
#include <stdlib.h>
|
2009-04-16 12:56:29 +00:00
|
|
|
|
#include <ctype.h>
|
2005-02-28 09:30:41 +00:00
|
|
|
|
#include <math.h>
|
2006-07-03 08:27:35 +00:00
|
|
|
|
#include <locale.h>
|
2004-11-06 16:29:51 +00:00
|
|
|
|
|
2003-10-15 21:32:36 +00:00
|
|
|
|
#include <qapplication.h>
|
|
|
|
|
#include <qstring.h>
|
2006-06-02 07:47:24 +00:00
|
|
|
|
#include <qstringlist.h>
|
2003-10-15 21:32:36 +00:00
|
|
|
|
#include <qtextcodec.h>
|
|
|
|
|
#include <qtranslator.h>
|
2004-05-25 19:10:00 +00:00
|
|
|
|
#include <qfile.h>
|
2012-10-31 09:15:06 +01:00
|
|
|
|
#include <q3textstream.h>
|
2004-05-25 19:10:00 +00:00
|
|
|
|
#include <qmessagebox.h>
|
2004-12-27 18:37:29 +00:00
|
|
|
|
#include <qregexp.h>
|
2003-10-15 21:32:36 +00:00
|
|
|
|
|
2005-02-28 09:30:41 +00:00
|
|
|
|
#include "qucs.h"
|
|
|
|
|
#include "main.h"
|
|
|
|
|
#include "node.h"
|
2004-05-25 19:10:00 +00:00
|
|
|
|
|
2005-02-28 09:30:41 +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
|
|
|
|
|
2006-07-03 06:02:08 +00:00
|
|
|
|
QucsApp *QucsMain; // the Qucs application itself
|
|
|
|
|
QString lastDir; // to remember last directory for several dialogs
|
2004-12-04 18:41:22 +00:00
|
|
|
|
|
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"));
|
2012-10-31 09:15:06 +01:00
|
|
|
|
if(!file.open(QIODevice::ReadOnly)) return false; // settings file doesn't exist
|
2004-05-25 19:10:00 +00:00
|
|
|
|
|
2012-10-31 09:15:06 +01:00
|
|
|
|
Q3TextStream stream(&file);
|
2004-05-25 19:10:00 +00:00
|
|
|
|
QString Line, Setting;
|
|
|
|
|
|
|
|
|
|
bool ok;
|
|
|
|
|
while(!stream.atEnd()) {
|
|
|
|
|
Line = stream.readLine();
|
|
|
|
|
Setting = Line.section('=',0,0);
|
2006-02-14 07:25:27 +00:00
|
|
|
|
Line = Line.section('=',1).stripWhiteSpace();
|
2004-05-25 19:10:00 +00:00
|
|
|
|
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") {
|
2006-07-03 06:02:08 +00:00
|
|
|
|
QucsSettings.BGColor.setNamedColor(Line); }
|
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; }
|
2005-11-28 07:17:35 +00:00
|
|
|
|
else if(Setting == "FileType") {
|
|
|
|
|
QucsSettings.FileTypes.append(Line); }
|
2006-02-14 07:25:27 +00:00
|
|
|
|
else if(Setting == "Language") {
|
|
|
|
|
QucsSettings.Language = Line; }
|
2006-07-03 06:02:08 +00:00
|
|
|
|
else if(Setting == "SyntaxColor") {
|
2009-10-25 09:03:30 +00:00
|
|
|
|
QucsSettings.Comment.setNamedColor(Line.section(",", 0,0));
|
|
|
|
|
QucsSettings.String.setNamedColor(Line.section(",", 1,1));
|
|
|
|
|
QucsSettings.Integer.setNamedColor(Line.section(",", 2,2));
|
|
|
|
|
QucsSettings.Real.setNamedColor(Line.section(",", 3,3));
|
|
|
|
|
QucsSettings.Character.setNamedColor(Line.section(",", 4,4));
|
|
|
|
|
QucsSettings.Type.setNamedColor(Line.section(",", 5,5));
|
|
|
|
|
QucsSettings.Attribute.setNamedColor(Line.section(",", 6,6));
|
|
|
|
|
QucsSettings.Directive.setNamedColor(Line.section(",", 7,7));
|
|
|
|
|
QucsSettings.Task.setNamedColor(Line.section(",", 8,8));
|
2006-07-03 06:02:08 +00:00
|
|
|
|
}
|
2007-05-04 16:30:20 +00:00
|
|
|
|
else if(Setting == "NodeWiring") {
|
|
|
|
|
QucsSettings.NodeWiring = Line.toInt(&ok); }
|
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"));
|
2012-10-31 09:15:06 +01:00
|
|
|
|
if(!file.open(QIODevice::WriteOnly)) { // settings file cannot be created
|
2004-05-25 19:10:00 +00:00
|
|
|
|
QMessageBox::warning(0, QObject::tr("Warning"),
|
|
|
|
|
QObject::tr("Cannot save settings !"));
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2012-10-31 09:15:06 +01:00
|
|
|
|
Q3TextStream stream(&file);
|
2004-05-25 19:10:00 +00:00
|
|
|
|
|
|
|
|
|
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"
|
2006-02-14 07:25:27 +00:00
|
|
|
|
<< "Language=" << QucsSettings.Language << "\n"
|
2006-03-28 06:10:52 +00:00
|
|
|
|
<< "BGColor=" << QucsSettings.BGColor.name() << "\n"
|
2004-06-26 07:05:47 +00:00
|
|
|
|
<< "maxUndo=" << QucsSettings.maxUndo << "\n"
|
2006-07-03 06:02:08 +00:00
|
|
|
|
<< "Editor=" << QucsSettings.Editor << "\n"
|
|
|
|
|
<< "SyntaxColor="
|
2009-10-25 09:03:30 +00:00
|
|
|
|
<< QucsSettings.Comment.name() << ","
|
|
|
|
|
<< QucsSettings.String.name() << ","
|
|
|
|
|
<< QucsSettings.Integer.name() << ","
|
|
|
|
|
<< QucsSettings.Real.name() << ","
|
|
|
|
|
<< QucsSettings.Character.name() << ","
|
|
|
|
|
<< QucsSettings.Type.name() << ","
|
|
|
|
|
<< QucsSettings.Attribute.name() << ","
|
|
|
|
|
<< QucsSettings.Directive.name() << ","
|
|
|
|
|
<< QucsSettings.Task.name() << "\n"
|
2007-05-04 16:30:20 +00:00
|
|
|
|
<< "NodeWiring=" << QucsSettings.NodeWiring << "\n";
|
2004-05-29 13:05:04 +00:00
|
|
|
|
|
2005-11-28 07:17:35 +00:00
|
|
|
|
QStringList::Iterator it = QucsSettings.FileTypes.begin();
|
|
|
|
|
while(it != QucsSettings.FileTypes.end())
|
|
|
|
|
stream << "FileType=" << (*(it++)) << "\n";
|
|
|
|
|
|
|
|
|
|
file.close();
|
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) == '-') {
|
2012-10-31 09:15:06 +01:00
|
|
|
|
Text.replace(0,1,'j');
|
2004-06-16 17:41:33 +00:00
|
|
|
|
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();
|
2012-12-03 14:19:01 +01:00
|
|
|
|
if(Unit.length()>0)
|
|
|
|
|
{
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
Factor = 1.0;
|
2004-12-27 18:37:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2005-08-01 06:08:52 +00:00
|
|
|
|
// #########################################################################
|
|
|
|
|
QString num2str(double Num)
|
|
|
|
|
{
|
|
|
|
|
char c = 0;
|
2005-08-15 06:04:52 +00:00
|
|
|
|
double cal = fabs(Num);
|
|
|
|
|
if(cal > 1e-20) {
|
|
|
|
|
cal = log10(cal) / 3.0;
|
|
|
|
|
if(cal < -0.2) cal -= 0.98;
|
|
|
|
|
int Expo = int(cal);
|
|
|
|
|
|
|
|
|
|
if(Expo >= -5) if(Expo <= 4)
|
|
|
|
|
switch(Expo) {
|
|
|
|
|
case -5: c = 'f'; break;
|
|
|
|
|
case -4: c = 'p'; break;
|
|
|
|
|
case -3: c = 'n'; break;
|
|
|
|
|
case -2: c = 'u'; break;
|
|
|
|
|
case -1: c = 'm'; break;
|
|
|
|
|
case 1: c = 'k'; break;
|
|
|
|
|
case 2: c = 'M'; break;
|
|
|
|
|
case 3: c = 'G'; break;
|
|
|
|
|
case 4: c = 'T'; break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(c) Num /= pow(10.0, double(3*Expo));
|
|
|
|
|
}
|
2005-08-01 06:08:52 +00:00
|
|
|
|
|
|
|
|
|
QString Str = QString::number(Num);
|
|
|
|
|
if(c) Str += c;
|
|
|
|
|
|
|
|
|
|
return Str;
|
|
|
|
|
}
|
|
|
|
|
|
2005-07-15 06:00:30 +00:00
|
|
|
|
// #########################################################################
|
|
|
|
|
void convert2Unicode(QString& Text)
|
|
|
|
|
{
|
|
|
|
|
bool ok;
|
|
|
|
|
int i = 0;
|
|
|
|
|
QString n;
|
|
|
|
|
unsigned short ch;
|
|
|
|
|
while((i=Text.find("\\x", i)) >= 0) {
|
|
|
|
|
n = Text.mid(i, 6);
|
|
|
|
|
ch = n.mid(2).toUShort(&ok, 16);
|
|
|
|
|
if(ok) Text.replace(n, QChar(ch));
|
|
|
|
|
i++;
|
|
|
|
|
}
|
|
|
|
|
Text.replace("\\n", "\n");
|
|
|
|
|
Text.replace("\\\\", "\\");
|
|
|
|
|
}
|
|
|
|
|
|
2005-10-24 06:10:35 +00:00
|
|
|
|
// #########################################################################
|
2006-12-18 06:57:24 +00:00
|
|
|
|
void convert2ASCII(QString& Text)
|
|
|
|
|
{
|
|
|
|
|
Text.replace('\\', "\\\\");
|
|
|
|
|
Text.replace('\n', "\\n");
|
|
|
|
|
|
|
|
|
|
int i = 0;
|
|
|
|
|
QChar ch;
|
|
|
|
|
char Str[8];
|
2012-11-01 11:29:46 +01:00
|
|
|
|
while(Text.size()<i) { // convert special characters
|
2006-12-18 06:57:24 +00:00
|
|
|
|
if(ch > QChar(0x7F)) {
|
|
|
|
|
sprintf(Str, "\\x%04X", ch.unicode());
|
|
|
|
|
Text.replace(ch, Str);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2007-05-10 21:54:06 +00:00
|
|
|
|
// #########################################################################
|
|
|
|
|
QString properAbsFileName(const QString& Name)
|
|
|
|
|
{
|
|
|
|
|
QString s = Name;
|
|
|
|
|
QFileInfo Info(s);
|
|
|
|
|
if(Info.isRelative()) s = QucsWorkDir.filePath(s);
|
|
|
|
|
return QDir::cleanDirPath(s);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// #########################################################################
|
|
|
|
|
QString properFileName(const QString& Name)
|
|
|
|
|
{
|
|
|
|
|
QFileInfo Info(Name);
|
|
|
|
|
return Info.fileName();
|
|
|
|
|
}
|
|
|
|
|
|
2006-12-18 06:57:24 +00:00
|
|
|
|
// #########################################################################
|
2005-10-24 06:10:35 +00:00
|
|
|
|
// Takes a file name (with path) and replaces all special characters.
|
2007-05-10 21:54:06 +00:00
|
|
|
|
QString properName(const QString& Name)
|
2005-10-24 06:10:35 +00:00
|
|
|
|
{
|
|
|
|
|
QString s = Name;
|
|
|
|
|
QFileInfo Info(s);
|
|
|
|
|
if(Info.extension() == "sch")
|
|
|
|
|
s = s.left(s.length()-4);
|
|
|
|
|
if(s.at(0) <= '9') if(s.at(0) >= '0')
|
|
|
|
|
s = 'n' + s;
|
|
|
|
|
s.replace(QRegExp("\\W"), "_"); // none [a-zA-Z0-9] into "_"
|
|
|
|
|
s.replace("__", "_"); // '__' not allowed in VHDL
|
|
|
|
|
if(s.at(0) == '_')
|
|
|
|
|
s = 'n' + s;
|
|
|
|
|
return s;
|
|
|
|
|
}
|
|
|
|
|
|
2009-04-16 12:56:29 +00:00
|
|
|
|
// #########################################################################
|
|
|
|
|
// Creates and returns delay time for VHDL entities.
|
|
|
|
|
bool VHDL_Delay(QString& td, const QString& Name)
|
|
|
|
|
{
|
|
|
|
|
if(strtod(td.latin1(), 0) != 0.0) { // delay time property
|
|
|
|
|
if(!VHDL_Time(td, Name))
|
|
|
|
|
return false; // time has not VHDL format
|
|
|
|
|
td = " after " + td;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
else if(isalpha(td.latin1()[0])) {
|
|
|
|
|
td = " after " + td;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
td = "";
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-16 07:19:57 +00:00
|
|
|
|
// #########################################################################
|
|
|
|
|
// Checks and corrects a time (number & unit) according VHDL standard.
|
|
|
|
|
bool VHDL_Time(QString& t, const QString& Name)
|
|
|
|
|
{
|
|
|
|
|
char *p;
|
|
|
|
|
double Time = strtod(t.latin1(), &p);
|
|
|
|
|
while(*p == ' ') p++;
|
|
|
|
|
for(;;) {
|
|
|
|
|
if(Time >= 0.0) {
|
|
|
|
|
if(strcmp(p, "fs") == 0) break;
|
|
|
|
|
if(strcmp(p, "ps") == 0) break;
|
|
|
|
|
if(strcmp(p, "ns") == 0) break;
|
|
|
|
|
if(strcmp(p, "us") == 0) break;
|
|
|
|
|
if(strcmp(p, "ms") == 0) break;
|
|
|
|
|
if(strcmp(p, "sec") == 0) break;
|
|
|
|
|
if(strcmp(p, "min") == 0) break;
|
|
|
|
|
if(strcmp(p, "hr") == 0) break;
|
|
|
|
|
}
|
|
|
|
|
t = "<EFBFBD>" + QObject::tr("Error: Wrong time format in \"%1\". Use positive number with units").arg(Name)
|
|
|
|
|
+ " fs, ps, ns, us, ms, sec, min, hr.\n";
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
t = QString::number(Time) + " " + QString(p); // the space is mandatory !
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2009-04-17 15:04:51 +00:00
|
|
|
|
// #########################################################################
|
|
|
|
|
// Returns parameters for Verilog modules.
|
|
|
|
|
QString Verilog_Param(const QString Value)
|
|
|
|
|
{
|
|
|
|
|
if(strtod(Value.latin1(), 0) != 0.0) {
|
|
|
|
|
QString td = Value;
|
|
|
|
|
if(!Verilog_Time(td, "parameter"))
|
|
|
|
|
return Value;
|
|
|
|
|
else
|
|
|
|
|
return td;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
return Value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// #########################################################################
|
|
|
|
|
// Creates and returns delay time for Verilog modules.
|
|
|
|
|
bool Verilog_Delay(QString& td, const QString& Name)
|
|
|
|
|
{
|
|
|
|
|
if(strtod(td.latin1(), 0) != 0.0) { // delay time property
|
|
|
|
|
if(!Verilog_Time(td, Name))
|
|
|
|
|
return false; // time has not Verilog format
|
|
|
|
|
td = " #" + td;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
else if(isalpha(td.latin1()[0])) {
|
|
|
|
|
td = " #" + td;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
td = "";
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2007-03-26 19:50:51 +00:00
|
|
|
|
// #########################################################################
|
|
|
|
|
// Checks and corrects a time (number & unit) according Verilog standard.
|
|
|
|
|
bool Verilog_Time(QString& t, const QString& Name)
|
|
|
|
|
{
|
|
|
|
|
char *p;
|
|
|
|
|
double Time = strtod(t.latin1(), &p);
|
|
|
|
|
double factor = 1.0;
|
|
|
|
|
while(*p == ' ') p++;
|
|
|
|
|
for(;;) {
|
|
|
|
|
if(Time >= 0.0) {
|
|
|
|
|
if(strcmp(p, "fs") == 0) { factor = 1e-3; break; }
|
|
|
|
|
if(strcmp(p, "ps") == 0) { factor = 1; break; }
|
|
|
|
|
if(strcmp(p, "ns") == 0) { factor = 1e3; break; }
|
|
|
|
|
if(strcmp(p, "us") == 0) { factor = 1e6; break; }
|
|
|
|
|
if(strcmp(p, "ms") == 0) { factor = 1e9; break; }
|
|
|
|
|
if(strcmp(p, "sec") == 0) { factor = 1e12; break; }
|
|
|
|
|
if(strcmp(p, "min") == 0) { factor = 1e12*60; break; }
|
|
|
|
|
if(strcmp(p, "hr") == 0) { factor = 1e12*60*60; break; }
|
|
|
|
|
}
|
|
|
|
|
t = "<EFBFBD>" + QObject::tr("Error: Wrong time format in \"%1\". Use positive number with units").arg(Name)
|
|
|
|
|
+ " fs, ps, ns, us, ms, sec, min, hr.\n";
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2009-04-17 15:04:51 +00:00
|
|
|
|
t = QString::number(Time*factor);
|
2007-03-26 19:50:51 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2006-06-02 07:47:24 +00:00
|
|
|
|
// #########################################################################
|
|
|
|
|
bool checkVersion(QString& Line)
|
|
|
|
|
{
|
|
|
|
|
QStringList sl = QStringList::split('.',PACKAGE_VERSION);
|
|
|
|
|
QStringList ll = QStringList::split('.',Line);
|
|
|
|
|
if (ll.count() != 3 || sl.count() != 3)
|
|
|
|
|
return false;
|
2012-10-31 11:11:56 +01:00
|
|
|
|
int sv = (int)sl.at(1).toLongLong()*10000+sl.at(2).toLongLong()*100;
|
|
|
|
|
int lv = (int)ll.at(1).toLongLong()*10000+ll.at(2).toLongLong()*100;
|
2006-06-02 07:47:24 +00:00
|
|
|
|
if(lv > sv) // wrong version number ? (only backward compatible)
|
|
|
|
|
return false;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
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[])
|
|
|
|
|
{
|
2005-02-28 09:30:41 +00:00
|
|
|
|
// apply default settings
|
|
|
|
|
QucsSettings.font = QFont("Helvetica", 12);
|
|
|
|
|
QucsSettings.largeFontSize = 16.0;
|
|
|
|
|
QucsSettings.maxUndo = 20;
|
2007-05-04 16:30:20 +00:00
|
|
|
|
QucsSettings.NodeWiring = 0;
|
2005-02-28 09:30:41 +00:00
|
|
|
|
|
2008-11-27 18:28:12 +00:00
|
|
|
|
// initially center the application
|
|
|
|
|
QApplication a(argc, argv);
|
|
|
|
|
QDesktopWidget *d = a.desktop();
|
|
|
|
|
int w = d->width();
|
|
|
|
|
int h = d->height();
|
|
|
|
|
QucsSettings.x = w/8;
|
|
|
|
|
QucsSettings.y = h/8;
|
|
|
|
|
QucsSettings.dx = w*3/4;
|
|
|
|
|
QucsSettings.dy = h*3/4;
|
|
|
|
|
|
2005-02-28 09:30:41 +00:00
|
|
|
|
// 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/");
|
2005-07-06 07:37:22 +00:00
|
|
|
|
QucsSettings.LibDir =
|
|
|
|
|
QDir::convertSeparators (QucsDirStr + "/share/qucs/library/");
|
2011-03-04 16:32:38 +00:00
|
|
|
|
QucsSettings.OctaveDir =
|
|
|
|
|
QDir::convertSeparators (QucsDirStr + "/share/qucs/octave/");
|
2005-02-28 09:30:41 +00:00
|
|
|
|
} else {
|
|
|
|
|
QucsSettings.BinDir = BINARYDIR;
|
|
|
|
|
QucsSettings.BitmapDir = BITMAPDIR;
|
|
|
|
|
QucsSettings.LangDir = LANGUAGEDIR;
|
2005-07-06 07:37:22 +00:00
|
|
|
|
QucsSettings.LibDir = LIBRARYDIR;
|
2011-03-04 16:32:38 +00:00
|
|
|
|
QucsSettings.OctaveDir = OCTAVEDIR;
|
2005-02-28 09:30:41 +00:00
|
|
|
|
}
|
|
|
|
|
QucsSettings.Editor = QucsSettings.BinDir + "qucsedit";
|
2004-12-27 18:37:29 +00:00
|
|
|
|
|
2005-02-28 09:30:41 +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();
|
|
|
|
|
|
2006-07-03 06:02:08 +00:00
|
|
|
|
if(!QucsSettings.BGColor.isValid())
|
|
|
|
|
QucsSettings.BGColor.setRgb(255, 250, 225);
|
|
|
|
|
|
2009-10-25 09:03:30 +00:00
|
|
|
|
// syntax highlighting
|
|
|
|
|
if(!QucsSettings.Comment.isValid())
|
|
|
|
|
QucsSettings.Comment = Qt::gray;
|
|
|
|
|
if(!QucsSettings.String.isValid())
|
|
|
|
|
QucsSettings.String = Qt::red;
|
|
|
|
|
if(!QucsSettings.Integer.isValid())
|
|
|
|
|
QucsSettings.Integer = Qt::blue;
|
|
|
|
|
if(!QucsSettings.Real.isValid())
|
|
|
|
|
QucsSettings.Real = Qt::darkMagenta;
|
|
|
|
|
if(!QucsSettings.Character.isValid())
|
|
|
|
|
QucsSettings.Character = Qt::magenta;
|
|
|
|
|
if(!QucsSettings.Type.isValid())
|
|
|
|
|
QucsSettings.Type = Qt::darkRed;
|
|
|
|
|
if(!QucsSettings.Attribute.isValid())
|
|
|
|
|
QucsSettings.Attribute = Qt::darkCyan;
|
|
|
|
|
if(!QucsSettings.Directive.isValid())
|
|
|
|
|
QucsSettings.Directive = Qt::darkCyan;
|
|
|
|
|
if(!QucsSettings.Task.isValid())
|
|
|
|
|
QucsSettings.Task = Qt::darkRed;
|
2006-07-03 06:02:08 +00:00
|
|
|
|
|
2006-08-31 13:22:11 +00:00
|
|
|
|
var = getenv ("ASCODIR");
|
|
|
|
|
if (var != NULL) {
|
|
|
|
|
QDir AscoDir = QDir (var);
|
|
|
|
|
QString AscoDirStr = AscoDir.canonicalPath ();
|
|
|
|
|
QucsSettings.AscoDir =
|
|
|
|
|
QDir::convertSeparators (AscoDirStr + "/bin/");
|
|
|
|
|
} else {
|
|
|
|
|
QucsSettings.AscoDir = "";
|
|
|
|
|
}
|
2006-07-03 06:02:08 +00:00
|
|
|
|
|
2004-05-25 19:10:00 +00:00
|
|
|
|
a.setFont(QucsSettings.font);
|
|
|
|
|
|
2003-10-15 21:32:36 +00:00
|
|
|
|
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);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
a.installTranslator( &tor );
|
2004-05-25 19:10:00 +00:00
|
|
|
|
|
2006-07-24 06:12:23 +00:00
|
|
|
|
// This seems to be neccessary on a few system to make strtod()
|
|
|
|
|
// work properly !???!
|
2006-07-03 08:27:35 +00:00
|
|
|
|
setlocale (LC_NUMERIC, "C");
|
2006-07-24 06:12:23 +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
|
|
|
|
}
|