mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
2004-08-30 Stefan Jahn <jahn@mwt.ee.tu-berlin.de>
* configure.ac: Checking for 'ieeefp.h'. 2004-08-30 Stefan Jahn <jahn@mwt.ee.tu-berlin.de> * diagrams/diagram.cpp: Including headers for finite(). * qucsinit.cpp (slotHelpAbout): Fixed typo. * qucs_ro.ts: Preliminary checkin of romanian translation. * qucs_de.ts: Updated german translation. 2004-08-30 Stefan Jahn <jahn@mwt.ee.tu-berlin.de> * componentdialog.cpp (slotSelectProperty): Fixed bug when longer descriptions without white spaces occur.
This commit is contained in:
parent
064169162e
commit
3f8005b537
@ -1,3 +1,7 @@
|
||||
2004-08-30 Stefan Jahn <jahn@mwt.ee.tu-berlin.de>
|
||||
|
||||
* configure.ac: Checking for 'ieeefp.h'.
|
||||
|
||||
2004-07-03 Stefan Jahn <stefan@lkcc.org>
|
||||
|
||||
* configure.ac: Ensured that the default prefix gets set early
|
||||
|
2
NEWS
2
NEWS
@ -27,7 +27,7 @@ Version 0.0.3
|
||||
-------------
|
||||
|
||||
* avoided working directory changes during program execution
|
||||
* translation into Polish, Rumanian
|
||||
* translations into Polish and Romanian
|
||||
* some new components (e.g. transistors)
|
||||
* some new operations (e.g. aligning)
|
||||
* undo/redo function
|
||||
|
@ -170,6 +170,9 @@ fi
|
||||
AC_SUBST(QT_LDFLAGS)
|
||||
AC_LANG(C)
|
||||
|
||||
# Check for additional header files.
|
||||
AC_CHECK_HEADERS([ieeefp.h])
|
||||
|
||||
# Check for path transformation.
|
||||
case $build_os in
|
||||
mingw* | cygwin*)
|
||||
|
@ -1,3 +1,13 @@
|
||||
2004-08-30 Stefan Jahn <jahn@mwt.ee.tu-berlin.de>
|
||||
|
||||
* diagrams/diagram.cpp: Including headers for finite().
|
||||
|
||||
* qucsinit.cpp (slotHelpAbout): Fixed typo.
|
||||
|
||||
* qucs_ro.ts: Preliminary checkin of romanian translation.
|
||||
|
||||
* qucs_de.ts: Updated german translation.
|
||||
|
||||
2004-08-29 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
|
||||
|
||||
* qucsdoc.cpp: changed the "copy..." functions
|
||||
|
@ -1,3 +1,8 @@
|
||||
2004-08-30 Stefan Jahn <jahn@mwt.ee.tu-berlin.de>
|
||||
|
||||
* componentdialog.cpp (slotSelectProperty): Fixed bug when
|
||||
longer descriptions without white spaces occur.
|
||||
|
||||
2004-08-24 Stefan Jahn <stefan@lkcc.org>
|
||||
|
||||
* componentdialog.cpp (correctDesc): New private function which
|
||||
|
@ -235,8 +235,12 @@ void ComponentDialog::slotSelectProperty(QListViewItem *item)
|
||||
|
||||
QString s = PropDesc;
|
||||
QFontMetrics metrics(QucsSettings.font); // get size of text
|
||||
while(metrics.width(s) > 270) // if description too long, cut it
|
||||
s = s.left(s.findRev(' ', -1)) + "....";
|
||||
while(metrics.width(s) > 270) { // if description too long, cut it
|
||||
if (s.findRev(' ') != -1)
|
||||
s = s.left(s.findRev(' ', -1)) + "....";
|
||||
else
|
||||
s = s.left(s.length()-5) + "....";
|
||||
}
|
||||
Description->setText(s);
|
||||
|
||||
if(List.count() >= 1) { // ComboBox with value list or line edit ?
|
||||
|
@ -2,7 +2,7 @@
|
||||
diagram.cpp - description
|
||||
-------------------
|
||||
begin : Thu Oct 2 2003
|
||||
copyright : (C) 2003 by Michael Margraf
|
||||
copyright : (C) 2003, 2004 by Michael Margraf
|
||||
email : michael.margraf@alumni.tu-berlin.de
|
||||
***************************************************************************/
|
||||
|
||||
@ -15,6 +15,10 @@
|
||||
* *
|
||||
***************************************************************************/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
# include <config.h>
|
||||
#endif
|
||||
|
||||
#include "diagram.h"
|
||||
|
||||
#include "../qucs.h"
|
||||
@ -23,11 +27,18 @@
|
||||
#include <float.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#if HAVE_IEEEFP_H
|
||||
# include <ieeefp.h>
|
||||
#endif
|
||||
|
||||
#include <qtextstream.h>
|
||||
#include <qmessagebox.h>
|
||||
#include <qregexp.h>
|
||||
#include <qdatetime.h>
|
||||
|
||||
#ifdef __MINGW32__
|
||||
# define finite(x) _finite(x)
|
||||
#endif
|
||||
|
||||
|
||||
Diagram::Diagram(int _cx, int _cy)
|
||||
|
@ -50,9 +50,9 @@ void PolarDiagram::calcCoordinate(double, double yr, double yi,
|
||||
// --------------------------------------------------------------
|
||||
bool PolarDiagram::calcDiagram()
|
||||
{
|
||||
Lines.clear();
|
||||
Texts.clear();
|
||||
Arcs.clear();
|
||||
if(!Lines.isEmpty()) Lines.clear();
|
||||
if(!Texts.isEmpty()) Texts.clear();
|
||||
if(!Arcs.isEmpty()) Arcs.clear();
|
||||
|
||||
// x and y line
|
||||
Lines.append(new Line(x2>>1, y2, x2>>1, 0, GridPen));
|
||||
|
@ -60,9 +60,9 @@ void RectDiagram::calcCoordinate(double x, double yr, double yi,
|
||||
// --------------------------------------------------------------
|
||||
bool RectDiagram::calcDiagram()
|
||||
{
|
||||
Lines.clear();
|
||||
Texts.clear();
|
||||
Arcs.clear();
|
||||
if(!Lines.isEmpty()) Lines.clear();
|
||||
if(!Texts.isEmpty()) Texts.clear();
|
||||
if(!Arcs.isEmpty()) Arcs.clear();
|
||||
|
||||
if(fabs(xmax-xmin) < 1e-200) { xmax += fabs(xmax); xmin -= fabs(xmin); }
|
||||
if(fabs(ymax-ymin) < 1e-200) { ymax += fabs(ymax); ymin -= fabs(ymin); }
|
||||
|
@ -53,9 +53,9 @@ void SmithDiagram::calcCoordinate(double, double yr, double yi,
|
||||
// calculate the circles and arcs of the smith chart
|
||||
bool SmithDiagram::calcDiagram()
|
||||
{
|
||||
Lines.clear();
|
||||
Texts.clear();
|
||||
Arcs.clear();
|
||||
if(!Lines.isEmpty()) Lines.clear();
|
||||
if(!Texts.isEmpty()) Texts.clear();
|
||||
if(!Arcs.isEmpty()) Arcs.clear();
|
||||
|
||||
xlow = ylow = 0.0;
|
||||
if(ymax > 1.01) xup = yup = 1.05*ymax;
|
||||
|
@ -42,9 +42,9 @@ TabDiagram::~TabDiagram()
|
||||
// calculates the text in the tabular
|
||||
bool TabDiagram::calcDiagram()
|
||||
{
|
||||
Lines.clear();
|
||||
Texts.clear();
|
||||
Arcs.clear();
|
||||
if(!Lines.isEmpty()) Lines.clear();
|
||||
if(!Texts.isEmpty()) Texts.clear();
|
||||
if(!Arcs.isEmpty()) Arcs.clear();
|
||||
|
||||
QSize r;
|
||||
QFontMetrics metrics(QucsSettings.font);
|
||||
|
@ -138,7 +138,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<source>All Files</source>
|
||||
<translation type="unfinished">Alle Dateien</translation>
|
||||
<translation>Alle Dateien</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -2072,39 +2072,39 @@ Ungültiger Zeilenanfang!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>sweep type</source>
|
||||
<translation type="unfinished">Durchlaufart</translation>
|
||||
<translation>Durchlaufart</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>polarity</source>
|
||||
<translation type="unfinished">Polarität</translation>
|
||||
<translation>Polarität</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>put operating points into dataset</source>
|
||||
<translation type="unfinished">Ausgabe der Arbeitspunkte in den Datensatz</translation>
|
||||
<translation>Ausgabe der Arbeitspunkte in den Datensatz</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>put result into dataset</source>
|
||||
<translation type="unfinished">Ergebnis in den Datensatz ausgeben</translation>
|
||||
<translation>Ergebnis in den Datensatz ausgeben</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>quasi-static microstrip model</source>
|
||||
<translation type="unfinished">quasi-statisches Mikrostreifenmodell</translation>
|
||||
<translation>quasi-statisches Mikrostreifenmodell</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>microstrip open end model</source>
|
||||
<translation type="unfinished">Modell der offenen Mikrostreifenleitung</translation>
|
||||
<translation>Modell der offenen Mikrostreifenleitung</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>schematic symbol</source>
|
||||
<translation type="unfinished">Schaltkreissymbol</translation>
|
||||
<translation>Schaltkreissymbol</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>calculate noise parameters</source>
|
||||
<translation type="unfinished">Rauschparameter berechnen</translation>
|
||||
<translation>Rauschparameter berechnen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>interpolation type</source>
|
||||
<translation type="unfinished">Interpolationsraum</translation>
|
||||
<translation>Interpolationsraum</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -4899,46 +4899,51 @@ Sets selected elements on grid</source>
|
||||
|
||||
Setzt ausgewählte Elemente auf das Gitternetz</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rumanian by Radu Circa
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close Project</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Projekt schließen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Close Project</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Projekt &schließen</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close current project</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Schließt das aktuelle Projekt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close Project
|
||||
|
||||
Closes the current project</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Projekt schließen
|
||||
|
||||
Schließt das aktuelle Projekt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Print Selected Elements</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Auswahl drucken</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Print Selection...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Drucke Auswahl...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Prints Selected Elements</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Druckt ausgewählte Elemente</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Print Selected Elements
|
||||
|
||||
Prints selected elements of the current document</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Auswahl drucken
|
||||
|
||||
Druckt ausgewählte Elemente des aktuellen Dokuments</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Romanian by Radu Circa
|
||||
</source>
|
||||
<translation>Rumänisch von Radu Circa
|
||||
</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
@ -3299,11 +3299,6 @@ Distribute vertically selected elements</source>
|
||||
Sets selected elements on grid</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rumanian by Radu Circa
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close Project</source>
|
||||
<translation type="unfinished"></translation>
|
||||
@ -3340,6 +3335,11 @@ Closes the current project</source>
|
||||
Prints selected elements of the current document</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Romanian by Radu Circa
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QucsSettingsDialog</name>
|
||||
|
@ -4469,11 +4469,6 @@ Distrubuisce uniformemente in verticale</translation>
|
||||
Sets selected elements on grid</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rumanian by Radu Circa
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close Project</source>
|
||||
<translation type="unfinished"></translation>
|
||||
@ -4510,6 +4505,11 @@ Closes the current project</source>
|
||||
Prints selected elements of the current document</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Romanian by Radu Circa
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QucsSettingsDialog</name>
|
||||
|
@ -3543,11 +3543,6 @@ Distribute vertically selected elements</source>
|
||||
Sets selected elements on grid</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Rumanian by Radu Circa
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close Project</source>
|
||||
<translation type="unfinished"></translation>
|
||||
@ -3584,6 +3579,11 @@ Closes the current project</source>
|
||||
Prints selected elements of the current document</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Romanian by Radu Circa
|
||||
</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QucsSettingsDialog</name>
|
||||
|
1746
qucs/qucs_ro.ts
1746
qucs/qucs_ro.ts
File diff suppressed because it is too large
Load Diff
@ -723,7 +723,7 @@ void QucsInit::slotHelpAbout()
|
||||
tr("Translations:\n")+
|
||||
tr("German by Stefan Jahn\n")+
|
||||
tr("Polish by Dariusz Pienkowski\n")+
|
||||
tr("Rumanian by Radu Circa\n")+
|
||||
tr("Romanian by Radu Circa\n")+
|
||||
tr("French by Eric Marzolf\n")+
|
||||
tr("Italian by Giorgio Luparia"));
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user