Started porting qucstrans to Qt4

Most of the code compiles. The QStackedWidgtes and QGroupBox
need reimplementation. It is currenlty a mess of parent and child
widgets. Thigs are different on Qt4
Perhaps the following:
GroupBox > GridLayout > addWidgets > setLayout

Fixed radio buttons. Removed StackedWidgets

Compilation tested without Qt3Support.
Not thoroughly tested. Input and outputs also look OK.
Not sure about the menu space on other platforms (Mac here).
This commit is contained in:
Guilherme Brondani Torri 2013-05-28 20:39:07 +02:00
parent 7712676b17
commit 20d8cf1f1e
7 changed files with 392 additions and 377 deletions

View File

@ -19,20 +19,17 @@
# include <config.h>
#endif
#include <qlayout.h>
#include <q3hbox.h>
#include <qpushbutton.h>
#include <q3textedit.h>
//Added by qt3to4:
#include <Q3VBoxLayout>
#include <QPushButton>
#include <QTextEdit>
#include <QVBoxLayout>
#include "helpdialog.h"
HelpDialog::HelpDialog(QWidget *parent)
: QDialog(parent, 0, false, Qt::WDestructiveClose)
: QDialog(parent) //, 0, false, Qt::WDestructiveClose)
{
setCaption("QucsTranscalc "+tr("Help"));
setWindowTitle("QucsTranscalc "+tr("Help"));
// -------- set help text into dialog ------------
QString s(tr("QucsTranscalc is an analysis and synthesis tool for "
@ -48,12 +45,12 @@ HelpDialog::HelpDialog(QWidget *parent)
// -------- create dialog widgets ------------
resize(350, 230);
vLayout = new Q3VBoxLayout(this);
vLayout = new QVBoxLayout(this);
vLayout->setMargin(3);
vLayout->setSpacing(3);
Text = new Q3TextEdit(s, QString::null, this);
Text->setTextFormat(Qt::PlainText);
Text = new QTextEdit(s, this);
//Text->setTextFormat(Qt::PlainText);
Text->setReadOnly(true);
Text->setMinimumSize(300,200);
vLayout->addWidget(Text);

View File

@ -18,12 +18,11 @@
#ifndef HELPDIALOG_H
#define HELPDIALOG_H
#include <qdialog.h>
//Added by qt3to4:
#include <Q3VBoxLayout>
#include <QDialog>
#include <QVBoxLayout>
class Q3TextEdit;
class Q3VBoxLayout;
class QTextEdit;
class QVBoxLayout;
/**
*@author Stefan Jahn
@ -39,8 +38,8 @@ private slots:
void slotClose();
private:
Q3VBoxLayout *vLayout;
Q3TextEdit *Text;
QVBoxLayout *vLayout;
QTextEdit *Text;
};
#endif

View File

@ -21,15 +21,15 @@
#include <stdlib.h>
#include <qapplication.h>
#include <qstring.h>
#include <qtextcodec.h>
#include <qtranslator.h>
#include <qfile.h>
#include <q3textstream.h>
#include <qmessagebox.h>
#include <qdir.h>
#include <qfont.h>
#include <QApplication>
#include <QString>
#include <QTextCodec>
#include <QTranslator>
#include <Qfile>
#include <QTextStream>
#include <QMessageBox>
#include <QDir>
#include <QFont>
#include "qucstrans.h"
@ -42,34 +42,34 @@ bool loadSettings()
{
bool result = true;
QFile file(QDir::homeDirPath()+QDir::convertSeparators ("/.qucs/transrc"));
QFile file(QDir::homePath()+QDir::convertSeparators ("/.qucs/transrc"));
if(!file.open(QIODevice::ReadOnly))
result = false; // settings file doesn't exist
else {
Q3TextStream stream(&file);
QTextStream stream(&file);
QString Line, Setting;
while(!stream.atEnd()) {
Line = stream.readLine();
Setting = Line.section('=',0,0);
Line = Line.section('=',1,1);
if(Setting == "Mode") {
QucsSettings.Mode = Line.simplifyWhiteSpace();
QucsSettings.Mode = Line.simplified();
}
else if(Setting == "Frequency") {
Line = Line.simplifyWhiteSpace();
QucsSettings.freq_unit = QucsTranscalc::translateUnit(Line,0);
Line = Line.simplified();
QucsSettings.freq_unit = QucsTranscalc::translateUnit(Line.toAscii(),0);
}
else if(Setting == "Length") {
Line = Line.simplifyWhiteSpace();
QucsSettings.length_unit = QucsTranscalc::translateUnit(Line,1);
Line = Line.simplified();
QucsSettings.length_unit = QucsTranscalc::translateUnit(Line.toAscii(),1);
}
else if(Setting == "Resistance") {
Line = Line.simplifyWhiteSpace();
QucsSettings.res_unit = QucsTranscalc::translateUnit(Line,2);
Line = Line.simplified();
QucsSettings.res_unit = QucsTranscalc::translateUnit(Line.toAscii(),2);
}
else if(Setting == "Angle") {
Line = Line.simplifyWhiteSpace();
QucsSettings.ang_unit = QucsTranscalc::translateUnit(Line,3);
Line = Line.simplified();
QucsSettings.ang_unit = QucsTranscalc::translateUnit(Line.toAscii(),3);
}
else if(Setting == "TransWindow") {
QucsSettings.x = Line.section(",",0,0).toInt();
@ -82,16 +82,16 @@ bool loadSettings()
file.close();
}
file.setName(QDir::homeDirPath()+QDir::convertSeparators ("/.qucs/qucsrc"));
file.setFileName(QDir::homePath()+QDir::convertSeparators ("/.qucs/qucsrc"));
if(!file.open(QIODevice::ReadOnly))
result = true; // qucs settings not necessary
else {
Q3TextStream stream(&file);
QTextStream stream(&file);
QString Line, Setting;
while(!stream.atEnd()) {
Line = stream.readLine();
Setting = Line.section('=',0,0);
Line = Line.section('=',1,1).stripWhiteSpace();
Line = Line.section('=',1,1).trimmed();
if(Setting == "Font")
QucsSettings.font.fromString(Line);
else if(Setting == "Language")
@ -105,7 +105,7 @@ bool loadSettings()
// Saves the settings in the settings file.
bool saveApplSettings(QucsTranscalc *qucs)
{
QFile file(QDir::homeDirPath()+QDir::convertSeparators ("/.qucs/transrc"));
QFile file(QDir::homePath()+QDir::convertSeparators ("/.qucs/transrc"));
if(!file.open(QIODevice::WriteOnly)) {
QMessageBox::warning(0, QObject::tr("Warning"),
QObject::tr("Cannot save settings !"));
@ -113,7 +113,7 @@ bool saveApplSettings(QucsTranscalc *qucs)
}
QString Line;
Q3TextStream stream(&file);
QTextStream stream(&file);
stream << "Settings file, QucsTranscalc " PACKAGE_VERSION "\n"
<< "Mode=" << qucs->getMode() << "\n"
@ -161,7 +161,7 @@ int main(int argc, char *argv[])
QucsSettings.BitmapDir = BITMAPDIR;
QucsSettings.LangDir = LANGUAGEDIR;
}
QucsWorkDir.setPath (QDir::homeDirPath()+QDir::convertSeparators ("/.qucs"));
QucsWorkDir.setPath (QDir::homePath()+QDir::convertSeparators ("/.qucs"));
loadSettings();
QApplication a(argc, argv);
@ -170,17 +170,17 @@ int main(int argc, char *argv[])
QTranslator tor( 0 );
QString lang = QucsSettings.Language;
if(lang.isEmpty())
lang = QTextCodec::locale();
lang = QString(QLocale::system().name());
tor.load( QString("qucs_") + lang, QucsSettings.LangDir);
a.installTranslator( &tor );
QucsTranscalc *qucs = new QucsTranscalc();
a.setMainWidget(qucs);
qucs->raise();
qucs->resize(QucsSettings.dx, QucsSettings.dy); // size and position ...
qucs->move(QucsSettings.x, QucsSettings.y); // ... before "show" !!!
qucs->show();
qucs->loadFile(QDir::homeDirPath()+"/.qucs/transrc");
qucs->loadFile(QDir::homePath()+"/.qucs/transrc");
qucs->setMode(QucsSettings.Mode);
// optional file argument

View File

@ -19,15 +19,11 @@
# include <config.h>
#endif
#include <qlayout.h>
#include <q3hbox.h>
#include <q3hgroupbox.h>
#include <qpushbutton.h>
#include <q3vbox.h>
#include <qlabel.h>
#include <qcombobox.h>
//Added by qt3to4:
#include <Q3VBoxLayout>
#include <QGroupBox>
#include <QPushButton>
#include <QVBoxLayout>
#include <QLabel>
#include <QComboBox>
#include "optionsdialog.h"
#include "qucstrans.h"
@ -35,48 +31,62 @@
extern struct TransUnit TransUnits[];
OptionsDialog::OptionsDialog(QWidget *parent)
: QDialog(parent, 0, false, Qt::WDestructiveClose)
: QDialog(parent) //, 0, false, Qt::WDestructiveClose)
{
setCaption("QucsTranscalc "+tr("Options"));
setWindowTitle("QucsTranscalc "+tr("Options"));
// -------- create dialog widgets ------------
vLayout = new Q3VBoxLayout(this);
vLayout = new QVBoxLayout(this);
vLayout->setMargin(3);
vLayout->setSpacing(3);
Q3HGroupBox * h = new Q3HGroupBox(tr("Units"), this);
vLayout->addWidget(h);
Q3VBox * l = new Q3VBox(h);
QGroupBox * unitsGroup = new QGroupBox(tr("Units"));
QVBoxLayout * l = new QVBoxLayout();
l->setSpacing(3);
QLabel * lfr = new QLabel(tr("Frequency"),l);
QLabel * lfr = new QLabel(tr("Frequency"));
lfr->setAlignment (Qt::AlignRight);
QLabel * lle = new QLabel(tr("Length"),l);
l->addWidget(lfr);
QLabel * lle = new QLabel(tr("Length"));
lle->setAlignment (Qt::AlignRight);
QLabel * lre = new QLabel(tr("Resistance"),l);
l->addWidget(lle);
QLabel * lre = new QLabel(tr("Resistance"));
lre->setAlignment (Qt::AlignRight);
QLabel * lan = new QLabel(tr("Angle"),l);
l->addWidget(lre);
QLabel * lan = new QLabel(tr("Angle"));
lan->setAlignment (Qt::AlignRight);
Q3VBox * r = new Q3VBox(h);
l->addWidget(lan);
QVBoxLayout * r = new QVBoxLayout();
r->setSpacing(3);
for (int j = 0; j < 4; j++) {
units[j] = new QComboBox(r);
units[j] = new QComboBox(); //?r);
r->addWidget(units[j]);
for (int i = 0; TransUnits[j].units[i] != NULL; i++)
units[j]->insertItem (TransUnits[j].units[i]);
units[j]->addItem(TransUnits[j].units[i]);
}
units[0]->setCurrentItem (QucsSettings.freq_unit);
units[1]->setCurrentItem (QucsSettings.length_unit);
units[2]->setCurrentItem (QucsSettings.res_unit);
units[3]->setCurrentItem (QucsSettings.ang_unit);
units[0]->setCurrentIndex(QucsSettings.freq_unit);
units[1]->setCurrentIndex(QucsSettings.length_unit);
units[2]->setCurrentIndex(QucsSettings.res_unit);
units[3]->setCurrentIndex(QucsSettings.ang_unit);
Q3HBox * h2 = new Q3HBox(this);
vLayout->addWidget(h2);
QHBoxLayout * h1 = new QHBoxLayout();
h1->addLayout(l);
h1->addLayout(r);
unitsGroup->setLayout(h1);
QPushButton *ButtonSave = new QPushButton(tr("Save as Default"), h2);
vLayout->addWidget(unitsGroup);
QHBoxLayout * h2 = new QHBoxLayout();
QPushButton *ButtonSave = new QPushButton(tr("Save as Default"));
connect(ButtonSave, SIGNAL(clicked()), SLOT(slotSave()));
QPushButton *ButtonClose = new QPushButton(tr("Dismiss"), h2);
QPushButton *ButtonClose = new QPushButton(tr("Dismiss"));
connect(ButtonClose, SIGNAL(clicked()), SLOT(slotClose()));
ButtonClose->setFocus();
h2->addWidget(ButtonSave);
h2->addWidget(ButtonClose);
vLayout->addLayout(h2);
}
OptionsDialog::~OptionsDialog()
@ -91,9 +101,9 @@ void OptionsDialog::slotClose()
void OptionsDialog::slotSave()
{
QucsSettings.freq_unit = units[0]->currentItem();
QucsSettings.length_unit = units[1]->currentItem();
QucsSettings.res_unit = units[2]->currentItem();
QucsSettings.ang_unit = units[3]->currentItem();
QucsSettings.freq_unit = units[0]->currentIndex();
QucsSettings.length_unit = units[1]->currentIndex();
QucsSettings.res_unit = units[2]->currentIndex();
QucsSettings.ang_unit = units[3]->currentIndex();
accept();
}

View File

@ -18,11 +18,10 @@
#ifndef OPTIONSDIALOG_H
#define OPTIONSDIALOG_H
#include <qdialog.h>
//Added by qt3to4:
#include <Q3VBoxLayout>
#include <QDialog>
#include <QVBoxLayout>
class Q3VBoxLayout;
class QVBoxLayout;
class QComboBox;
/**
@ -40,7 +39,7 @@ private slots:
void slotSave();
private:
Q3VBoxLayout *vLayout;
QVBoxLayout *vLayout;
QComboBox *units[4];
};

View File

@ -18,46 +18,42 @@
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <QDate>
#include <QTime>
#include <qlayout.h>
#include <q3hbox.h>
#include <q3vbox.h>
#include <qpushbutton.h>
#include <qfile.h>
#include <q3textstream.h>
#include <qmessagebox.h>
#include <qtoolbutton.h>
#include <qimage.h>
#include <q3filedialog.h>
#include <qmenubar.h>
#include <qaction.h>
#include <q3popupmenu.h>
#include <q3hgroupbox.h>
#include <q3vgroupbox.h>
#include <qcombobox.h>
#include <qlabel.h>
#include <qlineedit.h>
#include <qimage.h>
#include <qicon.h>
#include <q3scrollview.h>
#include <qtooltip.h>
#include <qradiobutton.h>
#include <qstatusbar.h>
#include <qdir.h>
#include <q3buttongroup.h>
#include <q3widgetstack.h>
#include <qregexp.h>
#include <qvalidator.h>
#include <qclipboard.h>
#include <qapplication.h>
#include <QLayout>
#include <QPushButton>
#include <QFile>
#include <QTextStream>
#include <QMessageBox>
#include <QToolButton>
#include <QImage>
#include <QFileDialog>
#include <QMenuBar>
#include <QAction>
#include <QGroupBox>
#include <QComboBox>
#include <QLabel>
#include <QLineEdit>
#include <QImage>
#include <QIcon>
#include <QToolTip>
#include <QRadioButton>
#include <QStatusBar>
#include <QDir>
#include <QButtonGroup>
#include <QStackedWidget>
#include <QRegExp>
#include <QValidator>
#include <QClipboard>
#include <QApplication>
#include <QPixmap>
#include <QVBoxLayout>
#include <QCloseEvent>
#include <QAction>
#include <QDebug>
#include "qucstrans.h"
//Added by qt3to4:
#include <QPixmap>
#include <Q3VBoxLayout>
#include <QCloseEvent>
#include "helpdialog.h"
#include "optionsdialog.h"
#include "transline.h"
@ -75,7 +71,7 @@ static const int TransMaxBox[MAX_TRANS_BOXES] = { 9, 1, 4, 3 };
// Helper #defines for the below transmission line types.
#define TRANS_RADIOS { -1, -1, -1, -1 }
#define TRANS_QOBJS NULL, NULL, NULL, NULL, NULL
#define TRANS_QOBJS NULL, NULL, NULL, NULL
#define TRANS_END { NULL, 0, NULL, { NULL }, 0, TRANS_QOBJS }
#define TRANS_RESULT { NULL, NULL, NULL }
#define TRANS_RESULTS { TRANS_RESULT }
@ -257,107 +253,104 @@ struct TransUnit TransUnits[] = {
/* Constructor setups the GUI. */
QucsTranscalc::QucsTranscalc() {
// set application icon
setIcon (QPixmap(QucsSettings.BitmapDir + "big.qucs.xpm"));
setCaption("Qucs Transcalc " PACKAGE_VERSION);
setWindowIcon(QPixmap(QucsSettings.BitmapDir + "big.qucs.xpm"));
setWindowTitle("Qucs Transcalc " PACKAGE_VERSION);
QMenuBar * menuBar = new QMenuBar (this);
QMenuBar *menuBar = new QMenuBar (this);
// create file menu
Q3PopupMenu * fileMenu = new Q3PopupMenu ();
QAction * fileLoad =
new QAction (tr("&Load"), Qt::CTRL+Qt::Key_L, this,"");
fileLoad->addTo (fileMenu);
QMenu *fileMenu = new QMenu(tr("&File"));
QAction *fileLoad = new QAction(tr("&Load"), this);
fileLoad->setShortcut(Qt::CTRL+Qt::Key_L);
fileMenu->addAction(fileLoad);
connect(fileLoad, SIGNAL(activated()), SLOT(slotFileLoad()));
QAction * fileSave =
new QAction (tr("&Save"), Qt::CTRL+Qt::Key_S, this,"");
fileSave->addTo (fileMenu);
QAction *fileSave = new QAction (tr("&Save"), this);
fileSave->setShortcut(Qt::CTRL+Qt::Key_S);
fileMenu->addAction(fileSave);
connect(fileSave, SIGNAL(activated()), SLOT(slotFileSave()));
fileMenu->insertSeparator ();
QAction * fileOption =
new QAction (tr("&Options"), Qt::CTRL+Qt::Key_O, this,"");
fileOption->addTo (fileMenu);
fileMenu->addSeparator();
QAction *fileOption = new QAction (tr("&Options"), this);
fileOption->setShortcut(Qt::CTRL+Qt::Key_O);
fileMenu->addAction(fileOption);
connect(fileOption, SIGNAL(activated()), SLOT(slotOptions()));
fileMenu->insertSeparator ();
QAction * fileQuit =
new QAction (tr("&Quit"), Qt::CTRL+Qt::Key_Q, this,"");
fileQuit->addTo (fileMenu);
fileMenu->addSeparator();
QAction *fileQuit = new QAction (tr("&Quit"), this);
fileQuit->setShortcut(Qt::CTRL+Qt::Key_Q);
fileMenu->addAction(fileQuit);
connect(fileQuit, SIGNAL(activated()), SLOT(slotQuit()));
// create execute menu
Q3PopupMenu * execMenu = new Q3PopupMenu ();
QAction * execCopy =
new QAction (
tr("&Copy to Clipboard"), Qt::Key_F2, this,"");
execCopy->addTo (execMenu);
QMenu *execMenu = new QMenu(tr("&Execute"));
QAction *execCopy = new QAction(tr("&Copy to Clipboard"), this);
execCopy->setShortcut(Qt::Key_F2);
execMenu->addAction(execCopy);
connect(execCopy, SIGNAL(activated()), SLOT(slotCopyToClipBoard()));
QAction * execAnalyze =
new QAction (tr("&Analyze"), Qt::Key_F3, this,"");
execAnalyze->addTo (execMenu);
QAction *execAnalyze = new QAction(tr("&Analyze"), this);
execAnalyze->setShortcut(Qt::Key_F3);
execMenu->addAction(execAnalyze);
connect(execAnalyze, SIGNAL(activated()), SLOT(slotAnalyze()));
QAction * execSynthesize =
new QAction (tr("&Synthesize"), Qt::Key_F4, this,"");
execSynthesize->addTo (execMenu);
QAction *execSynthesize = new QAction (tr("&Synthesize"), this);
execSynthesize->setShortcut(Qt::Key_F4);
execMenu->addAction(execSynthesize);
connect(execSynthesize, SIGNAL(activated()), SLOT(slotSynthesize()));
// create help menu
Q3PopupMenu * helpMenu = new Q3PopupMenu ();
QAction * helpHelp =
new QAction ( tr("&Help"), Qt::Key_F1, this,"");
helpHelp->addTo (helpMenu);
QMenu *helpMenu = new QMenu(tr("&Help"));
QAction *helpHelp = new QAction(tr("&Help"), this);
helpHelp->setShortcut(Qt::Key_F1);
helpMenu->addAction(helpHelp);
connect(helpHelp, SIGNAL(activated()), SLOT(slotHelpIntro()));
QAction * helpAbout =
new QAction ( tr("About"), 0, helpMenu,"");
helpAbout->addTo (helpMenu);
QAction *helpAbout = new QAction(tr("About"), this);
helpMenu->addAction(helpAbout);
connect(helpAbout, SIGNAL(activated()), SLOT(slotAbout()));
// setup menu bar
menuBar->insertItem (tr("&File"), fileMenu);
menuBar->insertItem (tr("&Execute"), execMenu);
menuBar->insertSeparator ();
menuBar->insertItem (tr("&Help"), helpMenu);
// main box
Q3VBoxLayout * v = new Q3VBoxLayout (this);
v->setSpacing (0);
v->setMargin (0);
menuBar->addMenu(fileMenu);
menuBar->addMenu(execMenu);
menuBar->addSeparator();
menuBar->addMenu(helpMenu);
// === left
// seletion combo and figure
QVBoxLayout *vl = new QVBoxLayout();
/*
// reserve space for menubar
QWidget * Space = new QWidget (this);
Space->setFixedSize(5, menuBar->height() + 2);
v->addWidget (Space);
// main layout
Q3HBox * h = new Q3HBox (this);
h->setSpacing (5);
v->addWidget (h);
// left margin
QWidget * sl = new QWidget (h);
sl->setFixedWidth (2);
*/
// transmission line type choice
Q3VGroupBox * lineGroup = new Q3VGroupBox (tr("Transmission Line Type"), h);
QGroupBox * lineGroup = new QGroupBox (tr("Transmission Line Type"));
tranType = new QComboBox (lineGroup);
tranType->insertItem (tr("Microstrip Line"));
tranType->insertItem (tr("Coplanar Waveguide"));
tranType->insertItem (tr("Grounded Coplanar"));
tranType->insertItem (tr("Rectangular Waveguide"));
tranType->insertItem (tr("Coaxial Line"));
tranType->insertItem (tr("Coupled Microstrip"));
tranType->insertItem (0, tr("Microstrip Line"));
tranType->insertItem (1, tr("Coplanar Waveguide"));
tranType->insertItem (2, tr("Grounded Coplanar"));
tranType->insertItem (3, tr("Rectangular Waveguide"));
tranType->insertItem (4, tr("Coaxial Line"));
tranType->insertItem (5, tr("Coupled Microstrip"));
connect(tranType, SIGNAL(activated(int)), SLOT(slotSelectType(int)));
// setup transmission line picture
pix = new QLabel (lineGroup);
pix->setPixmap (QPixmap (QImage (QucsSettings.BitmapDir +
"microstrip.png")));
pix->setPixmap(QPixmap(QucsSettings.BitmapDir+"microstrip.png"));
Q3VBox * vm = new Q3VBox (h);
vm->setSpacing (3);
Q3VBox * vr = new Q3VBox (h);
vr->setSpacing (3);
QVBoxLayout *vfig = new QVBoxLayout();
vfig->addWidget(tranType);
vfig->addWidget(pix);
vfig->setSpacing(3);
lineGroup->setLayout(vfig);
// right margin
QWidget * sr = new QWidget (h);
sr->setFixedWidth (2);
vl->addWidget(lineGroup);
// init additional translations
setupTranslations ();
@ -365,46 +358,75 @@ QucsTranscalc::QucsTranscalc() {
// set current mode
mode = ModeMicrostrip;
// === middle
QVBoxLayout *vm = new QVBoxLayout();
vm->setSpacing (3);
// substrate parameter box
Q3HGroupBox * substrate = new Q3HGroupBox (tr("Substrate Parameters"), vm);
QGroupBox * substrate = new QGroupBox (tr("Substrate Parameters"));
vm->addWidget(substrate);
// Pass the GroupBox > create Grid layout > Add widgets > set layout
createPropItems (substrate, TRANS_SUBSTRATE);
// component parameter box
Q3HGroupBox * component = new Q3HGroupBox (tr("Component Parameters"), vm);
QGroupBox * component = new QGroupBox (tr("Component Parameters"));
vm->addWidget(component);
createPropItems (component, TRANS_COMPONENT);
// === right
QVBoxLayout *vr = new QVBoxLayout();
vr->setSpacing (3);
// physical parameter box
Q3HGroupBox * physical = new Q3HGroupBox (tr("Physical Parameters"), vr);
QGroupBox * physical = new QGroupBox (tr("Physical Parameters"));
vr->addWidget(physical);
createPropItems (physical, TRANS_PHYSICAL);
// analyze/synthesize buttons
Q3HBox * h2 = new Q3HBox (vr);
QPushButton * analyze = new QPushButton (tr("Analyze"), h2);
QToolTip::add (analyze, tr("Derive Electrical Parameters"));
QHBoxLayout * h2 = new QHBoxLayout();
QPushButton * analyze = new QPushButton (tr("Analyze"));
h2->addWidget(analyze);
analyze->setToolTip(tr("Derive Electrical Parameters"));
connect(analyze, SIGNAL(clicked()), SLOT(slotAnalyze()));
QPushButton * synthesize = new QPushButton (tr("Synthesize"), h2);
QToolTip::add (synthesize, tr("Compute Physical Parameters"));
QPushButton * synthesize = new QPushButton (tr("Synthesize"));
h2->addWidget(synthesize);
synthesize->setToolTip(tr("Compute Physical Parameters"));
connect(synthesize, SIGNAL(clicked()), SLOT(slotSynthesize()));
vr->addLayout(h2);
// electrical parameter box
Q3HGroupBox * electrical = new Q3HGroupBox (tr("Electrical Parameters"), vr);
QGroupBox * electrical = new QGroupBox (tr("Electrical Parameters"));
vr->addWidget(electrical);
createPropItems (electrical, TRANS_ELECTRICAL);
calculated = new Q3HGroupBox (tr("Calculated Results"), vr);
calculated = new QGroupBox (tr("Calculated Results"));
vr->addWidget(calculated);
// status line
statBar = new QStatusBar (this);
QLabel * statText = new QLabel ("Ready.", statBar);
statBar->message (tr("Ready."));
statBar->showMessage (tr("Ready."));
statBar->setFixedHeight (statText->height ());
v->addWidget (statBar);
delete statText;
QVBoxLayout *vmain = new QVBoxLayout(this);
QHBoxLayout *hmain = new QHBoxLayout();
hmain->addLayout(vl);
hmain->addLayout(vm);
hmain->addLayout(vr);
vmain->addLayout(hmain);
vmain->addWidget(statBar);
// setup calculated result bix
createResultItems (calculated);
updateSelection ();
// intantiate transmission lines
// instantiate transmission lines
TransLineTypes[0].line = new microstrip ();
TransLineTypes[0].line->setApplication (this);
TransLineTypes[1].line = new coplanar ();
@ -559,8 +581,8 @@ void QucsTranscalc::setupTranslations () {
/* Creates a property item 'val' in a parameter category specified by
its 'box'. */
void QucsTranscalc::createPropItem (Q3VBox ** parentRows, TransValue * val,
int box, Q3ButtonGroup * group) {
void QucsTranscalc::createPropItem (QGridLayout * parentGrid, TransValue * val,
int box, QButtonGroup * group) {
QRadioButton * r = NULL;
QLabel * l;
QLineEdit * e;
@ -568,13 +590,16 @@ void QucsTranscalc::createPropItem (Q3VBox ** parentRows, TransValue * val,
QDoubleValidator * v = new QDoubleValidator (this);
// name label
l = new QLabel (val->name, parentRows[0]);
l = new QLabel (val->name);
parentGrid->addWidget(l, parentGrid->rowCount(), 0);
l->setAlignment (Qt::AlignRight);
if (val->tip) QToolTip::add (l, *(val->tip));
if (val->tip) l->setToolTip(*(val->tip));
val->label = l;
// editable value text
e = new QLineEdit (parentRows[1]);
e = new QLineEdit ();
parentGrid->addWidget(e, parentGrid->rowCount()-1, 1);
e->setText (QString::number (val->value));
e->setAlignment (Qt::AlignRight);
e->setValidator (v);
@ -583,35 +608,31 @@ void QucsTranscalc::createPropItem (Q3VBox ** parentRows, TransValue * val,
val->lineedit = e;
// unit choice
c = new QComboBox (parentRows[2]);
c = new QComboBox ();
parentGrid->addWidget(c, parentGrid->rowCount()-1, 2);
if (!val->units[0]) {
c->insertItem ("NA");
c->addItem ("NA");
c->setDisabled(true);
}
else {
int nounit = 0;
for (int i = 0; val->units[i]; i++) {
c->insertItem (val->units[i]);
c->addItem (val->units[i]);
if (!strcmp (val->units[i], "NA")) nounit++;
}
c->setDisabled (nounit != 0);
c->setCurrentItem (0);
c->setCurrentIndex (0);
}
connect(c, SIGNAL(activated(int)), SLOT(slotValueChanged()));
val->combobox = c;
// special synthesize-computation choice
if (box == TRANS_PHYSICAL) {
Q3WidgetStack * s = new Q3WidgetStack(parentRows[3]);
s->setFixedSize (val->lineedit->height()-10, val->lineedit->height()-10);
r = new QRadioButton (s);
QWidget * spacer = new QWidget (s);
s->addWidget (r, 1);
s->addWidget (spacer, 2);
r = new QRadioButton ();
r->setDisabled (true);
r->setHidden(true);
val->radio = r;
val->stack = s;
group->insert(r);
parentGrid->addWidget(r, parentGrid->rowCount()-1, 3);
}
}
@ -620,9 +641,7 @@ void QucsTranscalc::createPropItem (Q3VBox ** parentRows, TransValue * val,
void QucsTranscalc::updatePropItem (TransValue * val) {
// update label text
val->label->setText (val->name);
QToolTip::remove (val->label);
if (val->tip) QToolTip::add (val->label, *(val->tip));
if (val->tip) val->label->setToolTip(*(val->tip));
// update editable value text
val->lineedit->setText (QString::number (val->value));
val->lineedit->setDisabled (!val->name);
@ -630,16 +649,16 @@ void QucsTranscalc::updatePropItem (TransValue * val) {
// update unit choice
val->combobox->clear();
if (!val->units[0]) {
val->combobox->insertItem ("NA");
val->combobox->addItem ("NA");
val->combobox->setDisabled (true);
}
else {
int nounit = 0;
for (int i = 0; val->units[i]; i++) {
val->combobox->insertItem (val->units[i]);
val->combobox->addItem (val->units[i]);
if (!strcmp (val->units[i], "NA")) nounit++;
}
val->combobox->setCurrentItem(val->unit);
val->combobox->setCurrentIndex(val->unit);
val->combobox->setDisabled (nounit);
}
}
@ -673,12 +692,12 @@ void QucsTranscalc::updateMode (void) {
// fix uninitialized memory
if (val->name == NULL) last++;
if (last) {
val->name = NULL;
val->value = 0;
val->tip = NULL;
val->units[0] = NULL;
val->name = NULL;
val->value = 0;
val->tip = NULL;
val->units[0] = NULL;
}
updatePropItem (val);
updatePropItem (val);
val++;
}
}
@ -690,22 +709,21 @@ void QucsTranscalc::updateSelection () {
struct TransValue * val = TransLineTypes[idx].array[TRANS_PHYSICAL].item;
for (int i = 0; i < TransMaxBox[TRANS_PHYSICAL]; i++) {
if (TransLineTypes[idx].radio[i] != -1) {
val->stack->raiseWidget (1);
val->radio->setHidden(false);
if (TransLineTypes[idx].radio[i] == 1) {
val->radio->setDown (true);
val->radio->setChecked (true);
QToolTip::add (val->radio, tr("Selected for Calculation"));
val->radio->setDown (true);
val->radio->setChecked (true);
val->radio->setToolTip(tr("Selected for Calculation"));
}
else {
val->radio->setDown (false);
val->radio->setChecked (false);
QToolTip::add (val->radio, tr("Check item for Calculation"));
val->radio->setDown (false);
val->radio->setChecked (false);
val->radio->setToolTip(tr("Check item for Calculation"));
}
val->radio->setDisabled (false);
}
else {
QToolTip::remove (val->radio);
val->stack->raiseWidget (2);
val->radio->setHidden(true);
val->radio->setDown (false);
val->radio->setChecked (false);
val->radio->setDisabled (true);
@ -716,24 +734,18 @@ void QucsTranscalc::updateSelection () {
/* The function creates the property items for the given category of
transmission line parameters. */
void QucsTranscalc::createPropItems (Q3HGroupBox * parent, int box) {
void QucsTranscalc::createPropItems (QGroupBox *parent, int box) {
struct TransValue * val, * dup;
int last = 0, idx = getTypeIndex ();
val = TransLineTypes[idx].array[box].item;
Q3VBox *rows[4];
Q3ButtonGroup * group = new Q3ButtonGroup();
connect(group, SIGNAL(pressed(int)), SLOT(slotRadioChecked(int)));
rows[0] = new Q3VBox (parent);
rows[1] = new Q3VBox (parent);
rows[2] = new Q3VBox (parent);
rows[3] = new Q3VBox (parent);
QGridLayout *boxGrid = new QGridLayout();
parent->layout()->setSpacing (2);
rows[0]->setSpacing (2);
rows[1]->setSpacing (2);
rows[2]->setSpacing (2);
rows[3]->setSpacing (2);
QButtonGroup * group = new QButtonGroup();
connect(group, SIGNAL(buttonPressed(int)), SLOT(slotRadioChecked(int)));
boxGrid->setSpacing(2);
parent->setLayout(boxGrid);
// go through each parameter category
for (int i = 0; i < TransMaxBox[box]; i++) {
@ -745,16 +757,18 @@ void QucsTranscalc::createPropItems (Q3HGroupBox * parent, int box) {
val->tip = NULL;
val->units[0] = NULL;
}
createPropItem (rows, val, box, group);
createPropItem (boxGrid, val, box, group);
// publish the newly created widgets to the other transmission lines
for (int _mode = 0; _mode < MAX_TRANS_TYPES; _mode++) {
if (idx != _mode) {
dup = & TransLineTypes[_mode].array[box].item[i];
dup->label = val->label;
dup->lineedit = val->lineedit;
dup->combobox = val->combobox;
dup->radio = val->radio;
dup->stack = val->stack;
dup = & TransLineTypes[_mode].array[box].item[i];
dup->label = val->label;
dup->lineedit = val->lineedit;
dup->combobox = val->combobox;
dup->radio = val->radio;
//dup->value = val->value;
}
}
val++;
@ -762,12 +776,14 @@ void QucsTranscalc::createPropItems (Q3HGroupBox * parent, int box) {
}
/* Creates a single result item. */
void QucsTranscalc::createResultItem (Q3VBox ** parentRows, TransResult * res) {
QLabel * n =
new QLabel (res->name ? *(res->name) + ":" : QString(), parentRows[0]);
void QucsTranscalc::createResultItem (QGridLayout * parentGrid, TransResult * res) {
QLabel * n = new QLabel (res->name ? *(res->name) + ":" : QString());
parentGrid->addWidget(n, parentGrid->count(),0,1,1);
n->setAlignment (Qt::AlignRight);
res->label = n;
QLabel * v = new QLabel (parentRows[1]);
QLabel * v = new QLabel ();
parentGrid->addWidget(v, parentGrid->count()-1,1,1,1);
v->setAlignment (Qt::AlignLeft);
res->value = v;
if (!res->name) {
@ -789,26 +805,23 @@ void QucsTranscalc::updateResultItem (TransResult * res) {
}
/* Creates all the result items. */
void QucsTranscalc::createResultItems (Q3HGroupBox * parent) {
void QucsTranscalc::createResultItems (QGroupBox * parent) {
struct TransResult * res, * dup;
int idx = getTypeIndex ();
res = & TransLineTypes[idx].result[0];
Q3VBox *rows[2];
rows[0] = new Q3VBox (parent);
rows[1] = new Q3VBox (parent);
QGridLayout *boxGrid = new QGridLayout();
parent->layout()->setSpacing (2);
rows[0]->setSpacing (2);
rows[1]->setSpacing (2);
boxGrid->setSpacing(2);
parent->setLayout(boxGrid);
for (int i = 0; i < MAX_TRANS_RESULTS; i++) {
createResultItem (rows, res);
createResultItem (boxGrid, res);
for (int _mode = 0; _mode < MAX_TRANS_TYPES; _mode++) {
if (idx != _mode) {
dup = & TransLineTypes[_mode].result[i];
dup->label = res->label;
dup->value = res->value;
dup = & TransLineTypes[_mode].result[i];
dup->label = res->label;
dup->value = res->value;
}
}
res++;
@ -880,14 +893,14 @@ void QucsTranscalc::setUnit (QString prop, const char * unit) {
struct TransValue * val = findProperty (prop);
if (val) {
if (!unit) {
val->combobox->setCurrentItem (0);
val->combobox->setCurrentIndex (0);
val->unit = 0;
}
else for (int i = 0; val->units[i]; i++) {
if (!strcmp (unit, val->units[i])) {
val->combobox->setCurrentItem (i);
val->unit = i;
break;
val->combobox->setCurrentIndex (i);
val->unit = i;
break;
}
}
}
@ -900,8 +913,8 @@ char * QucsTranscalc::getUnit (QString prop) {
QString str = val->combobox->currentText ();
for (int i = 0; val->units[i]; i++) {
if (str == val->units[i]) {
val->unit = i;
return (char *) val->units[i];
val->unit = i;
return (char *) val->units[i];
}
}
}
@ -914,7 +927,7 @@ bool QucsTranscalc::isSelected (QString prop) {
if (val) {
if (val->radio)
if (val->radio->isChecked ()) {
return true;
return true;
}
}
return false;
@ -960,29 +973,28 @@ void QucsTranscalc::closeEvent(QCloseEvent *Event)
void QucsTranscalc::slotSelectType (int Type)
{
pix->setPixmap (QPixmap (QImage (
QucsSettings.BitmapDir + QString(TransLineTypes[Type].bitmap))));
pix->setPixmap(QPixmap(QucsSettings.BitmapDir + QString(TransLineTypes[Type].bitmap)));
setMode (Type);
statBar->message(tr("Ready."));
statBar->showMessage(tr("Ready."));
}
void QucsTranscalc::slotAnalyze()
{
if (TransLineTypes[getTypeIndex()].line)
TransLineTypes[getTypeIndex()].line->analyze();
statBar->message(tr("Values are consistent."));
statBar->showMessage(tr("Values are consistent."));
}
void QucsTranscalc::slotSynthesize()
{
if (TransLineTypes[getTypeIndex()].line)
TransLineTypes[getTypeIndex()].line->synthesize();
statBar->message(tr("Values are consistent."));
statBar->showMessage(tr("Values are consistent."));
}
void QucsTranscalc::slotValueChanged()
{
statBar->message(tr("Values are inconsistent."));
statBar->showMessage(tr("Values are inconsistent."));
}
// Load transmission line values from the given file.
@ -990,7 +1002,7 @@ bool QucsTranscalc::loadFile(QString fname, int * _mode) {
QFile file(QDir::convertSeparators (fname));
if(!file.open(QIODevice::ReadOnly)) return false; // file doesn't exist
Q3TextStream stream(&file);
QTextStream stream(&file);
QString Line, Name, Unit;
double Value;
@ -999,25 +1011,25 @@ bool QucsTranscalc::loadFile(QString fname, int * _mode) {
Line = stream.readLine();
for (int i = 0; i < MAX_TRANS_TYPES; i++) {
if (Line == "<" + QString(TransLineTypes[i].description) + ">") {
if (_mode) {
*_mode = TransLineTypes[i].type;
setMode (*_mode);
updatePixmap (mode);
} else {
mode = TransLineTypes[i].type;
}
while(!stream.atEnd()) {
Line = stream.readLine();
if (Line == "</" + QString(TransLineTypes[i].description) + ">")
break;
Line = Line.simplifyWhiteSpace();
Name = Line.section(' ',0,0);
Value = Line.section(' ',1,1).toDouble();
Unit = Line.section(' ',2,2);
setProperty (Name, Value);
setUnit (Name, Unit);
}
break;
if (_mode) {
*_mode = TransLineTypes[i].type;
setMode (*_mode);
updatePixmap (mode);
} else {
mode = TransLineTypes[i].type;
}
while(!stream.atEnd()) {
Line = stream.readLine();
if (Line == "</" + QString(TransLineTypes[i].description) + ">")
break;
Line = Line.simplified();
Name = Line.section(' ',0,0);
Value = Line.section(' ',1,1).toDouble();
Unit = Line.section(' ',2,2);
setProperty (Name, Value);
setUnit (Name, Unit.toAscii());
}
break;
}
}
}
@ -1031,14 +1043,14 @@ bool QucsTranscalc::loadFile(QString fname, int * _mode) {
bool QucsTranscalc::saveFile(QString fname) {
QFile file (QDir::convertSeparators (fname));
if(!file.open (QIODevice::WriteOnly)) return false; // file not writable
Q3TextStream stream (&file);
QTextStream stream (&file);
// some lines of documentation
stream << "# QucsTranscalc " << PACKAGE_VERSION << " " << fname << "\n";
stream << "# Generated on " << QDate::currentDate().toString()
<< " at " << QTime::currentTime().toString() << ".\n";
<< " at " << QTime::currentTime().toString() << ".\n";
stream << "# It is not suggested to edit the file, use QucsTranscalc "
<< "instead.\n\n";
<< "instead.\n\n";
storeValues ();
saveMode (stream);
@ -1048,7 +1060,7 @@ bool QucsTranscalc::saveFile(QString fname) {
/* Writes the transmission line values for the current modes into the
given stream. */
void QucsTranscalc::saveMode(Q3TextStream& stream) {
void QucsTranscalc::saveMode(QTextStream& stream) {
struct TransType * t = &TransLineTypes[getTypeIndex ()];
struct TransValue * val = NULL;
stream << "<" << t->description << ">\n";
@ -1056,7 +1068,7 @@ void QucsTranscalc::saveMode(Q3TextStream& stream) {
val = t->array[box].item;
while (val->name) {
stream << " " << val->name << " " << val->value << " "
<< val->units[val->unit] << "\n";
<< val->units[val->unit] << "\n";
val++;
}
}
@ -1064,7 +1076,7 @@ void QucsTranscalc::saveMode(Q3TextStream& stream) {
}
// Writes the transmission line values for all modes into the given stream.
void QucsTranscalc::saveModes(Q3TextStream& stream) {
void QucsTranscalc::saveModes(QTextStream& stream) {
int oldmode = mode;
for (int i = 0; i < MAX_TRANS_TYPES; i++) {
mode = TransLineTypes[i].type;
@ -1084,13 +1096,13 @@ void QucsTranscalc::storeValues (void) {
getProperty (val->name);
getUnit (val->name);
if (box == TRANS_PHYSICAL) {
if (val->radio->isEnabled()) {
if (val->radio->isChecked())
t->radio[i] = 1;
else
t->radio[i] = 0;
}
else t->radio[i] = -1;
if (val->radio->isEnabled()) {
if (val->radio->isChecked())
t->radio[i] = 1;
else
t->radio[i] = 0;
}
else t->radio[i] = -1;
}
i++;
val++;
@ -1100,38 +1112,40 @@ void QucsTranscalc::storeValues (void) {
void QucsTranscalc::slotFileLoad()
{
statBar->message(tr("Loading file..."));
statBar->showMessage(tr("Loading file..."));
int _mode = 0;
QString s = Q3FileDialog::getOpenFileName(QucsWorkDir.path(),
tr("Transcalc File")+" (*.trc)", this, "", tr("Enter a Filename"));
QString s = QFileDialog::getOpenFileName(this, tr("Enter a Filename"),
QucsWorkDir.path(),
tr("Transcalc File") + " (*.trc)");
if (!s.isEmpty()) {
QucsWorkDir.setPath(QDir::cleanDirPath(s));
QucsWorkDir.setPath(QDir::cleanPath(s));
if (!loadFile (s, &_mode)) {
QMessageBox::critical (this, tr("Error"),
tr("Cannot load file:")+" '"+s+"'!");
tr("Cannot load file:")+" '"+s+"'!");
}
}
else statBar->message(tr("Loading aborted."), 2000);
else statBar->showMessage(tr("Loading aborted."), 2000);
statBar->message(tr("Ready."));
statBar->showMessage(tr("Ready."));
}
void QucsTranscalc::slotFileSave()
{
statBar->message(tr("Saving file..."));
statBar->showMessage(tr("Saving file..."));
QString s = Q3FileDialog::getSaveFileName(QucsWorkDir.path(),
tr("Transcalc File")+" (*.trc)", this, "", tr("Enter a Filename"));
QString s = QFileDialog::getSaveFileName(this, tr("Enter a Filename"),
QucsWorkDir.path(),
tr("Transcalc File") + " (*.trc)");
if (!s.isEmpty()) {
QucsWorkDir.setPath(QDir::cleanDirPath(s));
QucsWorkDir.setPath(QDir::cleanPath(s));
if (!saveFile (s)) {
QMessageBox::critical (this, tr("Error"),
tr("Cannot save file:")+" '"+s+"'!");
tr("Cannot save file:")+" '"+s+"'!");
}
}
else statBar->message(tr("Saving aborted."), 2000);
else statBar->showMessage(tr("Saving aborted."), 2000);
statBar->message(tr("Ready."));
statBar->showMessage(tr("Ready."));
}
// Returns the current textual mode.
@ -1152,9 +1166,8 @@ void QucsTranscalc::setMode (QString _mode) {
// Updates the combobox and pixmap for the current mode.
void QucsTranscalc::updatePixmap (int _mode) {
pix->setPixmap (QPixmap (QImage (
QucsSettings.BitmapDir + QString(TransLineTypes[_mode].bitmap))));
tranType->setCurrentItem(_mode);
pix->setPixmap(QPixmap(QucsSettings.BitmapDir + QString(TransLineTypes[_mode].bitmap)));
tranType->setCurrentIndex(_mode);
}
void QucsTranscalc::slotHelpIntro()
@ -1185,7 +1198,7 @@ void QucsTranscalc::slotRadioChecked(int id)
if (TransLineTypes[idx].radio[i] != -1) {
TransLineTypes[idx].radio[i] = 0;
if (i == id) {
TransLineTypes[idx].radio[i] = 1;
TransLineTypes[idx].radio[i] = 1;
}
}
}
@ -1216,20 +1229,20 @@ void QucsTranscalc::slotCopyToClipBoard()
double freq = l->getProperty("Freq", UNIT_FREQ, FREQ_GHZ);
if (freq > 0)
s += QString("\"log\" 1 \"%1 GHz\" 1 \"%2 GHz\" 1 ").
arg(freq / 10).arg(freq * 10);
arg(freq / 10).arg(freq * 10);
else
s += "\"lin\" 1 \"0 GHz\" 1 \"10 GHz\" 1 ";
s += "\"51\" 1 \"no\" 0 \"1\" 0 \"2\" 0>\n";
s += QString(" <MLIN MSTC1 1 180 100 -26 15 0 0 \"SubstTC1\" 1 \"%1 mm\" 1 \"%2 mm\" 1 \"Hammerstad\" 0 \"Kirschning\" 0 \"26.85\" 0>\n").
arg(l->getProperty("W", UNIT_LENGTH, LENGTH_MM)).
arg(l->getProperty("L", UNIT_LENGTH, LENGTH_MM));
s += " <Eqn EqnTC1 1 240 260 -23 12 0 0 \"A=twoport(S,'S','A')\" 1 \"ZL=real(sqrt(A[1,2]/A[2,1]))\" 1 \"yes\" 0>\n";
s += " <Eqn EqnTC1 1 240 260 -23 12 0 0 \"A=twoport(S,'S','A')\" 1 \"ZL=real(sqrt(A[1,2]/A[2,1]))\" 1 \"yes\" 0>\n";
s += "</Components>\n";
s += "<Wires>\n";
s += " <90 100 150 100 \"\" 0 0 0 \"\">\n";
s += " <90 100 90 120 \"\" 0 0 0 \"\">\n";
s += " <210 100 270 100 \"\" 0 0 0 \"\">\n";
s += " <270 100 270 120 \"\" 0 0 0 \"\">\n";
// s += " <270 100 270 120 \"\" 0 0 0 \"\">\n";
s += "</Wires>\n";
created++;
}
@ -1257,7 +1270,7 @@ void QucsTranscalc::slotCopyToClipBoard()
double freq = l->getProperty("Freq", UNIT_FREQ, FREQ_GHZ);
if (freq > 0)
s += QString("\"log\" 1 \"%1 GHz\" 1 \"%2 GHz\" 1 ").
arg(freq / 10).arg(freq * 10);
arg(freq / 10).arg(freq * 10);
else
s += "\"lin\" 1 \"0 GHz\" 1 \"10 GHz\" 1 ";
s += "\"51\" 1 \"no\" 0 \"1\" 0 \"2\" 0>\n";
@ -1291,7 +1304,7 @@ void QucsTranscalc::slotCopyToClipBoard()
double freq = l->getProperty("Freq", UNIT_FREQ, FREQ_GHZ);
if (freq > 0)
s += QString("\"log\" 1 \"%1 GHz\" 1 \"%2 GHz\" 1 ").
arg(freq / 10).arg(freq * 10);
arg(freq / 10).arg(freq * 10);
else
s += "\"lin\" 1 \"0 GHz\" 1 \"10 GHz\" 1 ";
s += "\"51\" 1 \"no\" 0 \"1\" 0 \"2\" 0>\n";
@ -1331,7 +1344,7 @@ void QucsTranscalc::slotCopyToClipBoard()
double freq = l->getProperty("Freq", UNIT_FREQ, FREQ_GHZ);
if (freq > 0)
s += QString("\"log\" 1 \"%1 GHz\" 1 \"%2 GHz\" 1 ").
arg(freq / 10).arg(freq * 10);
arg(freq / 10).arg(freq * 10);
else
s += "\"lin\" 1 \"0 GHz\" 1 \"10 GHz\" 1 ";
s += "\"51\" 1 \"no\" 0 \"1\" 0 \"2\" 0>\n";
@ -1339,7 +1352,7 @@ void QucsTranscalc::slotCopyToClipBoard()
arg(l->getProperty("W", UNIT_LENGTH, LENGTH_MM)).
arg(l->getProperty("S", UNIT_LENGTH, LENGTH_MM)).
arg(l->getProperty("L", UNIT_LENGTH, LENGTH_MM));
s += " <Eqn EqnTC1 1 240 260 -23 12 0 0 \"A=twoport(S,'S','A')\" 1 \"ZL=real(sqrt(A[1,2]/A[2,1]))\" 1 \"yes\" 0>\n";
s += " <Eqn EqnTC1 1 240 260 -23 12 0 0 \"A=twoport(S,'S','A')\" 1 \"ZL=real(sqrt(A[1,2]/A[2,1]))\" 1 \"yes\" 0>\n";
s += "</Components>\n";
s += "<Wires>\n";
s += " <90 100 150 100 \"\" 0 0 0 \"\">\n";
@ -1368,7 +1381,7 @@ void QucsTranscalc::slotCopyToClipBoard()
double freq = l->getProperty("Freq", UNIT_FREQ, FREQ_GHZ);
if (freq > 0)
s += QString("\"log\" 1 \"%1 GHz\" 1 \"%2 GHz\" 1 ").
arg(freq / 10).arg(freq * 10);
arg(freq / 10).arg(freq * 10);
else
s += "\"lin\" 1 \"0 GHz\" 1 \"10 GHz\" 1 ";
s += "\"51\" 1 \"no\" 0 \"1\" 0 \"2\" 0>\n";
@ -1376,7 +1389,7 @@ void QucsTranscalc::slotCopyToClipBoard()
arg(l->getProperty("W", UNIT_LENGTH, LENGTH_MM)).
arg(l->getProperty("S", UNIT_LENGTH, LENGTH_MM)).
arg(l->getProperty("L", UNIT_LENGTH, LENGTH_MM));
s += " <Eqn EqnTC1 1 240 260 -23 12 0 0 \"A=twoport(S,'S','A')\" 1 \"ZL=real(sqrt(A[1,2]/A[2,1]))\" 1 \"yes\" 0>\n";
s += " <Eqn EqnTC1 1 240 260 -23 12 0 0 \"A=twoport(S,'S','A')\" 1 \"ZL=real(sqrt(A[1,2]/A[2,1]))\" 1 \"yes\" 0>\n";
s += "</Components>\n";
s += "<Wires>\n";
s += " <90 100 150 100 \"\" 0 0 0 \"\">\n";
@ -1399,7 +1412,7 @@ void QucsTranscalc::slotCopyToClipBoard()
double freq = l->getProperty("Freq", UNIT_FREQ, FREQ_GHZ);
if (freq > 0)
s += QString("\"log\" 1 \"%1 GHz\" 1 \"%2 GHz\" 1 ").
arg(freq / 10).arg(freq * 10);
arg(freq / 10).arg(freq * 10);
else
s += "\"lin\" 1 \"0 GHz\" 1 \"10 GHz\" 1 ";
s += "\"51\" 1 \"no\" 0 \"1\" 0 \"2\" 0>\n";
@ -1411,7 +1424,7 @@ void QucsTranscalc::slotCopyToClipBoard()
arg(l->getProperty("Mur")).
arg(l->getProperty("Tand")).
arg(1 / l->getProperty("Cond"));
s += " <Eqn EqnTC1 1 240 260 -23 12 0 0 \"A=twoport(S,'S','A')\" 1 \"ZL=real(sqrt(A[1,2]/A[2,1]))\" 1 \"yes\" 0>\n";
s += " <Eqn EqnTC1 1 240 260 -23 12 0 0 \"A=twoport(S,'S','A')\" 1 \"ZL=real(sqrt(A[1,2]/A[2,1]))\" 1 \"yes\" 0>\n";
s += "</Components>\n";
s += "<Wires>\n";
s += " <90 100 150 100 \"\" 0 0 0 \"\">\n";
@ -1428,7 +1441,7 @@ void QucsTranscalc::slotCopyToClipBoard()
// put a message into status line
if (created)
statBar->message(tr("Schematic copied into clipboard."), 2000);
statBar->showMessage(tr("Schematic copied into clipboard."), 2000);
else
statBar->message(tr("Transmission line type not available."), 2000);
statBar->showMessage(tr("Transmission line type not available."), 2000);
}

View File

@ -18,28 +18,26 @@
#ifndef QUCSTRANS_H
#define QUCSTRANS_H
#include <qdialog.h>
#include <qfont.h>
#include <qstring.h>
//Added by qt3to4:
#include <Q3GridLayout>
#include <Q3TextStream>
#include <Q3VBoxLayout>
#include <QDialog>
#include <QFont>
#include <QString>
#include <QGridLayout>
#include <QTextStream>
#include <QVBoxLayout>
#include <QLabel>
#include <QCloseEvent>
class QComboBox;
class QLineEdit;
class QLabel;
class Q3HGroupBox;
class Q3VBox;
class Q3VBoxLayout;
class QGroupBox;
class QVBoxLayout;
class QRadioButton;
class Q3GridLayout;
class QGridLayout;
class QStatusBar;
class Q3TextStream;
class Q3ButtonGroup;
class Q3WidgetStack;
class QTextStream;
class QButtonGroup;
class QStackedWidget;
class transline;
@ -87,7 +85,6 @@ struct TransValue {
QLineEdit * lineedit; // Qt value widget
QComboBox * combobox; // Qt unit widget
QRadioButton * radio; // Qt fixed widget
Q3WidgetStack * stack; // Qt fixed stack
};
// Array of transmission line values.
@ -147,8 +144,8 @@ public:
void setResult (int, const char *);
bool isSelected (QString);
void saveMode (Q3TextStream&);
void saveModes (Q3TextStream&);
void saveMode (QTextStream&);
void saveModes (QTextStream&);
bool loadFile (QString, int * _mode = 0);
QString getMode (void);
void setMode (QString);
@ -170,12 +167,12 @@ private slots:
private:
void updateSelection ();
void createPropItem (Q3VBox **, TransValue *, int, Q3ButtonGroup *);
void createResultItem (Q3VBox **, TransResult *);
void createPropItem (QGridLayout *, TransValue *, int, QButtonGroup *);
void createResultItem (QGridLayout *, TransResult *);
void updateResultItem (TransResult *);
void createResultItems (Q3HGroupBox *);
void createResultItems (QGroupBox *);
void updateResultItems ();
void createPropItems (Q3HGroupBox *, int);
void createPropItems (QGroupBox *, int);
int getTypeIndex ();
void updatePropItem (TransValue *);
void setMode (int);
@ -193,7 +190,7 @@ private:
QStatusBar * statBar;
QLabel * pix;
QComboBox * tranType;
Q3HGroupBox * calculated;
QGroupBox * calculated;
int mode;
};