mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00

* qucs-transcalc/main.cpp, qucs-lib/main.cpp, qucs-help/main.cpp, qucs-filter/main.cpp, qucs-edit/main.cpp (loadSettings): Try loading items from main qucsrc even if application specific resource file does not exist.
83 lines
2.7 KiB
C++
83 lines
2.7 KiB
C++
/***************************************************************************
|
|
helpdialog.cpp
|
|
------------------
|
|
begin : Fri Mar 04 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 "helpdialog.h"
|
|
|
|
#include <qlayout.h>
|
|
#include <qhbox.h>
|
|
#include <qpushbutton.h>
|
|
#include <qtextedit.h>
|
|
|
|
|
|
HelpDialog::HelpDialog(QWidget *parent)
|
|
: QDialog(parent, 0, false, Qt::WDestructiveClose)
|
|
{
|
|
setCaption("Qucs Filter Help");
|
|
|
|
|
|
// -------- set help text into dialog ------------
|
|
QString s(tr("QucsFilter is a filter synthesis program. "
|
|
"To create a filter, simply enter all "
|
|
"parameters and press the big button at the "
|
|
"bottom of the main window. Immediatly, the "
|
|
"schematic of the filter is calculated and "
|
|
"put into the clipboard. Now go to Qucs, "
|
|
"open an empty schematic and press "
|
|
"CTRL-V (paste from clipboard). The filter "
|
|
"schematic can now be inserted and "
|
|
" simulated. Have lots of fun!"));
|
|
|
|
|
|
// -------- create dialog widgets ------------
|
|
resize(250, 230);
|
|
|
|
vLayout = new QVBoxLayout(this);
|
|
|
|
Text = new QTextEdit(s, QString::null, this);
|
|
Text->setTextFormat(Qt::PlainText);
|
|
Text->setReadOnly(true);
|
|
// Text->setWordWrap(QTextEdit::NoWrap);
|
|
Text->setMinimumSize(200,200);
|
|
vLayout->addWidget(Text);
|
|
|
|
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
|
|
}
|
|
|
|
HelpDialog::~HelpDialog()
|
|
{
|
|
delete vLayout;
|
|
}
|
|
|
|
// ************************************************************
|
|
void HelpDialog::slotClose()
|
|
{
|
|
accept();
|
|
}
|