qucs_s/qucs/main.cpp

120 lines
3.9 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
email : margraf@mwt.ee.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
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
#include "qucs.h"
2004-05-25 19:10:00 +00:00
#include "main.h"
tQucsSettings QucsSettings
= {0, 0, 600, 400, QFont("helvetica", 12), QColor(255, 250, 225)};
// #########################################################################
// Loads the settings file and stores the settings.
bool loadSettings()
{
QFile file(QDir::homeDirPath()+"/.qucs/qucsrc");
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") {
QucsSettings.font.fromString(Line); }
else if(Setting == "BGColor") {
QucsSettings.BGColor.setNamedColor(Line);
if(!QucsSettings.BGColor.isValid())
QucsSettings.BGColor.setRgb(255, 250, 225); }
}
file.close();
return true;
}
// #########################################################################
// Saves the settings in the settings file.
bool saveSettings(QucsApp *qucs)
{
QFile file(QDir::homeDirPath()+"/.qucs/qucsrc");
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"
<< "Font=" << QucsSettings.font.toString() << "\n"
<< "BGColor=" << qucs->view->viewport()->paletteBackgroundColor().name()
<< "\n";
file.close();
return true;
}
// #########################################################################
// ########## ##########
// ########## Program Start ##########
// ########## ##########
// #########################################################################
2003-10-15 21:32:36 +00:00
int main(int argc, char *argv[])
{
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
QucsApp *qucs = new QucsApp(&QucsSettings);
2003-10-15 21:32:36 +00:00
a.setMainWidget(qucs);
qucs->show();
2004-05-25 19:10:00 +00:00
int result = a.exec();
saveSettings(qucs);
return result;
2003-10-15 21:32:36 +00:00
}