qucs_s/qucs/dialogs/librarydialog.cpp
2013-06-05 10:57:38 +02:00

487 lines
14 KiB
C++

/***************************************************************************
librarydialog.cpp
-------------------
begin : Sun Jun 04 2006
copyright : (C) 2006 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 <QtGui>
#include <QLabel>
#include <QLineEdit>
#include <QTextEdit>
#include <QTextStream>
#include <QDataStream>
#include <QCheckBox>
#include <QTreeWidgetItem>
#include <QValidator>
#include <QMessageBox>
#include <QPushButton>
#include <QScrollArea>
#include <QButtonGroup>
#include <QVBoxLayout>
#include <QHBoxLayout>
#include <QDebug>
#include "librarydialog.h"
#include "qucs.h"
#include "main.h"
#include "schematic.h"
extern SubMap FileList;
LibraryDialog::LibraryDialog(QucsApp *App_, QTreeWidgetItem *SchematicList)
: QDialog(App_) //, 0, TRUE, Qt::WDestructiveClose)
{
App = App_;
setWindowTitle(tr("Create Library"));
Expr.setPattern("[\\w_]+");
Validator = new QRegExpValidator(Expr, this);
// ...........................................................
all = new QVBoxLayout(this);
all->setMargin(5);
all->setSpacing(6);
QHBoxLayout *h1 = new QHBoxLayout();
all->addLayout(h1);
theLabel = new QLabel(tr("Library Name:"));
h1->addWidget(theLabel);
NameEdit = new QLineEdit();
h1->addWidget(NameEdit);
NameEdit->setValidator(Validator);
// ...........................................................
Group = new QGroupBox(tr("Choose subcircuits:"));
all->addWidget(Group);
QScrollArea *scrollArea = new QScrollArea(Group);
scrollArea->setWidgetResizable(true);
QWidget *scrollWidget = new QWidget();
QVBoxLayout *checkBoxLayout = new QVBoxLayout();
scrollWidget->setLayout(checkBoxLayout);
scrollArea->setWidget(scrollWidget);
QVBoxLayout *areaLayout = new QVBoxLayout();
areaLayout->addWidget(scrollArea);
Group->setLayout(areaLayout);
// ...........................................................
QHBoxLayout *h3 = new QHBoxLayout();
ButtSelectAll = new QPushButton(tr("Select All"));
h3->addWidget(ButtSelectAll);
connect(ButtSelectAll, SIGNAL(clicked()), SLOT(slotSelectAll()));
ButtSelectNone = new QPushButton(tr("Deselect All"));
h3->addWidget(ButtSelectNone);
connect(ButtSelectNone, SIGNAL(clicked()), SLOT(slotSelectNone()));
ErrText = new QTextEdit(this);
ErrText->setHidden(true);
ErrText->setTextFormat(Qt::PlainText);
ErrText->setWordWrapMode(QTextOption::NoWrap);
all->addWidget(ErrText);
// ...........................................................
QHBoxLayout *h2 = new QHBoxLayout();
all->addLayout(h2);
ButtCancel = new QPushButton(tr("Cancel"));
h2->addWidget(ButtCancel);
connect(ButtCancel, SIGNAL(clicked()), SLOT(reject()));
ButtCreate = new QPushButton(tr("Next >>"));
h2->addWidget(ButtCreate);
connect(ButtCreate, SIGNAL(clicked()), SLOT(slotCreate()));
ButtCreate->setDefault(true);
// ...........................................................
// insert all subcircuits of current project
//iterator for this??
QTreeWidgetItem *p ;//= SchematicList->child(0); //firstChild();
//while(p) {
for(int i=0; i < SchematicList->childCount(); i++){
p = SchematicList->child(i);
if(p->parent() == 0)
break;
if(!p->text(1).isEmpty()){
QCheckBox *subCheck = new QCheckBox(p->text(0));
checkBoxLayout->addWidget(subCheck);
BoxList.append(subCheck);
}
//p = p->nextSibling();
}
// QColor theColor;
if(BoxList.isEmpty()) {
ButtCreate->setEnabled(false);
// theColor =
// (new QLabel(tr("No subcircuits!"), Dia_Box))->paletteBackgroundColor();
QLabel *noProj = new QLabel(tr("No projects!"));
checkBoxLayout->addWidget(noProj);
}
// else
// theColor = BoxList.current()->paletteBackgroundColor();
// Dia_Scroll->viewport()->setPaletteBackgroundColor(theColor);
}
LibraryDialog::~LibraryDialog()
{
delete all;
delete Validator;
}
// ---------------------------------------------------------------
void LibraryDialog::slotCreate()
{
if(NameEdit->text().isEmpty()) {
QMessageBox::critical(this, tr("Error"), tr("Please insert a library name!"));
return;
}
int count=0;
QCheckBox *p;
QListIterator<QCheckBox *> i(BoxList);
//for(p = BoxList.first(); p != 0; p = BoxList.next())
while(i.hasNext()){
p = i.next();
if(p->isChecked())
count++;
}
if(count < 1) {
QMessageBox::critical(this, tr("Error"), tr("Please choose at least one subcircuit!"));
return;
}
LibDir = QDir(QucsHomeDir);
if(!LibDir.cd("user_lib")) { // user library directory exists ?
if(!LibDir.mkdir("user_lib")) { // no, then create it
QMessageBox::warning(this, tr("Warning"),
tr("Cannot create user library directory !"));
return;
}
LibDir.cd("user_lib");
}
LibFile.setName(QucsSettings.LibDir + NameEdit->text() + ".lib");
if(LibFile.exists()) {
QMessageBox::critical(this, tr("Error"), tr("A system library with this name already exists!"));
return;
}
LibFile.setName(LibDir.absFilePath(NameEdit->text()) + ".lib");
if(LibFile.exists()) {
QMessageBox::critical(this, tr("Error"), tr("A library with this name already exists!"));
return;
}
Group->setHidden(true);
ErrText->setHidden(false);
NameEdit->setHidden(true);
disconnect(ButtCreate, SIGNAL(clicked()), 0, 0);
connect(ButtCreate, SIGNAL(clicked()), SLOT(slotNext()));
//QCheckBox *p;
//QListIterator<QCheckBox *> i(BoxList);
//for(p = BoxList.first(); p != 0; p = BoxList.next())
i.toFront();
while(i.hasNext()){
p = i.next();
if(p->isChecked())
break;
}
theLabel->setText(tr("Enter description for \"%1\":").arg(p->text()));
//for(p = BoxList.next(); p != 0; p = BoxList.next())
i.toFront();
while(i.hasNext()){
p = i.next();
if(p->isChecked())
break;
}
if(p == 0)
ButtCreate->setText(tr("Create"));
}
// ---------------------------------------------------------------
void LibraryDialog::intoStream(QTextStream &Stream, QString &tmp,
const char *sec)
{
int i = tmp.find("TOP LEVEL MARK");
if(i >= 0) {
i = tmp.find('\n',i) + 1;
tmp = tmp.mid(i);
}
Stream << " <" << sec << ">";
Stream << tmp;
Stream << " </" << sec << ">\n";
}
// ---------------------------------------------------------------
int LibraryDialog::intoFile(QString &ifn, QString &ofn, QStringList &IFiles)
{
int error = 0;
QFile ifile(ifn);
if(!ifile.open(QIODevice::ReadOnly)) {
ErrText->insert(QObject::tr("ERROR: Cannot open file \"%1\".\n").
arg(ifn));
error++;
}
else {
QByteArray FileContent = ifile.readAll();
ifile.close();
if(ifile.name().right(4) == ".lst")
LibDir.remove(ifile.name());
QDir LibDirSub(LibDir);
if(!LibDirSub.cd(NameEdit->text())) {
if(!LibDirSub.mkdir(NameEdit->text())) {
ErrText->insert(
QObject::tr("ERROR: Cannot create user library subdirectory !\n"));
error++;
}
LibDirSub.cd(NameEdit->text());
}
QFileInfo Info(ofn);
ofn = Info.fileName();
IFiles.append(ofn);
QFile ofile;
ofile.setName(LibDirSub.absFilePath(ofn));
if(!ofile.open(QIODevice::WriteOnly)) {
ErrText->insert(
QObject::tr("ERROR: Cannot create file \"%1\".\n").arg(ofn));
error++;
}
else {
QDataStream ds(&ofile);
ds.writeRawBytes(FileContent.data(), FileContent.size());
ofile.close();
}
}
return error;
}
// ---------------------------------------------------------------
void LibraryDialog::slotNext()
{
Descriptions.append(ErrText->text());
ErrText->clear();
QCheckBox *p;//= BoxList.current();
QListIterator<QCheckBox *> i(BoxList);
p = i.next();
if(p) {
theLabel->setText(tr("Enter description for \"%1\":").arg(p->text()));
while(i.hasNext()){
//for(p = BoxList.next(); p != 0; p = BoxList.next())
p = i.next();
if(p->isChecked())
break;
}
if(p == 0)
ButtCreate->setText(tr("Create"));
return;
}
theLabel->setShown(false);
ErrText->setReadOnly(true);
ButtCancel->setEnabled(false);
ButtCreate->setText(tr("Close"));
disconnect(ButtCreate, SIGNAL(clicked()), 0, 0);
connect(ButtCreate, SIGNAL(clicked()), SLOT(accept()));
if(!LibFile.open(QIODevice::WriteOnly)) {
ErrText->append(tr("Error: Cannot create library!"));
return;
}
QTextStream Stream;
Stream.setDevice(&LibFile);
Stream << "<Qucs Library " PACKAGE_VERSION " \""
<< NameEdit->text() << "\">\n\n";
bool Success = true, ret;
QStringList::Iterator it = Descriptions.begin();
QString tmp;
QTextStream ts(&tmp, QIODevice::WriteOnly);
i.toFront();
//for(p = BoxList.first(); p != 0; p = BoxList.next())
while(i.hasNext()){
p = i.next();
if(p->isChecked()) {
Stream << "<Component " + p->text().section('.',0,0) + ">\n"
<< " <Description>\n"
<< *(it++)
<< "\n </Description>\n";
Schematic *Doc = new Schematic(0, QucsWorkDir.filePath(p->text()));
if(!Doc->loadDocument()) { // load document if possible
delete Doc;
ErrText->append(tr("Error: Cannot load subcircuit \"%1\".").
arg(p->text()));
break;
}
Doc->DocName = NameEdit->text() + "_" + p->text();
Success = false;
// save analog model
tmp.truncate(0);
Doc->isAnalog = true;
#warning ///TODO ret = Doc->createLibNetlist(&ts, ErrText, -1); //Schematic::createLibNetlist still on Q3TextStream
if(ret) {
intoStream(Stream, tmp, "Model");
int error = 0;
QStringList IFiles;
SubMap::Iterator it = FileList.begin();
while(it != FileList.end()) {
QString f = it.data().File;
QString ifn, ofn;
if(it.data().Type == "SCH") {
ifn = f + ".lst";
ofn = ifn;
} else if(it.data().Type == "CIR") {
ifn = f + ".lst";
ofn = ifn;
}
if (!ifn.isEmpty()) error += intoFile(ifn, ofn, IFiles);
it++;
}
FileList.clear();
if(!IFiles.isEmpty()) {
Stream << " <ModelIncludes \"" << IFiles.join("\" \"") << "\">\n";
}
Success = error > 0 ? false : true;
} else {
ErrText->insert("\n");
}
// save verilog model
tmp.truncate(0);
Doc->isVerilog = true;
Doc->isAnalog = false;
#warning ///TODO ret = Doc->createLibNetlist(&ts, ErrText, 0); //Schematic::createLibNetlist still on Q3TextStream
if(ret) {
intoStream(Stream, tmp, "VerilogModel");
int error = 0;
QStringList IFiles;
SubMap::Iterator it = FileList.begin();
while(it != FileList.end()) {
QString f = it.data().File;
QString ifn, ofn;
if(it.data().Type == "SCH") {
ifn = f + ".lst";
ofn = f + ".v";
} else if(it.data().Type == "VER") {
ifn = f;
ofn = ifn;
}
if (!ifn.isEmpty()) error += intoFile(ifn, ofn, IFiles);
it++;
}
FileList.clear();
if(!IFiles.isEmpty()) {
Stream << " <VerilogModelIncludes \""
<< IFiles.join("\" \"") << "\">\n";
}
Success = error > 0 ? false : true;
} else {
ErrText->insert("\n");
}
// save vhdl model
tmp.truncate(0);
Doc->isVerilog = false;
Doc->isAnalog = false;
#warning ///TODO ret = Doc->createLibNetlist(&ts, ErrText, 0); ////Schematic::createLibNetlist still on Q3TextStream
if(ret) {
intoStream(Stream, tmp, "VHDLModel");
int error = 0;
QStringList IFiles;
SubMap::Iterator it = FileList.begin();
while(it != FileList.end()) {
QString f = it.data().File;
QString ifn, ofn;
if(it.data().Type == "SCH") {
ifn = f + ".lst";
ofn = f + ".vhdl";
} else if(it.data().Type == "VHD") {
ifn = f;
ofn = ifn;
}
if (!ifn.isEmpty()) error += intoFile(ifn, ofn, IFiles);
it++;
}
FileList.clear();
if(!IFiles.isEmpty()) {
Stream << " <VHDLModelIncludes \""
<< IFiles.join("\" \"") << "\">\n";
}
Success = error > 0 ? false : true;
} else {
ErrText->insert("\n");
}
Stream << " <Symbol>\n";
Doc->createSubcircuitSymbol();
Painting *pp;
for(pp = Doc->SymbolPaints.first(); pp != 0; pp = Doc->SymbolPaints.next())
Stream << " <" << pp->save() << ">\n";
Stream << " </Symbol>\n"
<< "</Component>\n\n";
delete Doc;
if(!Success) break;
}
} //while
LibFile.close();
if(!Success) {
LibFile.remove();
return;
}
ErrText->append(tr("Successfully created library."));
}
// ---------------------------------------------------------------
void LibraryDialog::slotSelectAll()
{
QCheckBox *p;
QListIterator<QCheckBox *> i(BoxList);
while(i.hasNext()){
p = i.next();
p->setChecked(true);
}
//for(p = BoxList.first(); p != 0; p = BoxList.next()) p->setChecked(true);
}
// ---------------------------------------------------------------
void LibraryDialog::slotSelectNone()
{
QCheckBox *p;
QListIterator<QCheckBox *> i(BoxList);
while(i.hasNext()){
p = i.next();
p->setChecked(false);
}
//for(p = BoxList.first(); p != 0; p = BoxList.next()) p->setChecked(false);
}