mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
118 lines
3.5 KiB
C++
118 lines
3.5 KiB
C++
/***************************************************************************
|
|
displaydialog.cpp
|
|
-------------------
|
|
begin : Sat May 28 2005
|
|
copyright : (C) 2005 by Michael Margraf
|
|
email : michael.margraf@alumni.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
|
|
|
|
#include "displaydialog.h"
|
|
|
|
//#include <QLayout>
|
|
#include <QPushButton>
|
|
#include <QTextEdit>
|
|
#include <QGroupBox>
|
|
#include <QVBoxLayout>
|
|
|
|
|
|
|
|
DisplayDialog::DisplayDialog(QWidget *parent, QString Text, QString VHDLText, QString VerilogText)
|
|
// QDialog(parent, 0, false, Qt::WDestructiveClose)
|
|
: QDialog(parent)
|
|
{
|
|
vLayout = new QVBoxLayout(this);
|
|
vLayout->setMargin(3);
|
|
|
|
QGroupBox *Analog = new QGroupBox (tr("Analogue"), this);
|
|
QVBoxLayout *AnalogLayout = new QVBoxLayout();
|
|
|
|
QText = new QTextEdit();
|
|
QText->setText(Text);
|
|
//QText->setTextFormat(Qt::PlainText);
|
|
QText->setReadOnly(true);
|
|
QText->setMinimumSize(200, 80);
|
|
QText->setLineWrapMode(QTextEdit::NoWrap);
|
|
|
|
AnalogLayout->addWidget(QText);
|
|
Analog->setLayout(AnalogLayout);
|
|
|
|
vLayout->addWidget(Analog);
|
|
|
|
QGroupBox *VHDL = new QGroupBox (tr("VHDL"), this);
|
|
QVBoxLayout *VHDLLayout = new QVBoxLayout();
|
|
|
|
QVHDLText = new QTextEdit(VHDL);
|
|
QVHDLText->setText(VHDLText);
|
|
//QVHDLText->setTextFormat(Qt::PlainText);
|
|
QVHDLText->setReadOnly(true);
|
|
QVHDLText->setMinimumSize(200, 80);
|
|
QVHDLText->setLineWrapMode(QTextEdit::NoWrap);
|
|
|
|
VHDLLayout->addWidget(QVHDLText);
|
|
VHDL->setLayout(VHDLLayout);
|
|
|
|
vLayout->addWidget(VHDL);
|
|
|
|
QGroupBox *Verilog = new QGroupBox (tr("Verilog"), this);
|
|
QVBoxLayout *VerilogLayout = new QVBoxLayout();
|
|
|
|
QVerilogText = new QTextEdit(Verilog);
|
|
QVerilogText->setText(VerilogText);
|
|
//QVerilogText->setTextFormat(Qt::PlainText);
|
|
QVerilogText->setReadOnly(true);
|
|
QVerilogText->setMinimumSize(200, 80);
|
|
QVerilogText->setLineWrapMode(QTextEdit::NoWrap);
|
|
|
|
VerilogLayout->addWidget(QVerilogText);
|
|
Verilog->setLayout(VerilogLayout);
|
|
|
|
vLayout->addWidget(Verilog);
|
|
|
|
|
|
QWidget *h = new QWidget(this);
|
|
//h->setStretchFactor(new QWidget(h),5); // stretchable placeholder
|
|
QHBoxLayout *hLayout = new QHBoxLayout();
|
|
|
|
QPushButton *ButtonClose = new QPushButton(tr("Close"));
|
|
connect(ButtonClose, SIGNAL(clicked()), SLOT(slotClose()));
|
|
ButtonClose->setFocus();
|
|
|
|
QWidget *dummy1 = new QWidget();
|
|
hLayout->addWidget(dummy1);
|
|
|
|
hLayout->addWidget(ButtonClose);
|
|
|
|
QWidget *dummy2 = new QWidget();
|
|
hLayout->addWidget(dummy2);
|
|
hLayout->setStretchFactor(dummy1, 5);
|
|
hLayout->setStretchFactor(dummy2, 5);
|
|
h->setLayout(hLayout);
|
|
|
|
vLayout->addWidget(h);
|
|
|
|
}
|
|
|
|
DisplayDialog::~DisplayDialog()
|
|
{
|
|
delete vLayout;
|
|
}
|
|
|
|
// ************************************************************
|
|
void DisplayDialog::slotClose()
|
|
{
|
|
accept();
|
|
}
|