qucs_s/qucs/main.cpp

216 lines
6.5 KiB
C++
Raw Normal View History

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. *
* *
***************************************************************************/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
2004-11-06 16:29:51 +00:00
#include "qucs.h"
#include "qucsview.h"
#include "main.h"
#include "node.h"
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>
2004-05-25 19:10:00 +00:00
tQucsSettings QucsSettings
2004-05-29 13:05:04 +00:00
= {0, 0, 600, 400, // position and size
2004-10-31 17:55:57 +00:00
QFont("Helvetica", 12), 16.0,
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
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";
QString s;
Format[4] = form;
Format[2] += Precision / 10;
Format[3] += Precision % 10;
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
}
s = Buffer;
return s;
}
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[])
{
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 );
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-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
}