qucs_s/qucs-lib/displaydialog.cpp
ela 8b180c680e 2007-11-22 Stefan Jahn <stefan@lkcc.org>
* displaydialog.cpp (DisplayDialog): Fixed bug in help display
        window due to reuse as model display window.


git-svn-id: https://qucs.svn.sourceforge.net/svnroot/qucs/trunk@1368 b5b04e8c-4942-46c9-ab4f-83783d557d1c
2007-11-22 22:04:20 +00:00

89 lines
2.8 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.h>
#include <qhbox.h>
#include <qpushbutton.h>
#include <qtextedit.h>
#include <qvgroupbox.h>
DisplayDialog::DisplayDialog(QWidget *parent, bool helper)
: QDialog(parent, 0, false, Qt::WDestructiveClose)
{
vLayout = new QVBoxLayout(this);
vLayout->setMargin(3);
if(helper) {
Text = new QTextEdit(this);
Text->setTextFormat(Qt::PlainText);
Text->setReadOnly(true);
Text->setMinimumSize(200, 100);
vLayout->addWidget(Text);
}
else {
QVGroupBox *Analog = new QVGroupBox (tr("Analogue"), this);
Text = new QTextEdit(Analog);
Text->setTextFormat(Qt::PlainText);
Text->setReadOnly(true);
Text->setMinimumSize(200, 80);
vLayout->addWidget(Analog);
QVGroupBox *VHDL = new QVGroupBox (tr("VHDL"), this);
VHDLText = new QTextEdit(VHDL);
VHDLText->setTextFormat(Qt::PlainText);
VHDLText->setReadOnly(true);
VHDLText->setMinimumSize(200, 80);
vLayout->addWidget(VHDL);
QVGroupBox *Verilog = new QVGroupBox (tr("Verilog"), this);
VerilogText = new QTextEdit(Verilog);
VerilogText->setTextFormat(Qt::PlainText);
VerilogText->setReadOnly(true);
VerilogText->setMinimumSize(200, 80);
vLayout->addWidget(Verilog);
}
QHBox *h = new QHBox(this);
vLayout->addWidget(h);
h->setStretchFactor(new QWidget(h),5); // stretchable placeholder
QPushButton *ButtonClose = new QPushButton(tr("Close"), h);
connect(ButtonClose, SIGNAL(clicked()), SLOT(slotClose()));
ButtonClose->setFocus();
h->setStretchFactor(new QWidget(h),5); // stretchable placeholder
}
DisplayDialog::~DisplayDialog()
{
delete vLayout;
}
// ************************************************************
void DisplayDialog::slotClose()
{
accept();
}