qucs_s/qucs/qucs.cpp

1670 lines
54 KiB
C++
Raw Normal View History

2003-12-07 15:21:31 +00:00
/***************************************************************************
qucs.cpp - description
-------------------
begin : Thu Aug 28 18:17:41 CEST 2003
copyright : (C) 2003, 2004 by Michael Margraf
2004-06-12 12:35:04 +00:00
email : michael.margraf@alumni.tu-berlin.de
2003-12-07 15:21:31 +00:00
***************************************************************************/
/***************************************************************************
* *
* 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
2004-05-25 19:10:00 +00:00
#include "main.h"
2003-12-07 15:21:31 +00:00
#include "qucs.h"
#include "qucsview.h"
#include "wire.h"
2004-06-06 14:13:59 +00:00
#include "components/components.h"
2003-12-26 16:31:25 +00:00
#include "paintings/paintings.h"
2004-04-10 11:29:03 +00:00
#include "diagrams/diagrams.h"
#include "dialogs/messagebox.h"
#include "dialogs/newprojdialog.h"
#include "dialogs/settingsdialog.h"
2004-05-25 19:10:00 +00:00
#include "dialogs/qucssettingsdialog.h"
2003-12-07 15:21:31 +00:00
#include <qaccel.h>
#include <qimage.h>
#include <qsplitter.h>
#include <qvbox.h>
#include <qhbox.h>
#include <qlabel.h>
#include <qmessagebox.h>
#include <qdir.h>
#include <qpainter.h>
#include <qfiledialog.h>
2004-02-21 18:38:50 +00:00
#include <qinputdialog.h>
2003-12-07 15:21:31 +00:00
#include <qclipboard.h>
2004-04-24 11:52:43 +00:00
#include <qdatetime.h>
2004-05-25 19:10:00 +00:00
#include <qfont.h>
2003-12-07 15:21:31 +00:00
2004-04-10 11:29:03 +00:00
2003-12-07 15:21:31 +00:00
#include <limits.h>
#define COMBO_passive 0
#define COMBO_Sources 1
#define COMBO_TLines 2
#define COMBO_nonlinear 3
#define COMBO_File 4
#define COMBO_Sims 5
#define COMBO_Paints 6
#define COMBO_Diagrams 7
QDir QucsWorkDir;
QDir QucsHomeDir;
2003-12-07 15:21:31 +00:00
2004-05-29 13:05:04 +00:00
QucsApp::QucsApp()
2003-12-07 15:21:31 +00:00
{
setCaption("Qucs " PACKAGE_VERSION);
2004-02-21 18:38:50 +00:00
QucsFileFilter = tr("Schematic (*.sch);;Data Display (*.dpl);;")+
2004-05-25 19:10:00 +00:00
tr("Qucs Documents (*.sch *.dpl);;Any File (*)");
QucsWorkDir.setPath(QDir::homeDirPath()+"/.qucs");
QucsHomeDir.setPath(QDir::homeDirPath()+"/.qucs");
2004-05-07 17:31:21 +00:00
2004-05-29 13:05:04 +00:00
move (QucsSettings.x, QucsSettings.y);
resize(QucsSettings.dx, QucsSettings.dy);
2004-05-20 17:27:41 +00:00
// resize(maximumSize());
2004-02-21 18:38:50 +00:00
2003-12-07 15:21:31 +00:00
2004-04-24 11:52:43 +00:00
initView();
2004-05-07 17:31:21 +00:00
Init.perform(this); // initializes toolbar, statusbar, menubar, actions
2004-05-16 15:02:50 +00:00
Acts.init(this);
2004-02-21 18:38:50 +00:00
initCursorMenu();
2003-12-07 15:21:31 +00:00
// default settings of the printer
Printer.setOrientation(QPrinter::Landscape);
Printer.setColorMode(QPrinter::Color);
2004-02-21 18:38:50 +00:00
2003-12-07 15:21:31 +00:00
// switch on the 'select' action
2004-05-16 15:02:50 +00:00
Acts.select->blockSignals(true);
Acts.select->setOn(true);
Acts.select->blockSignals(false);
Acts.slotSelect(true);
2003-12-07 15:21:31 +00:00
HierarchyHistory.setAutoDelete(true);
2004-06-21 08:22:13 +00:00
// creates a document called "untitled"
view->Docs.append(new QucsDoc(this, ""));
2003-12-07 15:21:31 +00:00
}
QucsApp::~QucsApp()
{
}
// #########################################################################
// ########## ##########
// ########## Creates the view area (QTabWidget etc.) ##########
// ########## ##########
// #########################################################################
void QucsApp::initView()
{
2004-05-07 17:31:21 +00:00
QVBox *all = new QVBox(this); // only to fill the entire view area
2003-12-07 15:21:31 +00:00
QSplitter *Hsplit = new QSplitter(QSplitter::Horizontal, all);
TabView = new QTabWidget(Hsplit); // tabs on the left side
QVBox *WorkGroup = new QVBox(Hsplit);
WorkView = new QTabBar(WorkGroup); // tab on the right side
2004-05-29 13:05:04 +00:00
view = new QucsView(WorkGroup); // work area with documents
2003-12-07 15:21:31 +00:00
connect(WorkView, SIGNAL(selected(int)), SLOT(slotChangeView(int)));
Hsplit->setResizeMode(TabView, QSplitter::KeepSize);
setCentralWidget(all);
// ----------------------------------------------------------
// "Project Tab" of the left QTabWidget
QVBox *ProjGroup = new QVBox(this);
QHBox *ProjButts = new QHBox(ProjGroup);
QPushButton *ProjNew = new QPushButton(tr("New"),ProjButts);
connect(ProjNew, SIGNAL(clicked()), SLOT(slotProjNewButt()));
QPushButton *ProjOpen = new QPushButton(tr("Open"),ProjButts);
connect(ProjOpen, SIGNAL(clicked()), SLOT(slotProjOpenButt()));
QPushButton *ProjDel = new QPushButton(tr("Delete"),ProjButts);
connect(ProjDel, SIGNAL(clicked()), SLOT(slotProjDelButt()));
Projects = new QListBox(ProjGroup);
TabView->addTab(ProjGroup, tr("Projects"));
2004-05-07 17:31:21 +00:00
TabView->setTabToolTip(TabView->page(0),
tr("content of the project directory"));
2003-12-07 15:21:31 +00:00
2004-05-07 17:31:21 +00:00
connect(Projects, SIGNAL(doubleClicked(QListBoxItem*)),
SLOT(slotOpenProject(QListBoxItem*)));
2003-12-07 15:21:31 +00:00
// ----------------------------------------------------------
// "Content Tab" of the left QTabWidget
Content = new QListView(this);
2004-07-18 18:48:51 +00:00
Content->setRootIsDecorated(true); // open/close decoration for root items
2003-12-07 15:21:31 +00:00
Content->setSorting(-1); // no sorting
Content->addColumn(tr("Content of"));
Content->addColumn(tr("Note"));
Content->setColumnWidthMode(0,QListView::Manual);
Content->setColumnWidth(0, 150);
ConDatasets = new QListViewItem(Content, tr("Datasets"));
ConDisplays = new QListViewItem(Content, tr("Data Displays"));
ConSchematics = new QListViewItem(Content, tr("Schematics"));
TabView->addTab(Content,tr("Content"));
2003-12-26 16:31:25 +00:00
TabView->setTabToolTip(TabView->page(1), tr("content of the open project"));
2003-12-07 15:21:31 +00:00
// QT 3.2
// connect(Content, SIGNAL(doubleClicked(QListViewItem*, const<73>QPoint<6E>&,int)), SLOT(slotOpenContent(QListViewItem*, const<73>QPoint<6E>&,int)));
2004-05-07 17:31:21 +00:00
connect(Content, SIGNAL(doubleClicked(QListViewItem*)),
SLOT(slotOpenContent(QListViewItem*)));
connect(Content, SIGNAL(clicked(QListViewItem*)),
SLOT(slotSelectSubcircuit(QListViewItem*)));
2003-12-07 15:21:31 +00:00
// ----------------------------------------------------------
// "Component Tab" of the left QTabWidget
QVBox *CompGroup = new QVBox(this);
CompChoose = new QComboBox(CompGroup);
CompComps = new QIconView(CompGroup);
TabView->addTab(CompGroup,tr("Components"));
2003-12-26 16:31:25 +00:00
TabView->setTabToolTip(TabView->page(2), tr("components and diagrams"));
2003-12-07 15:21:31 +00:00
CompChoose->insertItem(tr("lumped components"));
CompChoose->insertItem(tr("sources"));
CompChoose->insertItem(tr("transmission lines"));
CompChoose->insertItem(tr("nonlinear components"));
CompChoose->insertItem(tr("file data"));
CompChoose->insertItem(tr("simulations"));
CompChoose->insertItem(tr("paintings"));
CompChoose->insertItem(tr("diagrams"));
slotSetCompView(0);
connect(CompChoose, SIGNAL(activated(int)), SLOT(slotSetCompView(int)));
2004-05-07 17:31:21 +00:00
connect(CompComps, SIGNAL(clicked(QIconViewItem*)),
SLOT(slotSelectComponent(QIconViewItem*)));
2003-12-07 15:21:31 +00:00
// ---------------------------------------------------------------------
readProjects(); // reads all projects and inserts them into the ListBox
}
2004-02-21 18:38:50 +00:00
// ----------------------------------------------------------
2004-05-20 17:27:41 +00:00
// Menu that appears if right mouse button is pressed on a file in the
// "Content" ListView.
2004-02-21 18:38:50 +00:00
void QucsApp::initCursorMenu()
{
ContentMenu = new QPopupMenu(Content);
ContentMenu->insertItem(tr("Open"), this, SLOT(slotCMenuOpen()));
ContentMenu->insertItem(tr("Rename"), this, SLOT(slotCMenuRename()));
ContentMenu->insertItem(tr("Delete"), this, SLOT(slotCMenuDelete()));
2004-05-07 17:31:21 +00:00
connect(Content,
SIGNAL(contextMenuRequested(QListViewItem*, const QPoint&, int)),
SLOT(slotShowContentMenu(QListViewItem*, const QPoint&, int)));
2004-02-21 18:38:50 +00:00
}
// ----------------------------------------------------------
// Is called if right mouse button is pressed on a file in the "Content" ListView.
// It shows a menu.
void QucsApp::slotShowContentMenu(QListViewItem *item, const QPoint& point, int)
{
if(item)
if(item->parent() != 0) // no component, but item "schematic", ...
ContentMenu->popup(point);
}
// ----------------------------------------------------------
// for menu that appears if right mouse button is pressed on a file in the "Content" ListView.
void QucsApp::slotCMenuOpen()
{
QListViewItem *i = Content->selectedItem();
if(i == 0) return;
slotOpenContent(i);
}
// ----------------------------------------------------------
// for menu that appears if right mouse button is pressed on a file in the "Content" ListView.
void QucsApp::slotCMenuRename()
{
QListViewItem *i = Content->selectedItem();
if(i == 0) return;
QucsDoc *dc = view->Docs.current();
2004-06-16 17:41:33 +00:00
// search, if file is open
for(QucsDoc *d = view->Docs.first(); d!=0; d = view->Docs.next()) {
if(d->DocName == QucsWorkDir.filePath(i->text(0))) {
2004-05-07 17:31:21 +00:00
QMessageBox::critical(this, tr("Error"),
2004-06-16 17:41:33 +00:00
tr("Cannot rename an open file!"));
2004-02-21 18:38:50 +00:00
view->Docs.findRef(dc);
return;
}
}
view->Docs.findRef(dc);
QString Name = i->text(0);
QString Suffix = Name.right(4); // remember suffix
bool ok;
QString s = QInputDialog::getText(tr("Rename file"), tr("Enter new name:"),
2004-06-16 17:41:33 +00:00
QLineEdit::Normal, Name.left(Name.length()-4), &ok, this);
2004-02-21 18:38:50 +00:00
if(!ok) return;
if(s.isEmpty()) return;
QDir file(QucsWorkDir.path());
2004-02-21 18:38:50 +00:00
if(!file.rename(Name, s+Suffix)) {
QMessageBox::critical(this, tr("Error"), tr("Cannot rename file: ")+Name);
return;
}
i->setText(0, s+Suffix);
}
// ----------------------------------------------------------
// for menu that appears if right mouse button is pressed on a file in the "Content" ListView.
void QucsApp::slotCMenuDelete()
{
QListViewItem *item = Content->selectedItem();
if(item == 0) return;
QucsDoc *dc = view->Docs.current();
2004-05-07 17:31:21 +00:00
// search, if file is open
for(QucsDoc *d = view->Docs.first(); d!=0; d = view->Docs.next()) {
if(d->DocName == QucsWorkDir.filePath(item->text(0))) {
2004-05-07 17:31:21 +00:00
QMessageBox::critical(this, tr("Error"),
tr("Cannot delete an open file!"));
2004-02-21 18:38:50 +00:00
view->Docs.findRef(dc);
return;
}
}
view->Docs.findRef(dc);
2004-05-07 17:31:21 +00:00
int n = QMessageBox::warning(this, tr("Warning"),
tr("This will delete the file permanently! Continue ?"),
tr("No"), tr("Yes"));
2004-02-21 18:38:50 +00:00
if(n != 1) return;
if(!QFile::remove(QucsWorkDir.filePath(item->text(0)))) {
2004-05-07 17:31:21 +00:00
QMessageBox::critical(this, tr("Error"),
tr("Cannot delete schematic: ")+item->text(0));
return;
}
2004-02-21 18:38:50 +00:00
if(ConSchematics == item->parent())
ConSchematics->takeItem(item);
else if(ConDisplays == item->parent())
ConDisplays->takeItem(item);
else
ConDatasets->takeItem(item);
}
2003-12-07 15:21:31 +00:00
// ----------------------------------------------------------
// Checks situation and reads all existing Qucs projects
void QucsApp::readProjects()
{
QDir ProjDir(QDir::homeDirPath());
if(!ProjDir.cd(".qucs")) // work directory exists ?
if(!ProjDir.mkdir(".qucs")) { // no, then create it
2004-05-07 17:31:21 +00:00
QMessageBox::warning(this, tr("Warning"),
tr("Cannot create work directory !"));
2004-02-21 18:38:50 +00:00
return;
}
ProjDir.cd(".qucs");
2003-12-07 15:21:31 +00:00
2004-05-07 17:31:21 +00:00
// get all directories
QStringList PrDirs = ProjDir.entryList("*", QDir::Dirs, QDir::Name);
2003-12-07 15:21:31 +00:00
PrDirs.pop_front(); // delete "." from list
PrDirs.pop_front(); // delete ".." from list
Projects->clear();
QStringList::iterator it;
2004-05-07 17:31:21 +00:00
// inserts all project directories
for(it = PrDirs.begin(); it != PrDirs.end(); it++)
2003-12-07 15:21:31 +00:00
if ((*it).right(4) == "_prj") { // project directories end with "_prj"
2004-06-16 17:41:33 +00:00
(*it) = (*it).left((*it).length()-4);// remove "_prj" from project name
2003-12-07 15:21:31 +00:00
Projects->insertItem(*it);
}
}
// #########################################################################
bool QucsApp::closeAllFiles()
{
int Result = 0;
bool notForAll = true;
MessageBox *m = new MessageBox(tr("Closing Qucs document"),
2004-06-22 16:49:55 +00:00
tr("This document contains unsaved changes!\n"
"Do you want to save the changes before closing?"),this);
2004-02-21 18:38:50 +00:00
2003-12-07 15:21:31 +00:00
// close all files and ask to save changed ones
for(QucsDoc *ptr = view->Docs.first(); ptr != 0; ) {
2004-06-22 16:49:55 +00:00
nextDocument(false);
2003-12-07 15:21:31 +00:00
if(ptr->DocChanged) {
2004-04-04 15:56:10 +00:00
if(notForAll) Result = m->exec();
2003-12-07 15:21:31 +00:00
switch(Result) {
case 1: slotFileSave(); // save button
break;
case 2: Result = 1; // save all button
notForAll = false;
slotFileSave();
break;
case 4: Result = 3; // discard all button
notForAll = false;
break;
case 5: return false; // cancel button
}
}
view->Docs.remove();
ptr = view->Docs.current();
}
2004-04-04 15:56:10 +00:00
delete m;
2003-12-07 15:21:31 +00:00
return true;
}
2004-06-22 16:49:55 +00:00
// ########################################################################
// Switches to the next document. Is called when closing a document.
void QucsApp::nextDocument(bool loadDiagrams)
{
// make new document the current
WorkView->setCurrentTab(WorkView->tabAt(view->Docs.at()));
QucsDoc *d = view->Docs.current();
view->resizeContents (int(d->Scale*double(d->ViewX2-d->ViewX1)),
int(d->Scale*double(d->ViewY2-d->ViewY1)));
view->setContentsPos(d->PosX, d->PosY); // set view area
if(loadDiagrams)
view->Docs.current()->reloadGraphs(); // load recent simulation data
view->viewport()->repaint();
view->drawn = false;
QString *ps = d->UndoStack.current();
if(ps != d->UndoStack.getFirst()) undo->setEnabled(true);
else undo->setEnabled(false);
if(ps != d->UndoStack.getLast()) redo->setEnabled(true);
else redo->setEnabled(false);
HierarchyHistory.clear(); // no subcircuit history
popH->setEnabled(false);
}
2004-06-16 17:41:33 +00:00
// ########################################################################
// Is called when another document is selected via the TabBar.
void QucsApp::slotChangeView(int id)
{
QucsDoc *d = view->Docs.current();
d->PosX = view->contentsX(); // save position for old document
d->PosY = view->contentsY();
d = view->Docs.at(WorkView->indexOf(id)); // new current document
view->resizeContents(int(d->Scale*double(d->ViewX2-d->ViewX1)),
int(d->Scale*double(d->ViewY2-d->ViewY1)));
view->setContentsPos(d->PosX, d->PosY);
view->Docs.current()->reloadGraphs(); // load recent simulation data
view->viewport()->repaint();
view->drawn = false;
2004-06-22 16:49:55 +00:00
QString *ps = d->UndoStack.current();
if(ps != d->UndoStack.getFirst()) undo->setEnabled(true);
else undo->setEnabled(false);
if(ps != d->UndoStack.getLast()) redo->setEnabled(true);
else redo->setEnabled(false);
2004-06-16 17:41:33 +00:00
HierarchyHistory.clear(); // no subcircuit history
popH->setEnabled(false);
}
2004-04-24 11:52:43 +00:00
// #######################################################################
2003-12-07 15:21:31 +00:00
// Changes to the document "Name" if possible.
bool QucsApp::gotoPage(const QString& Name)
{
QucsDoc *d;
int cNo, No = view->Docs.at();
2004-05-07 17:31:21 +00:00
// search, if page is already loaded
for(d = view->Docs.first(); d!=0; d = view->Docs.next())
2003-12-07 15:21:31 +00:00
if(d->DocName == Name) break;
if(d != 0) { // open page found ?
2004-05-07 17:31:21 +00:00
view->Docs.current()->reloadGraphs(); // load recent simulation data
// make new document the current
WorkView->setCurrentTab(WorkView->tabAt(view->Docs.at()));
2003-12-07 15:21:31 +00:00
return true;
}
2004-06-16 17:41:33 +00:00
2004-06-21 08:22:13 +00:00
d = new QucsDoc(this, Name);
2003-12-07 15:21:31 +00:00
view->Docs.append(d); // create new page
if(!d->load()) { // load document if possible
view->Docs.remove();
view->Docs.at(No);
2004-05-20 17:27:41 +00:00
view->viewport()->repaint();
view->drawn = false;
2003-12-07 15:21:31 +00:00
return false;
}
cNo = view->Docs.at();
view->Docs.at(No); // back to the last current
2004-06-16 17:41:33 +00:00
// make new document the current (calls "slotChangeView()" indirectly)
2004-05-07 17:31:21 +00:00
WorkView->setCurrentTab(WorkView->tabAt(cNo));
// must be done before the next step, in order to call the change slot !
2003-12-07 15:21:31 +00:00
2004-05-07 17:31:21 +00:00
// if only an untitled document was open -> close it
if(view->Docs.count() == 2)
2003-12-07 15:21:31 +00:00
if(view->Docs.getFirst()->DocName.isEmpty())
if(!view->Docs.getFirst()->DocChanged)
view->Docs.removeRef(view->Docs.getFirst());
view->viewport()->repaint();
view->drawn = false;
return true;
}
2004-06-22 16:49:55 +00:00
// #######################################################################
// Changes to the next document in the TabBar.
void QucsApp::slotNextTab()
{
int No = view->Docs.at() + 1;
if(view->Docs.current() == view->Docs.getLast())
No = 0;
// make new document the current (calls "slotChangeView()" indirectly)
WorkView->setCurrentTab(WorkView->tabAt(No));
view->viewport()->repaint();
view->drawn = false;
}
2003-12-07 15:21:31 +00:00
2004-06-22 16:49:55 +00:00
// #######################################################################
2003-12-07 15:21:31 +00:00
void QucsApp::slotFileSettings()
{
SettingsDialog *d = new SettingsDialog(view->Docs.current(), this);
d->exec();
view->viewport()->repaint();
view->drawn = false;
}
2004-05-25 19:10:00 +00:00
// --------------------------------------------------------------
2004-05-29 13:05:04 +00:00
void QucsApp::slotApplSettings()
2004-05-25 19:10:00 +00:00
{
QucsSettingsDialog *d = new QucsSettingsDialog(this);
d->exec();
view->viewport()->repaint();
view->drawn = false;
}
2003-12-07 15:21:31 +00:00
// --------------------------------------------------------------
void QucsApp::slotFileNew()
{
statusBar()->message(tr("Creating new schematic..."));
2004-06-21 08:22:13 +00:00
view->Docs.append(new QucsDoc(this, ""));
2004-05-07 17:31:21 +00:00
// make new document the current
WorkView->setCurrentTab(WorkView->tabAt(view->Docs.at()));
2003-12-07 15:21:31 +00:00
statusBar()->message(tr("Ready."));
}
// --------------------------------------------------------------
void QucsApp::slotFileOpen()
{
statusBar()->message(tr("Opening file..."));
QString s = QFileDialog::getOpenFileName(QucsWorkDir.path(), QucsFileFilter,
this, "", tr("Enter a Schematic Name"));
2003-12-07 15:21:31 +00:00
if(!s.isEmpty()) gotoPage(s); //openDocument(s);
else statusBar()->message(tr("Opening aborted"), 2000);
statusBar()->message(tr("Ready."));
}
2004-05-07 17:31:21 +00:00
// ########################################################################
2003-12-07 15:21:31 +00:00
void QucsApp::updatePortNumber(int No)
{
if(No<0) return;
QFileInfo Info(view->Docs.current()->DocName);
QString Name = Info.fileName();
2004-05-07 17:31:21 +00:00
2003-12-07 15:21:31 +00:00
for(QListViewItem *p = ConSchematics->firstChild(); p!=0; p = p->nextSibling()) {
if(p->text(0) == Name) {
if(No == 0) p->setText(1,"");
2003-12-26 16:31:25 +00:00
else p->setText(1,QString::number(No)+tr("-port"));
2003-12-07 15:21:31 +00:00
break;
}
}
}
2004-05-07 17:31:21 +00:00
// ######################################################################
2003-12-07 15:21:31 +00:00
bool QucsApp::saveCurrentFile()
{
2004-05-07 17:31:21 +00:00
if(view->Docs.current()->DocName.isEmpty())
return saveAs();
2003-12-07 15:21:31 +00:00
view->Docs.current()->PosX = view->contentsX();
view->Docs.current()->PosY = view->contentsY();
updatePortNumber(view->Docs.current()->save()); // SAVE
return true;
}
2004-05-07 17:31:21 +00:00
// ######################################################################
2003-12-07 15:21:31 +00:00
void QucsApp::slotFileSave()
{
statusBar()->message(tr("Saving file..."));
view->blockSignals(true); // no user interaction during that time
if(!saveCurrentFile()) {
2004-05-07 17:31:21 +00:00
view->blockSignals(false);
2003-12-07 15:21:31 +00:00
statusBar()->message(tr("Saving aborted"), 2000);
statusBar()->message(tr("Ready."));
return;
}
2004-05-07 17:31:21 +00:00
2003-12-07 15:21:31 +00:00
view->blockSignals(false);
statusBar()->message(tr("Ready."));
}
2004-05-07 17:31:21 +00:00
// #######################################################################
bool QucsApp::saveAs()
2003-12-07 15:21:31 +00:00
{
2004-05-07 17:31:21 +00:00
int n = -1;
bool intoView = true;
QString s;
QFileInfo Info;
while(true) {
intoView = true;
Info.setFile(view->Docs.current()->DocName);
if(Info.extension() == "dpl")
s = QFileDialog::getSaveFileName(QucsWorkDir.filePath(Info.fileName()),
2004-05-07 17:31:21 +00:00
tr("Data Display (*.dpl)"), this, "",
tr("Enter a Document Name"));
else s = QFileDialog::getSaveFileName(QucsWorkDir.filePath(Info.fileName()),
2004-05-07 17:31:21 +00:00
QucsFileFilter, this, "",
tr("Enter a Document Name"));
if(s.isEmpty()) return false;
Info.setFile(s); // try to guess the best extension ...
if(Info.extension(false).isEmpty()) { // ... if no one was specified
if(!view->Docs.current()->DocName.isEmpty()) {
Info.setFile(view->Docs.current()->DocName);
s += '.' + Info.extension(false);
}
else s += ".sch";
}
2004-04-17 09:11:48 +00:00
2004-05-07 17:31:21 +00:00
Info.setFile(s);
if(QFile::exists(s)) {
n = QMessageBox::warning(this, tr("Warning"),
tr("The file '")+Info.fileName()+tr("' already exists!\n")+
tr("Saving will overwrite the old one! Continue?"),
tr("No"), tr("Yes"), tr("Cancel"));
if(n == 2) return false; // cancel
if(n == 0) continue;
intoView = false; // file already exists
}
QString ext = Info.extension(false);
if(ext != "sch") if(ext != "dpl") {
n = QMessageBox::warning(this, tr("Warning"),
tr("Only the extensions '.sch' and '.dpl'\n")+
tr("will appear in the content browser! Continue?"),
tr("No"), tr("Yes"), tr("Cancel"));
if(n == 2) return false; // cancel
if(n == 0) continue;
}
2003-12-07 15:21:31 +00:00
2004-05-07 17:31:21 +00:00
// search, if document is open
QucsDoc *d;
int No = view->Docs.at();
for(d = view->Docs.first(); d!=0; d = view->Docs.next())
if(d->DocName == s) break;
view->Docs.at(No); // back to old current document
if(d) {
QMessageBox::information(this, tr("Info"),
tr("Cannot overwrite an open document"));
return false;
}
break;
}
view->Docs.current()->setName(s);
2003-12-07 15:21:31 +00:00
2004-05-07 17:31:21 +00:00
if(intoView) { // insert new name in Content ListView ?
2003-12-07 15:21:31 +00:00
Info.setFile(s);
if(Info.dirPath(true) == QucsWorkDir.absPath())
2004-05-07 17:31:21 +00:00
if(!ProjName.isEmpty()) {
s = Info.fileName(); // remove path from file name
if(Info.extension(false) == "dpl")
Content->setSelected(new QListViewItem(ConDisplays, s), true);
else
Content->setSelected(new QListViewItem(ConSchematics, s), true);
}
}
view->Docs.current()->PosX = view->contentsX();
view->Docs.current()->PosY = view->contentsY();
updatePortNumber(view->Docs.current()->save()); // SAVE
return true;
}
2003-12-07 15:21:31 +00:00
2004-05-07 17:31:21 +00:00
// #######################################################################
void QucsApp::slotFileSaveAs()
{
statusBar()->message(tr("Saving file under new filename..."));
view->blockSignals(true); // no user interaction during the time
if(!saveAs()) {
view->blockSignals(false);
2004-06-12 12:35:04 +00:00
statusBar()->message(tr("Saving aborted"), 3000);
2004-05-07 17:31:21 +00:00
statusBar()->message(tr("Ready."));
return;
2003-12-07 15:21:31 +00:00
}
view->blockSignals(false);
statusBar()->message(tr("Ready."));
}
2004-05-07 17:31:21 +00:00
// #######################################################################
2003-12-07 15:21:31 +00:00
void QucsApp::slotFileSaveAll()
{
statusBar()->message(tr("Saving all files..."));
QucsDoc *tmp = view->Docs.current(); // remember the current
view->blockSignals(true); // no user interaction during the time
2004-05-07 17:31:21 +00:00
2003-12-07 15:21:31 +00:00
for(QucsDoc *ptr = view->Docs.first(); ptr != 0; ptr = view->Docs.next()) {
2004-05-07 17:31:21 +00:00
if(ptr->DocName.isEmpty()) // make document the current ?
WorkView->setCurrentTab(WorkView->tabAt(view->Docs.at()));
2003-12-07 15:21:31 +00:00
saveCurrentFile();
}
2004-03-28 19:51:04 +00:00
2003-12-07 15:21:31 +00:00
view->Docs.findRef(tmp);
view->blockSignals(false);
2004-05-07 17:31:21 +00:00
// back to the current document
WorkView->setCurrentTab(WorkView->tabAt(view->Docs.at()));
2003-12-07 15:21:31 +00:00
statusBar()->message(tr("Ready."));
}
2004-05-07 17:31:21 +00:00
// #######################################################################
2003-12-07 15:21:31 +00:00
void QucsApp::slotFileClose()
{
statusBar()->message(tr("Closing file..."));
if(view->Docs.current()->DocChanged) {
switch(QMessageBox::warning(this,tr("Closing Qucs document"),
2004-05-07 17:31:21 +00:00
tr("The document contains unsaved changes!\n")+
tr("Do you want to save the changes before closing?"),
2003-12-07 15:21:31 +00:00
tr("&Save"), tr("&Discard"), tr("Cancel"), 0, 2)) {
case 0 : slotFileSave();
break;
case 2 : return;
}
}
view->Docs.remove();
if(view->Docs.isEmpty()) // if no document left, create an untitled
2004-06-21 08:22:13 +00:00
view->Docs.append(new QucsDoc(this, ""));
2003-12-07 15:21:31 +00:00
2004-06-22 16:49:55 +00:00
nextDocument(true);
2003-12-07 15:21:31 +00:00
statusBar()->message(tr("Ready."));
}
2004-05-07 17:31:21 +00:00
// ######################################################################
2003-12-07 15:21:31 +00:00
void QucsApp::slotFilePrint()
{
statusBar()->message(tr("Printing..."));
2004-05-07 17:31:21 +00:00
2003-12-07 15:21:31 +00:00
if (Printer.setup(this)) // print dialog
{
QPainter painter;
painter.begin(&Printer);
view->Docs.current()->paint(&painter);
painter.end();
};
statusBar()->message(tr("Ready."));
}
// --------------------------------------------------------------------
// Exits the application.
void QucsApp::slotFileQuit()
{
statusBar()->message(tr("Exiting application..."));
2004-05-07 17:31:21 +00:00
int exit = QMessageBox::information(this, tr("Quit..."),
2004-05-17 19:58:36 +00:00
tr("Do you really want to quit?"),
tr("Yes"), tr("No"));
if(exit == 0)
2004-05-25 19:10:00 +00:00
if(closeAllFiles()) qApp->quit();
2003-12-07 15:21:31 +00:00
statusBar()->message(tr("Ready."));
}
//-----------------------------------------------------------------
// To get all close events.
void QucsApp::closeEvent(QCloseEvent* Event)
{
Event->ignore();
2004-05-25 19:10:00 +00:00
if(closeAllFiles()) qApp->quit();
2003-12-07 15:21:31 +00:00
}
// --------------------------------------------------------------------
void QucsApp::slotEditCut()
{
statusBar()->message(tr("Cutting selection..."));
QClipboard *cb = QApplication::clipboard(); // get system clipboard
QString s = view->Docs.current()->copySelected(true);
if(!s.isEmpty()) {
cb->setText(s, QClipboard::Clipboard);
view->viewport()->repaint();
}
statusBar()->message(tr("Ready."));
}
2004-05-07 17:31:21 +00:00
// ######################################################################
2003-12-07 15:21:31 +00:00
void QucsApp::slotEditCopy()
{
statusBar()->message(tr("Copying selection to clipboard..."));
QClipboard *cb = QApplication::clipboard(); // get system clipboard
QString s = view->Docs.current()->copySelected(false);
if(!s.isEmpty())
cb->setText(s, QClipboard::Clipboard);
statusBar()->message(tr("Ready."));
}
2004-04-24 11:52:43 +00:00
// ########################################################################
2004-01-18 14:41:45 +00:00
void QucsApp::slotHelpIndex()
{
2004-06-26 07:05:47 +00:00
QStringList com;
com << BINARYDIR "qucshelp" << "index.html";
QProcess QucsHelp(com);
if(!QucsHelp.start())
QMessageBox::critical(this, tr("Error"), tr("Cannot start qucshelp!"));
2004-01-18 14:41:45 +00:00
}
2004-04-24 11:52:43 +00:00
// ########################################################################
2004-01-18 14:41:45 +00:00
void QucsApp::slotGettingStarted()
{
2004-06-26 07:05:47 +00:00
QStringList com;
com << BINARYDIR "qucshelp" << "start.html";
QProcess QucsHelp(com);
if(!QucsHelp.start())
QMessageBox::critical(this, tr("Error"), tr("Cannot start qucshelp!"));
2004-01-18 14:41:45 +00:00
}
2004-04-24 11:52:43 +00:00
// ########################################################################
2003-12-07 15:21:31 +00:00
// Is called when the toolbar button is pressed to go into a subcircuit.
void QucsApp::slotIntoHierarchy()
{
QucsDoc *Doc = view->Docs.current();
Component *pc = view->Docs.current()->searchSelSubcircuit();
if(pc == 0) return;
QString s = QucsWorkDir.filePath(pc->Props.getFirst()->Value);
2003-12-07 15:21:31 +00:00
if(!gotoPage(s)) return;
QString *ps = new QString(Doc->DocName);
HierarchyHistory.append(ps); // remember for the way back
popH->setEnabled(true);
}
2004-04-24 11:52:43 +00:00
// ########################################################################
// Is called when the toolbar button is pressed to leave a subcircuit.
2003-12-07 15:21:31 +00:00
void QucsApp::slotPopHierarchy()
{
if(HierarchyHistory.count() == 0) return;
if(!gotoPage( *(HierarchyHistory.last()) )) return;
2004-05-07 17:31:21 +00:00
2003-12-07 15:21:31 +00:00
HierarchyHistory.remove();
if(HierarchyHistory.count() == 0) popH->setEnabled(false);
}
2004-04-24 11:52:43 +00:00
// ########################################################################
2003-12-07 15:21:31 +00:00
void QucsApp::slotShowAll()
{
2004-03-28 19:51:04 +00:00
int x1 = view->Docs.current()->UsedX1;
int y1 = view->Docs.current()->UsedY1;
int x2 = view->Docs.current()->UsedX2;
int y2 = view->Docs.current()->UsedY2;
2003-12-07 15:21:31 +00:00
if(x2==0) if(y2==0) if(x1==0) if(y1==0) return;
x1 -= 40; y1 -= 40;
x2 += 40; y2 += 40;
2004-03-28 19:51:04 +00:00
2003-12-07 15:21:31 +00:00
double xScale = double(view->visibleWidth()) / double(x2-x1);
double yScale = double(view->visibleHeight()) / double(y2-y1);
if(xScale > yScale) xScale = yScale;
2004-06-16 17:41:33 +00:00
if(xScale > 10.0) xScale = 10.0;
if(xScale < 0.01) xScale = 0.01;
2003-12-07 15:21:31 +00:00
view->Docs.current()->Scale = xScale;
view->Docs.current()->ViewX1 = x1;
view->Docs.current()->ViewY1 = y1;
view->Docs.current()->ViewX2 = x2;
view->Docs.current()->ViewY2 = y2;
view->resizeContents(int(xScale*double(x2-x1)), int(xScale*double(y2-y1)));
view->viewport()->repaint();
view->drawn = false;
}
// -----------------------------------------------------------
// Sets the scale factor to 1.
void QucsApp::slotShowOne()
{
2004-05-16 15:02:50 +00:00
QucsDoc *d = view->Docs.current();
2003-12-07 15:21:31 +00:00
2004-05-16 15:02:50 +00:00
d->Scale = 1.0;
int x1 = d->UsedX1;
int y1 = d->UsedY1;
int x2 = d->UsedX2;
int y2 = d->UsedY2;
2004-03-28 19:51:04 +00:00
// view->Docs.current()->sizeOfAll(x1, y1, x2, y2);
2003-12-07 15:21:31 +00:00
if(x2==0) if(y2==0) if(x1==0) if(y1==0) x2 = y2 = 800;
2004-05-16 15:02:50 +00:00
d->ViewX1 = x1-40;
d->ViewY1 = y1-40;
d->ViewX2 = x2+40;
d->ViewY2 = y2+40;
2003-12-07 15:21:31 +00:00
view->resizeContents(x2-x1+80, y2-y1+80);
view->viewport()->repaint();
view->drawn = false;
}
void QucsApp::slotZoomIn()
{
view->Zoom(2.0);
view->viewport()->repaint();
view->drawn = false;
}
void QucsApp::slotZoomOut()
{
view->Zoom(0.5);
view->viewport()->repaint();
view->drawn = false;
}
2004-04-24 11:52:43 +00:00
// -----------------------------------------------------------------------
2003-12-07 15:21:31 +00:00
// Is called when the simulate toolbar button is pressed.
void QucsApp::slotSimulate()
{
if(view->Docs.current()->DocName.isEmpty()) // if document 'untitled' ...
2004-05-07 17:31:21 +00:00
if(!saveCurrentFile()) return; // ... save schematic before
2003-12-07 15:21:31 +00:00
2004-03-28 19:51:04 +00:00
SimMessage *sim = new SimMessage(this);
2004-05-07 17:31:21 +00:00
// disconnect is automatically performed, if one of the involved objects
// is destroyed !
2004-03-28 19:51:04 +00:00
connect(sim, SIGNAL(SimulationEnded(int, SimMessage*)), this,
SLOT(slotAfterSimulation(int, SimMessage*)));
connect(sim, SIGNAL(displayDataPage()), this, SLOT(slotChangePage()));
// sim.ProgText->clear();
// sim.ErrText->clear();
sim->show();
2003-12-07 15:21:31 +00:00
QDate d = QDate::currentDate(); // get date of today
QTime t = QTime::currentTime(); // get time
2004-05-07 17:31:21 +00:00
sim->ProgText->insert(tr("Starting new simulation on ")+
d.toString("ddd dd. MMM yyyy"));
2004-03-28 19:51:04 +00:00
sim->ProgText->insert(tr(" at ")+t.toString("hh:mm:ss")+"\n\n");
2003-12-07 15:21:31 +00:00
2004-03-28 19:51:04 +00:00
sim->ProgText->insert(tr("creating netlist ...."));
QFile NetlistFile(QucsHomeDir.filePath("netlist.txt"));
2004-07-18 18:48:51 +00:00
if(!view->Docs.current()->File.createNetlist(&NetlistFile)) {
2004-03-28 19:51:04 +00:00
sim->ErrText->insert(tr("ERROR: Cannot create netlist file!\nAborted."));
2004-04-04 15:56:10 +00:00
sim->errorSimEnded();
2003-12-07 15:21:31 +00:00
return;
}
2004-03-28 19:51:04 +00:00
sim->ProgText->insert(tr("done.\n"));
2003-12-07 15:21:31 +00:00
QStringList com;
com << BINARYDIR "qucsator" << "-i" << QucsHomeDir.filePath("netlist.txt");
com << "-o" << QucsWorkDir.filePath(view->Docs.current()->DataSet);
2004-03-28 19:51:04 +00:00
if(!sim->startProcess(com)) {
sim->ErrText->insert(tr("ERROR: Cannot start simulator!"));
2004-04-04 15:56:10 +00:00
sim->errorSimEnded();
2003-12-07 15:21:31 +00:00
return;
}
}
2004-04-24 11:52:43 +00:00
// ------------------------------------------------------------------------
2003-12-07 15:21:31 +00:00
// Is called after the simulation process terminates.
2004-03-28 19:51:04 +00:00
void QucsApp::slotAfterSimulation(int Status, SimMessage *sim)
2003-12-07 15:21:31 +00:00
{
2004-03-28 19:51:04 +00:00
bool shouldClosed = false; // should simulation window close after simualtion
2003-12-07 15:21:31 +00:00
QDate d = QDate::currentDate(); // get date of today
QTime t = QTime::currentTime(); // get time
if(Status == 0) { // errors ocurred ?
2004-05-07 17:31:21 +00:00
sim->ProgText->insert(tr("\nSimulation ended on ")+
d.toString("ddd dd. MMM yyyy"));
2004-03-28 19:51:04 +00:00
sim->ProgText->insert(tr(" at ")+t.toString("hh:mm:ss")+"\n");
sim->ProgText->insert(tr("Ready.\n"));
2003-12-07 15:21:31 +00:00
if(view->Docs.current()->SimOpenDpl) {
2004-03-28 19:51:04 +00:00
shouldClosed = true;
2003-12-07 15:21:31 +00:00
slotChangePage(); // switch to the corresponding data display page
view->viewport()->update();
}
else {
2004-05-07 17:31:21 +00:00
view->Docs.current()->reloadGraphs(); // load recent simulation data
2003-12-07 15:21:31 +00:00
view->viewport()->update();
}
// put all dataset files into "Content"-ListView (update)
/* QStringList Elements = ProjDir.entryList("*.dat", QDir::Files, QDir::Name);
for(it = Elements.begin(); it != Elements.end(); ++it)
new QListViewItem(ConDatasets, (*it).ascii());*/
}
else {
2004-05-07 17:31:21 +00:00
sim->ProgText->insert(tr("\nErrors occured during simulation on ")+
d.toString("ddd dd. MMM yyyy"));
2004-03-28 19:51:04 +00:00
sim->ProgText->insert(tr(" at ")+t.toString("hh:mm:ss")+"\n");
sim->ProgText->insert(tr("Aborted.\n"));
2003-12-07 15:21:31 +00:00
}
QFile file(QucsHomeDir.filePath("log.txt")); // save simulator messages
2003-12-07 15:21:31 +00:00
if(file.open(IO_WriteOnly)) {
int z;
QTextStream stream(&file);
2003-12-26 16:31:25 +00:00
stream << tr("Output:\n----------\n\n");
2004-03-28 19:51:04 +00:00
for(z=0; z<=sim->ProgText->paragraphs(); z++)
stream << sim->ProgText->text(z) << "\n";
2003-12-26 16:31:25 +00:00
stream << tr("\n\n\nErrors:\n--------\n\n");
2004-03-28 19:51:04 +00:00
for(z=0; z<sim->ErrText->paragraphs(); z++)
stream << sim->ErrText->text(z) << "\n";
2003-12-07 15:21:31 +00:00
file.close();
}
2004-03-28 19:51:04 +00:00
if(shouldClosed) sim->slotClose(); // close and delete simulation window
2003-12-07 15:21:31 +00:00
}
2004-04-24 11:52:43 +00:00
// ------------------------------------------------------------------------
2003-12-07 15:21:31 +00:00
// Is called to show the output messages of the last simulation.
void QucsApp::slotShowLastMsg()
{
QString com = QucsSettings.Editor+" "+QucsHomeDir.filePath("log.txt");
2004-06-26 07:05:47 +00:00
QProcess QucsEditor(QStringList::split(" ", com));
if(!QucsEditor.start())
QMessageBox::critical(this, tr("Error"), tr("Cannot start text editor!"));
2003-12-07 15:21:31 +00:00
}
2004-04-24 11:52:43 +00:00
// ------------------------------------------------------------------------
2003-12-07 15:21:31 +00:00
// Is called to show the netlist of the last simulation.
void QucsApp::slotShowLastNetlist()
{
QString com = QucsSettings.Editor+" "+QucsHomeDir.filePath("netlist.txt");
2004-06-26 07:05:47 +00:00
QProcess QucsEditor(QStringList::split(" ", com));
if(!QucsEditor.start())
QMessageBox::critical(this, tr("Error"), tr("Cannot start text editor!"));
2003-12-07 15:21:31 +00:00
}
2004-04-24 11:52:43 +00:00
// ------------------------------------------------------------------------
2003-12-07 15:21:31 +00:00
// Changes to the corresponding data display page or vice versa.
void QucsApp::slotChangePage()
{
QucsDoc *Doc = view->Docs.current();
QString Name = Doc->DataDisplay;
if(Name.isEmpty()) {
QMessageBox::critical(this, tr("Error"), tr("No page set !"));
return;
}
2004-06-26 07:05:47 +00:00
2003-12-07 15:21:31 +00:00
QFileInfo Info;
QucsDoc *d;
2004-02-21 18:38:50 +00:00
2004-04-24 11:52:43 +00:00
// search, if page is already loaded
for(d = view->Docs.first(); d!=0; d = view->Docs.next()) {
2003-12-07 15:21:31 +00:00
Info.setFile(d->DocName);
if(Info.fileName() == Name) break;
}
if(d == 0) { // no open page found ?
Info.setFile(Doc->DocName);
QFile file(Info.dirPath(true)+"/"+Name);
if(!file.open(IO_ReadOnly)) // load page
if(!file.open(IO_ReadWrite)) { // if it doesn't exist, create
view->Docs.findRef(Doc);
2004-05-07 17:31:21 +00:00
QMessageBox::critical(this, tr("Error"),
tr("Cannot create ")+Info.dirPath(true)+"/"+Name);
2003-12-07 15:21:31 +00:00
return;
}
2004-05-07 17:31:21 +00:00
else new QListViewItem(ConDisplays, Name); // insert new name
2003-12-07 15:21:31 +00:00
file.close();
2004-06-21 08:22:13 +00:00
d = new QucsDoc(this, Info.dirPath(true)+"/"+Name);
2003-12-07 15:21:31 +00:00
view->Docs.append(d); // create new page
if(!d->load()) {
view->Docs.remove();
view->Docs.findRef(Doc);
return;
}
}
2004-06-12 12:35:04 +00:00
2003-12-07 15:21:31 +00:00
int cNo = view->Docs.at();
view->Docs.findRef(Doc); // back to the last current
2004-05-07 17:31:21 +00:00
WorkView->setCurrentTab(WorkView->tabAt(cNo)); // make new doc the current
// must be done before the next step, in order to call the change slot !
2003-12-07 15:21:31 +00:00
TabView->setCurrentPage(2); // switch to "Component"-Tab
if(Name.right(4) == ".dpl") {
2004-05-07 17:31:21 +00:00
CompChoose->setCurrentItem(COMBO_Diagrams); // switch to diagrams
2003-12-07 15:21:31 +00:00
slotSetCompView(COMBO_Diagrams);
}
}
2004-04-24 11:52:43 +00:00
// #######################################################################
2003-12-07 15:21:31 +00:00
// Is called when a double click is made in the content ListView.
//void QucsApp::slotOpenContent(QListViewItem *item, const QPoint &, int column) // QT 3.2
void QucsApp::slotOpenContent(QListViewItem *item)
{
if(item == 0) return; // no item was double clicked
2004-04-24 11:52:43 +00:00
if(item->parent() == 0) return; // no component, but item "schematic", ...
2003-12-07 15:21:31 +00:00
QucsWorkDir.setPath(QucsHomeDir.path());
if(!QucsWorkDir.cd(ProjName+"_prj/")) {
QMessageBox::critical(this, tr("Error"),
tr("Cannot access project directory: ")+
QucsWorkDir.path());
return;
}
gotoPage(QucsWorkDir.filePath(item->text(0)));
2003-12-07 15:21:31 +00:00
if(item->text(1).isEmpty()) return;
// switch on the 'select' action
2004-05-16 15:02:50 +00:00
Acts.select->blockSignals(true);
Acts.select->setOn(true);
Acts.select->blockSignals(false);
Acts.slotSelect(true);
2003-12-07 15:21:31 +00:00
}
2004-04-24 11:52:43 +00:00
// ########################################################################
2003-12-07 15:21:31 +00:00
// Is called when the open project menu is called.
void QucsApp::slotMenuOpenProject()
{
QFileDialog *d = new QFileDialog(QucsHomeDir.path());
2003-12-26 16:31:25 +00:00
d->setCaption(tr("Choose Project Directory for Opening"));
2003-12-07 15:21:31 +00:00
d->setShowHiddenFiles(true);
d->setMode(QFileDialog::DirectoryOnly);
if(d->exec() != QDialog::Accepted) return;
QString s = d->selectedFile();
if(s.isEmpty()) return;
s = s.left(s.length()-1); // cut off trailing '/'
int i = s.findRev('/');
if(i > 0) s = s.mid(i+1); // cut out the last subdirectory
s.remove("_prj");
OpenProject(d->selectedFile(), s);
}
2004-04-24 11:52:43 +00:00
// #######################################################################
2003-12-07 15:21:31 +00:00
// Is called when the open project button is pressed.
void QucsApp::slotOpenProject(QListBoxItem *item)
{
OpenProject(QucsHomeDir.filePath(item->text()+"_prj"), item->text());
2003-12-07 15:21:31 +00:00
}
2004-04-24 11:52:43 +00:00
// ########################################################################
2003-12-07 15:21:31 +00:00
// Checks whether this file is a qucs file and whether it is an subcircuit.
// It returns the number of subcircuit ports.
int QucsApp::testFile(const QString& DocName)
{
QFile file(DocName);
if(!file.open(IO_ReadOnly)) {
return -1;
}
QString Line;
2004-05-07 17:31:21 +00:00
// *****************************************************************
// To strongly speed up the file read operation the whole file is
// read into the memory in one piece.
QTextStream ReadWhole(&file);
QString FileString = ReadWhole.read();
file.close();
QTextStream stream(&FileString, IO_ReadOnly);
2003-12-07 15:21:31 +00:00
// read header **************************
2004-05-29 13:05:04 +00:00
do {
if(stream.atEnd()) {
file.close();
return -2;
}
Line = stream.readLine();
Line = Line.stripWhiteSpace();
} while(Line.isEmpty());
2003-12-07 15:21:31 +00:00
if(Line.left(16) != "<Qucs Schematic ") { // wrong file type ?
file.close();
return -3;
}
QString s = PACKAGE_VERSION;
2004-01-18 14:41:45 +00:00
s.remove('.');
2003-12-07 15:21:31 +00:00
Line = Line.mid(16, Line.length()-17);
2004-01-18 14:41:45 +00:00
Line.remove('.');
if(Line > s) { // wrong version number ? (only backward compatible)
2003-12-07 15:21:31 +00:00
file.close();
return -4;
}
// read content *************************
while(!stream.atEnd()) {
Line = stream.readLine();
if(Line == "<Components>") break;
}
int z=0;
while(!stream.atEnd()) {
Line = stream.readLine();
2004-05-07 17:31:21 +00:00
if(Line == "</Components>") {
file.close();
return z; // return number of ports
}
2003-12-07 15:21:31 +00:00
Line = Line.stripWhiteSpace();
s = Line.section(' ',0,0); // component type
if(s == "<Port") z++;
}
return -5; // component field not closed
}
2004-04-24 11:52:43 +00:00
// #######################################################################
2003-12-07 15:21:31 +00:00
// Opens an existing project.
void QucsApp::OpenProject(const QString& Path, const QString& Name)
{
if(!closeAllFiles()) return; // close files and ask for saving them
2004-06-21 08:22:13 +00:00
view->Docs.append(new QucsDoc(this, "")); // create 'untitled' file
2003-12-07 15:21:31 +00:00
view->viewport()->repaint();
view->drawn = false;
QDir ProjDir(QDir::cleanDirPath(Path));
2004-07-18 18:48:51 +00:00
if(!ProjDir.exists() || !ProjDir.isReadable()) { // check project directory
2003-12-07 15:21:31 +00:00
2004-05-07 17:31:21 +00:00
QMessageBox::critical(this, tr("Error"),
tr("Cannot access project directory: ")+Path);
2003-12-07 15:21:31 +00:00
return;
}
QucsWorkDir.setPath(ProjDir.path());
2003-12-07 15:21:31 +00:00
2004-07-18 18:48:51 +00:00
Content->setColumnText(0,tr("Content of '")+Name+tr("'")); // column text
2003-12-07 15:21:31 +00:00
// Content->setColumnWidth(0, Content->width()-5);
Content->clear(); // empty content view
ConDatasets = new QListViewItem(Content, tr("Datasets"));
ConDisplays = new QListViewItem(Content, tr("Data Displays"));
ConSchematics = new QListViewItem(Content, tr("Schematics"));
int n;
// put all schematic files into "Content"-ListView
QStringList Elements = ProjDir.entryList("*.sch", QDir::Files, QDir::Name);
QStringList::iterator it;
for(it = Elements.begin(); it != Elements.end(); ++it) {
n = testFile(ProjDir.filePath((*it).ascii()));
2003-12-07 15:21:31 +00:00
if(n >= 0) {
2004-05-07 17:31:21 +00:00
if(n > 0)
new QListViewItem(ConSchematics, (*it).ascii(),
QString::number(n)+tr("-port"));
2003-12-07 15:21:31 +00:00
else new QListViewItem(ConSchematics, (*it).ascii());
}
}
// put all data display files into "Content"-ListView
Elements = ProjDir.entryList("*.dpl", QDir::Files, QDir::Name);
for(it = Elements.begin(); it != Elements.end(); ++it)
new QListViewItem(ConDisplays, (*it).ascii());
// put all dataset files into "Content"-ListView
Elements = ProjDir.entryList("*.dat", QDir::Files, QDir::Name);
for(it = Elements.begin(); it != Elements.end(); ++it)
new QListViewItem(ConDatasets, (*it).ascii());
TabView->setCurrentPage(1); // switch to "Content"-Tab
Content->firstChild()->setOpen(true); // show schematics
ProjName = Name; // remember the name of project
setCaption("Qucs " PACKAGE_VERSION + tr(" - Project: ")+Name); // show name in title of main window
2003-12-07 15:21:31 +00:00
}
2004-04-24 11:52:43 +00:00
// #######################################################################
2003-12-07 15:21:31 +00:00
// Is called, when "Create New Project"-Button is pressed.
void QucsApp::slotProjNewButt()
{
NewProjDialog *d = new NewProjDialog(this);
if(d->exec() != QDialog::Accepted) return;
QDir projDir(QucsHomeDir.path());
if(projDir.mkdir(d->ProjName->text()+"_prj")) {
2004-05-07 17:31:21 +00:00
Projects->insertItem(d->ProjName->text(),0); // at first position
2003-12-07 15:21:31 +00:00
if(d->OpenProj->isChecked()) slotOpenProject(Projects->firstItem());
}
2004-05-07 17:31:21 +00:00
else QMessageBox::information(this, tr("Info"),
tr("Cannot create project directory !"));
2003-12-07 15:21:31 +00:00
}
2004-06-06 14:13:59 +00:00
// ######################################################################
// The following arrays contains the components that appear in the
// component listview.
typedef Component* (*pInfoFunc) (QString&, char* &, bool);
pInfoFunc Simulations[7] =
{&DC_Sim::info, &TR_Sim::info, &AC_Sim::info, &SP_Sim::info,
&HB_Sim::info, &Param_Sweep::info, 0};
pInfoFunc lumpedComponents[18] =
2004-06-16 17:41:33 +00:00
{&Resistor::info, &Resistor::info_us, &Capacitor::info, &Inductor::info,
2004-06-06 14:13:59 +00:00
&Ground::info, &SubCirPort::info, &Transformer::info, &symTrafo::info,
&dcBlock::info, &dcFeed::info, &BiasT::info, &Attenuator::info,
&Isolator::info, &Circulator::info, &Gyrator::info, &Phaseshifter::info,
&iProbe::info, 0};
pInfoFunc Sources[12] =
{&Volt_dc::info, &Ampere_dc::info, &Volt_ac::info, &Ampere_ac::info,
&Source_ac::info, &Volt_noise::info, &Ampere_noise::info, &VCCS::info,
&CCCS::info, &VCVS::info, &CCVS::info, 0};
2004-07-17 17:19:00 +00:00
pInfoFunc TransmissionLines[13] =
2004-06-06 14:13:59 +00:00
{&TLine::info, &Substrate::info, &MSline::info, &MScoupled::info,
2004-07-28 18:57:52 +00:00
&MScorner::info, &MSmbend::info, &MSstep::info, &MStee::info,
2004-07-25 16:58:44 +00:00
&MScross::info, &MSopen::info, &MSgap::info, &Coplanar::info, 0};
2004-06-06 14:13:59 +00:00
2004-07-17 17:19:00 +00:00
pInfoFunc nonlinearComps[11] =
{&Diode::info, &BJT::info, &BJT::info_pnp, &BJTsub::info,
&BJTsub::info_pnp, &JFET::info, &JFET::info_p,
2004-06-06 14:13:59 +00:00
&MOSFET::info, &MOSFET::info_p, &MOSFET_depl::info, 0};
2004-04-24 11:52:43 +00:00
// #######################################################################
2003-12-07 15:21:31 +00:00
// Whenever the Component Library ComboBox is changed, this slot fills the Component IconView
// with the appropriat components.
void QucsApp::slotSetCompView(int index)
{
2004-06-06 14:13:59 +00:00
char *File;
QString Name;
2004-06-12 12:35:04 +00:00
pInfoFunc *Infos = 0;
2004-06-06 14:13:59 +00:00
2003-12-07 15:21:31 +00:00
CompComps->clear(); // clear the IconView
switch(index) {
2004-06-12 12:35:04 +00:00
case COMBO_passive: Infos = &lumpedComponents[0]; break;
case COMBO_Sources: Infos = &Sources[0]; break;
case COMBO_TLines: Infos = &TransmissionLines[0]; break;
case COMBO_nonlinear: Infos = &nonlinearComps[0]; break;
2003-12-07 15:21:31 +00:00
case COMBO_File:
2004-05-20 17:27:41 +00:00
new QIconViewItem(CompComps, tr("1-port S parameter file"),
QImage(BITMAPDIR "spfile1.xpm"));
new QIconViewItem(CompComps, tr("2-port S parameter file"),
QImage(BITMAPDIR "spfile2.xpm"));
new QIconViewItem(CompComps, tr("3-port S parameter file"),
QImage(BITMAPDIR "spfile3.xpm"));
new QIconViewItem(CompComps, tr("4-port S parameter file"),
QImage(BITMAPDIR "spfile4.xpm"));
new QIconViewItem(CompComps, tr("5-port S parameter file"),
QImage(BITMAPDIR "spfile5.xpm"));
new QIconViewItem(CompComps, tr("6-port S parameter file"),
QImage(BITMAPDIR "spfile6.xpm"));
2004-06-12 12:35:04 +00:00
return;
case COMBO_Sims: Infos = &Simulations[0]; break;
2003-12-07 15:21:31 +00:00
case COMBO_Paints:
2004-05-20 17:27:41 +00:00
new QIconViewItem(CompComps, tr("Line"),
QImage(BITMAPDIR "line.xpm"));
new QIconViewItem(CompComps, tr("Arrow"),
QImage(BITMAPDIR "arrow.xpm"));
new QIconViewItem(CompComps, tr("Text"),
QImage(BITMAPDIR "text.xpm"));
new QIconViewItem(CompComps, tr("Ellipse"),
QImage(BITMAPDIR "ellipse.xpm"));
new QIconViewItem(CompComps, tr("Rectangle"),
QImage(BITMAPDIR "rectangle.xpm"));
new QIconViewItem(CompComps, tr("filled Ellipse"),
QImage(BITMAPDIR "filledellipse.xpm"));
new QIconViewItem(CompComps, tr("filled Rectangle"),
QImage(BITMAPDIR "filledrect.xpm"));
2004-06-12 12:35:04 +00:00
return;
2003-12-07 15:21:31 +00:00
case COMBO_Diagrams:
2004-05-20 17:27:41 +00:00
new QIconViewItem(CompComps, tr("Cartesian"),
QImage(BITMAPDIR "rect.xpm"));
new QIconViewItem(CompComps, tr("Polar"),
QImage(BITMAPDIR "polar.xpm"));
new QIconViewItem(CompComps, tr("Tabular"),
QImage(BITMAPDIR "tabular.xpm"));
new QIconViewItem(CompComps, tr("Smith Chart"),
QImage(BITMAPDIR "smith.xpm"));
2004-06-12 12:35:04 +00:00
return;
}
while(*Infos != 0) {
(**Infos) (Name, File, false);
new QIconViewItem(CompComps, Name,
QImage(BITMAPDIR+QString(File)+".xpm"));
Infos++;
2003-12-07 15:21:31 +00:00
}
}
2004-04-24 11:52:43 +00:00
// ----------------------------------------------------------------------
2003-12-07 15:21:31 +00:00
// Is called when the mouse is clicked within the Component QIconView.
void QucsApp::slotSelectComponent(QIconViewItem *item)
{
2004-05-07 17:31:21 +00:00
// delete previously selected elements
if(view->selComp != 0) delete view->selComp;
if(view->selDiag != 0) delete view->selDiag;
2004-05-16 15:02:50 +00:00
if(view->selPaint != 0) delete view->selDiag;
view->selComp = 0; // no component selected
view->selDiag = 0; // no diagram selected
2003-12-07 15:21:31 +00:00
view->selPaint = 0; // no painting selected
if(item == 0) { // mouse button pressed not over an item ?
// CompComps->setSelected(CompComps->currentItem(), false); // deselect component in ViewList
CompComps->clearSelection(); // deselect component in ViewList
if(view->drawn) view->viewport()->repaint();
view->drawn = false;
return;
}
// toggle last toolbar button off
if(activeAction) {
activeAction->blockSignals(true); // do not call toggle slot
activeAction->setOn(false); // set last toolbar button off
activeAction->blockSignals(false);
}
activeAction = 0;
2004-06-06 14:13:59 +00:00
2004-06-12 12:35:04 +00:00
pInfoFunc Infos = 0;
2003-12-07 15:21:31 +00:00
switch(CompChoose->currentItem()) {
case COMBO_passive:
2004-06-06 14:13:59 +00:00
Infos = lumpedComponents[CompComps->index(item)];
break;
2003-12-07 15:21:31 +00:00
case COMBO_Sources:
2004-06-06 14:13:59 +00:00
Infos = Sources[CompComps->index(item)];
break;
2003-12-07 15:21:31 +00:00
case COMBO_TLines:
2004-06-06 14:13:59 +00:00
Infos = TransmissionLines[CompComps->index(item)];
break;
2003-12-07 15:21:31 +00:00
case COMBO_nonlinear:
2004-06-06 14:13:59 +00:00
Infos = nonlinearComps[CompComps->index(item)];
break;
2003-12-07 15:21:31 +00:00
case COMBO_File:
2004-06-06 14:13:59 +00:00
view->selComp = new SParamFile(CompComps->index(item)+1);
break;
2003-12-07 15:21:31 +00:00
case COMBO_Sims:
2004-06-06 14:13:59 +00:00
Infos = Simulations[CompComps->index(item)];
break;
2003-12-07 15:21:31 +00:00
case COMBO_Paints:
2004-06-16 17:41:33 +00:00
switch(CompComps->index(item)) {
case 0: view->selPaint = new GraphicLine(); break;
case 1: view->selPaint = new Arrow(); break;
case 2: view->selPaint = new GraphicText(); break;
case 3: view->selPaint = new Ellipse(); break;
case 4: view->selPaint = new Rectangle(); break;
case 5: view->selPaint = new Ellipse(true); break;
case 6: view->selPaint = new Rectangle(true); break;
}
if(view->drawn) view->viewport()->repaint();
view->drawn = false;
view->MouseMoveAction = &QucsView::MMovePainting;
view->MousePressAction = &QucsView::MPressPainting;
view->MouseReleaseAction = &QucsView::MouseDoNothing;
view->MouseDoubleClickAction = &QucsView::MouseDoNothing;
return;
2003-12-07 15:21:31 +00:00
case COMBO_Diagrams:
switch(CompComps->index(item)) {
2004-04-24 11:52:43 +00:00
case 0: view->selDiag = new RectDiagram(); break;
2004-05-07 17:31:21 +00:00
case 1: view->selDiag = new PolarDiagram(); break;
case 2: view->selDiag = new TabDiagram(); break;
case 3: view->selDiag = new SmithDiagram(); break;
2003-12-07 15:21:31 +00:00
}
if(view->drawn) view->viewport()->repaint();
view->drawn = false;
view->MouseMoveAction = &QucsView::MMoveDiagram;
view->MousePressAction = &QucsView::MPressDiagram;
view->MouseReleaseAction = &QucsView::MouseDoNothing;
view->MouseDoubleClickAction = &QucsView::MouseDoNothing;
return;
}
2004-06-06 14:13:59 +00:00
char *Dummy2;
QString Dummy1;
2004-06-12 12:35:04 +00:00
if(Infos) view->selComp = (*Infos) (Dummy1, Dummy2, true);
2004-06-06 14:13:59 +00:00
2003-12-07 15:21:31 +00:00
if(view->drawn) view->viewport()->repaint();
view->drawn = false;
view->MouseMoveAction = &QucsView::MMoveComponent;
view->MousePressAction = &QucsView::MPressComponent;
view->MouseReleaseAction = &QucsView::MouseDoNothing;
view->MouseDoubleClickAction = &QucsView::MouseDoNothing;
}
2004-05-07 17:31:21 +00:00
// -----------------------------------------------------------------------
2003-12-07 15:21:31 +00:00
// Is called when the mouse is clicked within the Content QListView.
void QucsApp::slotSelectSubcircuit(QListViewItem *item)
{
if(item == 0) { // mouse button pressed not over an item ?
Content->clearSelection(); // deselect component in ListView
if(view->drawn) view->viewport()->repaint();
view->drawn = false;
return;
}
if(item->parent() == 0) return;
2004-05-07 17:31:21 +00:00
if(item->parent()->text(0) != tr("Schematics"))
return; // return, if not clicked on schematic
int n = testFile(QucsWorkDir.filePath(item->text(0)));
2003-12-07 15:21:31 +00:00
if(n<=0) return; // return, if not a subcircuit
2004-05-07 17:31:21 +00:00
// delete previously selected elements
if(view->selComp != 0) delete view->selComp;
if(view->selDiag != 0) delete view->selDiag;
2003-12-07 15:21:31 +00:00
view->selComp = 0; // no component selected
view->selDiag = 0; // no diagram selected
// toggle last toolbar button off
if(activeAction) {
activeAction->blockSignals(true); // do not call toggle slot
activeAction->setOn(false); // set last toolbar button off
activeAction->blockSignals(false);
}
activeAction = 0;
view->selComp = new Subcircuit(n);
view->selComp->Props.first()->Value = item->text(0);
if(view->drawn) view->viewport()->repaint();
view->drawn = false;
view->MouseMoveAction = &QucsView::MMoveComponent;
view->MousePressAction = &QucsView::MPressComponent;
view->MouseReleaseAction = &QucsView::MouseDoNothing;
view->MouseDoubleClickAction = &QucsView::MouseDoNothing;
}
2004-04-17 09:11:48 +00:00
2004-05-07 17:31:21 +00:00
// -----------------------------------------------------------------------
2003-12-07 15:21:31 +00:00
// Is called when the select all action is activated.
void QucsApp::slotSelectAll()
{
2004-05-07 17:31:21 +00:00
view->Docs.current()->selectElements(INT_MIN, INT_MIN,
INT_MAX, INT_MAX, true);
2003-12-07 15:21:31 +00:00
view->viewport()->repaint();
view->drawn = false;
}
2004-05-07 17:31:21 +00:00
// #######################################################################
2003-12-07 15:21:31 +00:00
// Is called, when "Open Project"-Button is pressed.
void QucsApp::slotProjOpenButt()
{
QListBoxItem *item = Projects->selectedItem();
if(item) slotOpenProject(item);
2004-05-07 17:31:21 +00:00
else QMessageBox::information(this, tr("Info"),
tr("No project is selected !"));
2003-12-07 15:21:31 +00:00
}
2004-05-07 17:31:21 +00:00
// #######################################################################
2003-12-07 15:21:31 +00:00
bool QucsApp::DeleteProject(const QString& Path, const QString& Name)
{
if(Name == ProjName) {
2004-05-07 17:31:21 +00:00
QMessageBox::information(this, tr("Info"),
tr("Cannot delete an open project !"));
2003-12-07 15:21:31 +00:00
return false;
}
// first ask, if really delete project ?
if(QMessageBox::warning(this, tr("Warning"),
tr("This will destroy all the project files permanently ! Continue ?"),
2004-05-07 17:31:21 +00:00
tr("&Yes"), tr("&No"), 0,1,1)) return false;
2003-12-07 15:21:31 +00:00
QDir projDir = QDir(Path);
QStringList ProjFiles = projDir.entryList("*", QDir::Files); // all files
2003-12-07 15:21:31 +00:00
// removes every file, remove("*") does not work
QStringList::iterator it;
for(it = ProjFiles.begin(); it != ProjFiles.end(); it++) {
if(!projDir.remove(*it)) {
2004-05-07 17:31:21 +00:00
QMessageBox::information(this, tr("Info"),
tr("Cannot remove project file: ")+(*it));
2003-12-07 15:21:31 +00:00
return false;
}
}
projDir.cdUp(); // leave project directory for deleting
if(!projDir.rmdir(Name+"_prj")) {
2004-05-07 17:31:21 +00:00
QMessageBox::information(this, tr("Info"),
tr("Cannot remove project directory !"));
2003-12-07 15:21:31 +00:00
return false;
}
return true;
}
2004-05-07 17:31:21 +00:00
// ########################################################################
2003-12-07 15:21:31 +00:00
// Is called, when "Delete Project"-menu is pressed.
void QucsApp::slotMenuDelProject()
{
QFileDialog *d = new QFileDialog(QucsHomeDir.path());
2003-12-07 15:21:31 +00:00
d->setCaption(tr("Choose Project Directory for Deleting"));
d->setShowHiddenFiles(true);
d->setMode(QFileDialog::DirectoryOnly);
if(d->exec() != QDialog::Accepted) return;
QString s = d->selectedFile();
if(s.isEmpty()) return;
s = s.left(s.length()-1); // cut off trailing '/'
int i = s.findRev('/');
if(i > 0) s = s.mid(i+1); // cut out the last subdirectory
s.remove("_prj");
DeleteProject(d->selectedFile(), s);
readProjects(); // re-reads all projects and inserts them into the ListBox
}
2004-05-07 17:31:21 +00:00
// #######################################################################
2003-12-07 15:21:31 +00:00
// Is called, when "Delete Project"-Button is pressed.
void QucsApp::slotProjDelButt()
{
QListBoxItem *item = Projects->selectedItem();
if(!item) {
2004-05-07 17:31:21 +00:00
QMessageBox::information(this, tr("Info"),
tr("No project is selected !"));
2003-12-07 15:21:31 +00:00
return;
}
if(!DeleteProject(QucsHomeDir.filePath(item->text()+"_prj"),
2004-05-07 17:31:21 +00:00
item->text())) return;
2003-12-07 15:21:31 +00:00
Projects->removeItem(Projects->currentItem()); // remove from project list
}
2004-06-12 12:35:04 +00:00
// #######################################################################
// Is called, when "Undo"-Button is pressed.
void QucsApp::slotEditUndo()
{
view->Docs.current()->undo();
view->viewport()->repaint();
view->drawn = false;
}
2004-06-21 08:22:13 +00:00
// #######################################################################
// Is called, when "Undo"-Button is pressed.
void QucsApp::slotEditRedo()
{
view->Docs.current()->redo();
view->viewport()->repaint();
view->drawn = false;
}
2004-07-25 16:58:44 +00:00
// #######################################################################
// Is called, when "Align top" action is activated.
void QucsApp::slotAlignTop()
{
2004-07-28 18:57:52 +00:00
if(!view->Docs.current()->aligning(0))
QMessageBox::information(this, tr("Info"),
tr("At least two elements must be selected !"));
2004-07-25 16:58:44 +00:00
view->viewport()->repaint();
view->drawn = false;
}
// #######################################################################
// Is called, when "Align bottom" action is activated.
void QucsApp::slotAlignBottom()
{
2004-07-28 18:57:52 +00:00
if(!view->Docs.current()->aligning(1))
QMessageBox::information(this, tr("Info"),
tr("At least two elements must be selected !"));
2004-07-25 16:58:44 +00:00
view->viewport()->repaint();
view->drawn = false;
}
// #######################################################################
// Is called, when "Align left" action is activated.
void QucsApp::slotAlignLeft()
{
2004-07-28 18:57:52 +00:00
if(!view->Docs.current()->aligning(2))
QMessageBox::information(this, tr("Info"),
tr("At least two elements must be selected !"));
2004-07-25 16:58:44 +00:00
view->viewport()->repaint();
view->drawn = false;
}
// #######################################################################
// Is called, when "Align right" action is activated.
void QucsApp::slotAlignRight()
{
2004-07-28 18:57:52 +00:00
if(!view->Docs.current()->aligning(3))
QMessageBox::information(this, tr("Info"),
tr("At least two elements must be selected !"));
view->viewport()->repaint();
view->drawn = false;
}
// #######################################################################
// Is called, when "Distribute horizontally" action is activated.
void QucsApp::slotDistribHoriz()
{
view->Docs.current()->distribHoriz();
view->viewport()->repaint();
view->drawn = false;
}
// #######################################################################
// Is called, when "Distribute vertically" action is activated.
void QucsApp::slotDistribVert()
{
view->Docs.current()->distribVert();
2004-07-25 16:58:44 +00:00
view->viewport()->repaint();
view->drawn = false;
}