qucs_s/qucs/qucs.cpp

1980 lines
63 KiB
C++
Raw Normal View History

2003-12-07 15:21:31 +00:00
/***************************************************************************
2005-09-12 12:01:40 +00:00
qucs.cpp
----------
2003-12-07 15:21:31 +00:00
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
#include <limits.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-05-25 19:10:00 +00:00
#include <qfont.h>
2004-11-21 17:47:19 +00:00
#include <qtextedit.h>
#include <qcheckbox.h>
2003-12-07 15:21:31 +00:00
#include "main.h"
#include "qucs.h"
#include "qucsview.h"
#include "wire.h"
#include "components/components.h"
#include "paintings/paintings.h"
#include "diagrams/diagrams.h"
#include "dialogs/messagebox.h"
#include "dialogs/newprojdialog.h"
#include "dialogs/settingsdialog.h"
#include "dialogs/qucssettingsdialog.h"
#include "dialogs/simmessage.h"
2005-08-15 06:04:52 +00:00
#include "dialogs/sweepdialog.h"
2003-12-07 15:21:31 +00:00
#define COMBO_passive 0
#define COMBO_Sources 1
#define COMBO_TLines 2
#define COMBO_nonlinear 3
2005-10-04 06:18:18 +00:00
#define COMBO_digital 4
#define COMBO_File 5
#define COMBO_Sims 6
#define COMBO_Diagrams 7
// must be the last one
#define COMBO_Paints 8
2003-12-07 15:21:31 +00:00
2005-09-12 12:01:40 +00:00
QDir QucsWorkDir; // current project path
QDir QucsHomeDir; // Qucs user directory where all projects are located
// IconView without dragging icon bitmap
class myIconView : public QIconView
{
public:
myIconView(QWidget* parent_) : QIconView(parent_, 0, 0) {};
~myIconView() {};
protected:
QDragObject *dragObject() {
QIconViewItem *Item = currentItem();
if(!Item) return 0;
// no picture during dragging, but bounding rectangles in QListView
QIconDrag *DragPic = new QIconDrag( viewport() );
DragPic->setPixmap( QPixmap(empty_xpm), QPoint(0, 0) );
DragPic->append( QIconDragItem(),
QRect( Item->pixmapRect().width() / -2,
Item->pixmapRect().height() / -2,
Item->pixmapRect().width(), Item->pixmapRect().height() ),
QRect( Item->textRect().width() / -2,
Item->pixmapRect().height() / 2 + 5,
Item->textRect().width(), Item->textRect().height() ) );
return DragPic;
};
};
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);;"+
tr("Data Display")+" (*.dpl);;"+
tr("Qucs Documents")+" (*.sch *.dpl);;"+
tr("Any File")+" (*)";
QucsWorkDir.setPath(QDir::homeDirPath()+QDir::convertSeparators ("/.qucs"));
QucsHomeDir.setPath(QDir::homeDirPath()+QDir::convertSeparators ("/.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
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
2005-01-16 14:21:24 +00:00
2003-12-07 15:21:31 +00:00
// default settings of the printer
2004-10-16 20:57:38 +00:00
Printer = new QPrinter(QPrinter::PrinterResolution);
Printer->setOrientation(QPrinter::Landscape);
Printer->setColorMode(QPrinter::Color);
2004-02-21 18:38:50 +00:00
2004-09-25 12:10:08 +00:00
Acts.select->setOn(true); // switch on the 'select' action
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, ""));
2004-10-31 17:55:57 +00:00
// load documents given as command line arguments
for(int z=1; z<qApp->argc(); z++)
if(*(qApp->argv()[z]) != '-')
gotoPage(qApp->argv()[z]);
2003-12-07 15:21:31 +00:00
}
QucsApp::~QucsApp()
{
2005-05-17 06:35:55 +00:00
delete Printer;
2003-12-07 15:21:31 +00:00
}
// #########################################################################
// ########## ##########
// ########## Creates the view area (QTabWidget etc.) ##########
// ########## ##########
// #########################################################################
void QucsApp::initView()
{
// set application icon
setIcon (QPixmap(QucsSettings.BitmapDir + "big.qucs.xpm"));
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);
2005-11-28 07:17:35 +00:00
ConOthers = new QListViewItem(Content, tr("Others"));
2003-12-07 15:21:31 +00:00
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
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);
2005-09-12 12:01:40 +00:00
CompComps = new myIconView(CompGroup);
2003-12-07 15:21:31 +00:00
TabView->addTab(CompGroup,tr("Components"));
2003-12-26 16:31:25 +00:00
TabView->setTabToolTip(TabView->page(2), tr("components and diagrams"));
2004-09-11 16:55:12 +00:00
fillComboBox(true);
2003-12-07 15:21:31 +00:00
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-09-11 16:55:12 +00:00
// ----------------------------------------------------------
void QucsApp::fillComboBox(bool setAll)
{
CompChoose->clear();
if(setAll) {
CompChoose->insertItem(tr("lumped components"));
CompChoose->insertItem(tr("sources"));
CompChoose->insertItem(tr("transmission lines"));
CompChoose->insertItem(tr("nonlinear components"));
2005-10-04 06:18:18 +00:00
CompChoose->insertItem(tr("digital components"));
2005-08-22 06:02:22 +00:00
CompChoose->insertItem(tr("file components"));
2004-09-11 16:55:12 +00:00
CompChoose->insertItem(tr("simulations"));
CompChoose->insertItem(tr("diagrams"));
}
CompChoose->insertItem(tr("paintings"));
}
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);
2005-01-16 14:21:24 +00:00
ContentMenu->insertItem(tr("Open"), this, SLOT(slotCMenuOpen()));
2004-02-21 18:38:50 +00:00
ContentMenu->insertItem(tr("Rename"), this, SLOT(slotCMenuRename()));
ContentMenu->insertItem(tr("Delete"), this, SLOT(slotCMenuDelete()));
2005-01-16 14:21:24 +00:00
ContentMenu->insertItem(tr("Delete Group"), this, SLOT(slotCMenuDelGroup()));
2004-02-21 18:38:50 +00:00
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
}
// ----------------------------------------------------------
2005-11-28 07:17:35 +00:00
// Is called if right mouse button is pressed on a file in the "Content"
// ListView. It shows a menu.
2004-02-21 18:38:50 +00:00
void QucsApp::slotShowContentMenu(QListViewItem *item, const QPoint& point, int)
{
if(item)
2005-11-28 07:17:35 +00:00
if(item->parent() != 0) { // no component, but item "schematic", ...
if(item->parent()->nextSibling()) // "Others" section in listview ?
ContentMenu->setItemEnabled(ContentMenu->idAt(3), true);
else
ContentMenu->setItemEnabled(ContentMenu->idAt(3), false);
2004-02-21 18:38:50 +00:00
ContentMenu->popup(point);
2005-11-28 07:17:35 +00:00
}
2004-02-21 18:38:50 +00:00
}
// ----------------------------------------------------------
// 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);
}
// ----------------------------------------------------------
2004-09-25 12:10:08 +00:00
// for 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::slotCMenuDelete()
{
QListViewItem *item = Content->selectedItem();
if(item == 0) return;
2004-09-25 12:10:08 +00:00
QString FileName = QucsWorkDir.filePath(item->text(0));
2004-02-21 18:38:50 +00:00
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()) {
2004-09-25 12:10:08 +00:00
if(d->DocName == FileName) {
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;
}
}
2004-09-25 12:10:08 +00:00
view->Docs.findRef(dc); // back to the real current document
2004-02-21 18:38:50 +00:00
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;
2004-09-25 12:10:08 +00:00
if(!QFile::remove(FileName)) {
2004-05-07 17:31:21 +00:00
QMessageBox::critical(this, tr("Error"),
tr("Cannot delete schematic: ")+item->text(0));
return;
}
2004-09-25 12:10:08 +00:00
// if(ConSchematics == item->parent())
// ConSchematics->takeItem(item);
// else if(ConDisplays == item->parent())
// ConDisplays->takeItem(item);
// else
// ConDatasets->takeItem(item);
item->parent()->takeItem(item);
delete item;
}
// ----------------------------------------------------------
// for menu that appears if right mouse button is pressed on a file in
// the "Content" ListView
// Deletes all files with that name (with suffix "sch", "dpl", "dat").
void QucsApp::slotCMenuDelGroup()
{
QListViewItem *item = Content->selectedItem();
if(item == 0) return;
QString s = item->text(0);
s = s.left(s.length()-4); // cut off suffix from file name
QString NameSCH = QucsWorkDir.filePath(s+".sch");
QString NameDPL = QucsWorkDir.filePath(s+".dpl");
QString NameDAT = QucsWorkDir.filePath(s+".dat");
QucsDoc *dc = view->Docs.current();
// search, if files are open
for(QucsDoc *d = view->Docs.first(); d!=0; d = view->Docs.next()) {
if(d->DocName == NameSCH) {
QMessageBox::critical(this, tr("Error"),
tr("Cannot delete the open file: ")+NameSCH);
view->Docs.findRef(dc);
return;
}
if(d->DocName == NameDPL) {
QMessageBox::critical(this, tr("Error"),
tr("Cannot delete the open file: ")+NameDPL);
view->Docs.findRef(dc);
return;
}
}
view->Docs.findRef(dc); // back to the real current document
bool SCH_exists = QFile::exists(NameSCH);
bool DPL_exists = QFile::exists(NameDPL);
bool DAT_exists = QFile::exists(NameDAT);
QString Str;
if(SCH_exists) Str += s+".sch\n";
if(DPL_exists) Str += s+".dpl\n";
if(DAT_exists) Str += s+".dat\n";
int n = QMessageBox::warning(this, tr("Warning"),
tr("This will delete the files\n")+Str+tr("permanently! Continue ?"),
2004-09-25 12:10:08 +00:00
tr("No"), tr("Yes"));
if(n != 1) return;
// remove files .................
if(SCH_exists)
if(!QFile::remove(NameSCH)) {
QMessageBox::critical(this, tr("Error"),
tr("Cannot delete schematic: ")+s+".sch");
return;
}
if(DPL_exists)
if(!QFile::remove(NameDPL)) {
QMessageBox::critical(this, tr("Error"),
tr("Cannot delete schematic: ")+s+".dpl");
return;
}
if(DAT_exists)
if(!QFile::remove(NameDAT)) {
QMessageBox::critical(this, tr("Error"),
tr("Cannot delete schematic: ")+s+".dat");
return;
}
// remove items from listview ........
if(SCH_exists) {
item = Content->findItem(s+".sch", 0);
if(item) {
item->parent()->takeItem(item);
delete item;
}
}
if(DPL_exists) {
item = Content->findItem(s+".dpl", 0);
if(item) {
item->parent()->takeItem(item);
delete item;
}
}
if(DAT_exists) {
item = Content->findItem(s+".dat", 0);
if(item) {
item->parent()->takeItem(item);
delete item;
}
}
2004-02-21 18:38:50 +00:00
}
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;
2005-02-26 09:01:53 +00:00
CloseMessageBox *m = new CloseMessageBox(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) {
2004-12-19 16:06:24 +00:00
case 1: if(!saveCurrentFile()) return false; // save button
break;
case 2: Result = 1; // save all button
notForAll = false;
if(!saveCurrentFile()) return false;
break;
case 4: Result = 3; // discard all button
notForAll = false;
break;
case 5: return false; // cancel button
2003-12-07 15:21:31 +00:00
}
}
view->Docs.remove();
ptr = view->Docs.current();
}
2004-04-04 15:56:10 +00:00
delete m;
2004-10-02 16:21:06 +00:00
switchEditMode(true); // set schematic edit mode
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
2005-08-15 06:04:52 +00:00
view->viewport()->update();
2004-06-22 16:49:55 +00:00
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)
{
2005-04-19 06:33:22 +00:00
view->editText->setHidden(true); // disable text edit of component property
2004-06-16 17:41:33 +00:00
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);
2004-10-15 07:07:57 +00:00
// which mode: schematic or symbol editor ?
2004-10-23 16:07:50 +00:00
if((CompChoose->count() > 1) == d->symbolMode)
2004-09-18 09:46:19 +00:00
changeSchematicSymbolMode(d);
2004-06-16 17:41:33 +00:00
view->Docs.current()->reloadGraphs(); // load recent simulation data
2005-08-15 06:04:52 +00:00
view->viewport()->update();
2004-06-16 17:41:33 +00:00
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-08-07 10:48:45 +00:00
if(!HierarchyHistory.isEmpty())
if(*(HierarchyHistory.getLast()) != "*") {
HierarchyHistory.clear(); // no subcircuit history anymore
popH->setEnabled(false);
}
2004-06-16 17:41:33 +00:00
}
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);
2005-08-15 06:04:52 +00:00
view->viewport()->update();
2004-05-20 17:27:41 +00:00
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
2005-10-24 06:10:35 +00:00
// make new document the current (calls "slotChangeView(int)" indirectly)
2004-05-07 17:31:21 +00:00
WorkView->setCurrentTab(WorkView->tabAt(cNo));
2005-02-12 12:59:26 +00:00
// must be done here, 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());
2005-02-12 12:59:26 +00:00
d->sizeOfAll(d->UsedX1, d->UsedY1, d->UsedX2, d->UsedY2);
2005-08-15 06:04:52 +00:00
view->viewport()->update();
2003-12-07 15:21:31 +00:00
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;
2005-10-24 06:10:35 +00:00
// make new document the current (calls "slotChangeView(int)" indirectly)
2004-06-22 16:49:55 +00:00
WorkView->setCurrentTab(WorkView->tabAt(No));
2005-08-15 06:04:52 +00:00
view->viewport()->update();
2004-06-22 16:49:55 +00:00
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()
{
2005-04-19 06:33:22 +00:00
view->editText->setHidden(true); // disable text edit of component property
2003-12-07 15:21:31 +00:00
SettingsDialog *d = new SettingsDialog(view->Docs.current(), this);
d->exec();
2005-08-15 06:04:52 +00:00
view->viewport()->update();
2003-12-07 15:21:31 +00:00
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
{
2005-04-19 06:33:22 +00:00
view->editText->setHidden(true); // disable text edit of component property
2004-05-25 19:10:00 +00:00
QucsSettingsDialog *d = new QucsSettingsDialog(this);
d->exec();
2005-08-15 06:04:52 +00:00
view->viewport()->update();
2004-05-25 19:10:00 +00:00
view->drawn = false;
}
2003-12-07 15:21:31 +00:00
// --------------------------------------------------------------
void QucsApp::slotFileNew()
{
statusBar()->message(tr("Creating new schematic..."));
2005-04-19 06:33:22 +00:00
view->editText->setHidden(true); // disable text edit of component property
2003-12-07 15:21:31 +00:00
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()
{
2005-04-04 17:26:45 +00:00
static QString lastDir; // to remember last directory and file
2005-04-19 06:33:22 +00:00
view->editText->setHidden(true); // disable text edit of component property
2005-04-04 17:26:45 +00:00
2003-12-07 15:21:31 +00:00
statusBar()->message(tr("Opening file..."));
2005-04-04 17:26:45 +00:00
QString s = QFileDialog::getOpenFileName(
2005-04-13 07:26:29 +00:00
lastDir.isEmpty() ? QString(".") : lastDir,
2005-11-28 07:17:35 +00:00
QucsFileFilter, this, 0, tr("Enter a Schematic Name"));
2003-12-07 15:21:31 +00:00
2005-04-04 17:26:45 +00:00
if(s.isEmpty())
statusBar()->message(tr("Opening aborted"), 2000);
else {
gotoPage(s);
lastDir = s; // remember last directory and file
statusBar()->message(tr("Ready."));
}
2003-12-07 15:21:31 +00:00
}
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;
2004-08-07 10:48:45 +00:00
QString pathName = view->Docs.current()->DocName;
QFileInfo Info(pathName);
2005-10-24 06:10:35 +00:00
QString File, Name = Info.fileName();
2004-05-07 17:31:21 +00:00
2004-08-07 10:48:45 +00:00
// enter new port number into ListView
QListViewItem *p;
for(p = ConSchematics->firstChild(); p!=0; p = p->nextSibling()) {
2003-12-07 15:21:31 +00:00
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-08-07 10:48:45 +00:00
}
if(No == 0) return;
// update all occurencies of subcircuit in all open documents
QucsDoc *d;
int DocNo = view->Docs.at();
for(d = view->Docs.first(); d!=0; d = view->Docs.next())
2004-09-11 16:55:12 +00:00
for(Component *pc=d->Comps->first(); pc!=0; pc=d->Comps->next())
2004-08-07 10:48:45 +00:00
if(pc->Model == "Sub") {
File = pc->Props.getFirst()->Value;
2005-10-24 06:10:35 +00:00
if((File == pathName) || (File == Name))
d->recreateComponent(pc);
2004-08-07 10:48:45 +00:00
}
view->Docs.at(DocNo); // back to the last current document
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::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();
2004-08-07 10:48:45 +00:00
2004-12-19 16:06:24 +00:00
int Result = view->Docs.current()->save(); // SAVE
if(Result < 0) return false;
updatePortNumber(Result);
2003-12-07 15:21:31 +00:00
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
2005-04-19 06:33:22 +00:00
view->editText->setHidden(true); // disable text edit of component property
2003-12-07 15:21:31 +00:00
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
{
2005-04-04 17:26:45 +00:00
static QString lastDir; // to remember last directory and file
2004-05-07 17:31:21 +00:00
int n = -1;
bool intoView = true;
2004-08-14 06:40:55 +00:00
QString s, Filter;
2004-05-07 17:31:21 +00:00
QFileInfo Info;
while(true) {
intoView = true;
2005-04-04 17:26:45 +00:00
s = view->Docs.current()->DocName;
Info.setFile(s);
if(s.isEmpty()) { // which is default directory ?
if(ProjName.isEmpty()) {
if(lastDir.isEmpty()) s = QDir::currentDirPath();
else s = lastDir;
}
else s = QucsWorkDir.path();
}
s = QFileDialog::getSaveFileName(s,
Info.extension() == "dpl" ? tr("Data Display")+" (*.dpl)"
: QucsFileFilter,
this, "", tr("Enter a Document Name"), &Filter);
2004-05-07 17:31:21 +00:00
if(s.isEmpty()) return false;
Info.setFile(s); // try to guess the best extension ...
2004-08-14 06:40:55 +00:00
if(Info.extension(false).isEmpty()) // ... if no one was specified
if(Filter.right(7) == "(*.dpl)") s += ".dpl";
2004-05-07 17:31:21 +00:00
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);
2005-04-04 17:26:45 +00:00
lastDir = Info.dirPath(true); // remember last directory and file
2003-12-07 15:21:31 +00:00
2004-05-07 17:31:21 +00:00
if(intoView) { // insert new name in Content ListView ?
2005-04-04 17:26:45 +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();
2004-12-19 16:06:24 +00:00
n = view->Docs.current()->save(); // SAVE
if(n < 0) return false;
updatePortNumber(n);
2004-05-07 17:31:21 +00:00
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
2005-04-19 06:33:22 +00:00
view->editText->setHidden(true); // disable text edit of component property
2004-05-07 17:31:21 +00:00
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..."));
2005-04-19 06:33:22 +00:00
view->editText->setHidden(true); // disable text edit of component property
2003-12-07 15:21:31 +00:00
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..."));
2005-04-19 06:33:22 +00:00
view->editText->setHidden(true); // disable text edit of component property
2003-12-07 15:21:31 +00:00
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
2004-09-25 12:10:08 +00:00
QucsDoc *d = view->Docs.current();
2004-10-15 07:07:57 +00:00
// which mode: schematic or symbol editor ?
2004-10-23 16:07:50 +00:00
if((CompChoose->count() > 1) == d->symbolMode)
2004-09-25 12:10:08 +00:00
changeSchematicSymbolMode(d);
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..."));
2005-04-19 06:33:22 +00:00
view->editText->setHidden(true); // disable text edit of component property
2004-05-07 17:31:21 +00:00
2004-10-16 20:57:38 +00:00
if (Printer->setup(this)) // print dialog
2003-12-07 15:21:31 +00:00
{
QPainter painter;
2004-10-16 20:57:38 +00:00
painter.begin(Printer);
view->Docs.current()->print(&painter, true);
2003-12-07 15:21:31 +00:00
painter.end();
};
statusBar()->message(tr("Ready."));
}
2004-08-25 19:46:13 +00:00
// ######################################################################
void QucsApp::slotFilePrintSelected()
{
statusBar()->message(tr("Printing..."));
2005-04-19 06:33:22 +00:00
view->editText->setHidden(true); // disable text edit of component property
2004-08-25 19:46:13 +00:00
2004-10-16 20:57:38 +00:00
if (Printer->setup(this)) // print dialog
2004-08-25 19:46:13 +00:00
{
QPainter painter;
2004-10-16 20:57:38 +00:00
painter.begin(Printer);
view->Docs.current()->print(&painter, false);
2004-08-25 19:46:13 +00:00
painter.end();
};
statusBar()->message(tr("Ready."));
}
2003-12-07 15:21:31 +00:00
// --------------------------------------------------------------------
// Exits the application.
void QucsApp::slotFileQuit()
{
statusBar()->message(tr("Exiting application..."));
2005-04-19 06:33:22 +00:00
view->editText->setHidden(true); // disable text edit of component property
2003-12-07 15:21:31 +00:00
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-10-31 17:55:57 +00:00
if(closeAllFiles()) {
2004-12-27 18:37:29 +00:00
emit signalKillEmAll(); // kill all subprocesses
2004-10-31 17:55:57 +00:00
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-10-31 17:55:57 +00:00
if(closeAllFiles()) {
2004-12-27 18:37:29 +00:00
emit signalKillEmAll(); // kill all subprocesses
2004-10-31 17:55:57 +00:00
qApp->quit();
}
2003-12-07 15:21:31 +00:00
}
// --------------------------------------------------------------------
void QucsApp::slotEditCut()
{
statusBar()->message(tr("Cutting selection..."));
2005-04-19 06:33:22 +00:00
view->editText->setHidden(true); // disable text edit of component property
2003-12-07 15:21:31 +00:00
QClipboard *cb = QApplication::clipboard(); // get system clipboard
QString s = view->Docs.current()->copySelected(true);
if(!s.isEmpty()) {
cb->setText(s, QClipboard::Clipboard);
2005-08-15 06:04:52 +00:00
view->viewport()->update();
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::slotEditCopy()
{
statusBar()->message(tr("Copying selection to clipboard..."));
2005-04-19 06:33:22 +00:00
view->editText->setHidden(true); // disable text edit of component property
2003-12-07 15:21:31 +00:00
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
// ########################################################################
2003-12-07 15:21:31 +00:00
// Is called when the toolbar button is pressed to go into a subcircuit.
void QucsApp::slotIntoHierarchy()
{
2005-04-19 06:33:22 +00:00
view->editText->setHidden(true); // disable text edit of component property
2003-12-07 15:21:31 +00:00
QucsDoc *Doc = view->Docs.current();
Component *pc = view->Docs.current()->searchSelSubcircuit();
if(pc == 0) return;
2004-08-07 10:48:45 +00:00
QString *ps = new QString("*");
HierarchyHistory.append(ps); // sign to not clear HierarchyHistory
QString s = QucsWorkDir.filePath(pc->Props.getFirst()->Value);
2003-12-07 15:21:31 +00:00
if(!gotoPage(s)) return;
2004-08-07 10:48:45 +00:00
*(HierarchyHistory.getLast()) = Doc->DocName; // remember for the way back
2003-12-07 15:21:31 +00:00
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()
{
2005-04-19 06:33:22 +00:00
view->editText->setHidden(true); // disable text edit of component property
2003-12-07 15:21:31 +00:00
if(HierarchyHistory.count() == 0) return;
2004-08-07 10:48:45 +00:00
QString Doc = *(HierarchyHistory.getLast());
*(HierarchyHistory.last()) = "*"; // sign to not clear HierarchyHistory
if(!gotoPage(Doc)) 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()
{
2005-04-19 06:33:22 +00:00
view->editText->setHidden(true); // disable text edit of component property
2005-06-23 06:06:40 +00:00
QucsDoc *d = view->Docs.current();
int x1 = d->UsedX1;
int y1 = d->UsedY1;
int x2 = d->UsedX2;
int y2 = d->UsedY2;
2004-03-28 19:51:04 +00:00
2005-11-07 07:04:50 +00:00
if(x1 == INT_MAX) return;
if(y1 == INT_MAX) return;
if(x2 == INT_MIN) return;
if(y2 == INT_MIN) return;
2003-12-07 15:21:31 +00:00
x1 -= 40; y1 -= 40;
x2 += 40; y2 += 40;
2004-03-28 19:51:04 +00:00
2004-10-31 17:55:57 +00:00
float xScale = float(view->visibleWidth()) / float(x2-x1);
float yScale = float(view->visibleHeight()) / float(y2-y1);
2003-12-07 15:21:31 +00:00
if(xScale > yScale) xScale = yScale;
2005-06-23 06:06:40 +00:00
xScale /= d->Scale;
2003-12-07 15:21:31 +00:00
2005-06-23 06:06:40 +00:00
d->ViewX1 = x1;
d->ViewY1 = y1;
d->ViewX2 = x2;
d->ViewY2 = y2;
view->Zoom(xScale);
2003-12-07 15:21:31 +00:00
2005-08-15 06:04:52 +00:00
view->viewport()->update();
2003-12-07 15:21:31 +00:00
view->drawn = false;
}
// -----------------------------------------------------------
// Sets the scale factor to 1.
void QucsApp::slotShowOne()
{
2005-04-19 06:33:22 +00:00
view->editText->setHidden(true); // disable text edit of component property
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);
2005-08-15 06:04:52 +00:00
view->viewport()->update();
2003-12-07 15:21:31 +00:00
view->drawn = false;
}
void QucsApp::slotZoomOut()
{
2005-04-19 06:33:22 +00:00
view->editText->setHidden(true); // disable text edit of component property
2003-12-07 15:21:31 +00:00
view->Zoom(0.5);
2005-08-15 06:04:52 +00:00
view->viewport()->update();
2003-12-07 15:21:31 +00:00
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()
{
2005-04-19 06:33:22 +00:00
view->editText->setHidden(true); // disable text edit of component property
2003-12-07 15:21:31 +00:00
2005-08-15 06:04:52 +00:00
QucsDoc *d = view->Docs.current();
if(d->DocName.isEmpty()) // if document 'untitled' ...
if(!saveCurrentFile()) return; // ... save schematic before
2005-07-04 06:07:17 +00:00
2005-08-15 06:04:52 +00:00
Init.slotResetWarnings();
2005-05-17 06:35:55 +00:00
SimMessage *sim = new SimMessage(view->Docs.current(), 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,
2004-08-14 06:40:55 +00:00
SLOT(slotAfterSimulation(int, SimMessage*)));
connect(sim, SIGNAL(displayDataPage(QString)),
this, SLOT(slotChangePage(QString)));
2004-03-28 19:51:04 +00:00
sim->show();
2005-05-17 06:35:55 +00:00
if(!sim->startProcess()) return;
2004-12-27 18:37:29 +00:00
// to kill it before qucs ends
2005-05-17 06:35:55 +00:00
connect(this, SIGNAL(signalKillEmAll()), sim, SLOT(slotClose()));
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 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
{
2005-08-15 06:04:52 +00:00
if(Status != 0) return; // errors ocurred ?
2003-12-07 15:21:31 +00:00
2005-08-15 06:04:52 +00:00
if(sim->ErrText->lines() > 1) // were there warnings ?
Init.slotShowWarnings();
2005-06-23 06:06:40 +00:00
2005-10-31 06:52:45 +00:00
int Index = view->Docs.containsRef(sim->Doc);
if(sim->showBias == 0) { // paint dc bias into schematic ?
2005-08-15 06:04:52 +00:00
sim->slotClose(); // close and delete simulation window
2005-10-31 06:52:45 +00:00
if(Index > 0) { // schematic still open ?
SweepDialog *Dia = new SweepDialog(sim->Doc);
Dia->show();
}
2005-08-15 06:04:52 +00:00
}
2005-10-31 06:52:45 +00:00
else if(sim->SimOpenDpl) {
2005-09-12 12:01:40 +00:00
// switch to data display
2005-10-31 06:52:45 +00:00
slotChangePage(sim->DataDisplay);
2005-08-15 06:04:52 +00:00
sim->slotClose(); // close and delete simulation window
}
2005-10-31 06:52:45 +00:00
else if(Index > 0)
sim->Doc->reloadGraphs(); // load recent simulation data (if doc still open)
2003-12-07 15:21:31 +00:00
2005-08-15 06:04:52 +00:00
view->viewport()->update();
2005-06-23 06:06:40 +00:00
2005-08-15 06:04:52 +00:00
// 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());*/
}
// ------------------------------------------------------------------------
void QucsApp::slotDCbias()
{
view->Docs.current()->showBias = 0;
slotSimulate();
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.
2004-08-14 06:40:55 +00:00
void QucsApp::slotChangePage(QString Name)
2003-12-07 15:21:31 +00:00
{
2004-08-14 06:40:55 +00:00
if(Name.isEmpty()) return;
2004-06-26 07:05:47 +00:00
2004-08-14 06:40:55 +00:00
QucsDoc *d;
2003-12-07 15:21:31 +00:00
QFileInfo Info;
2004-08-14 06:40:55 +00:00
QucsDoc *Doc = view->Docs.current();
2004-02-21 18:38:50 +00:00
2004-04-24 11:52:43 +00:00
// search, if page is already loaded
2005-09-12 12:01:40 +00:00
for(d = view->Docs.first(); d!=0; d = view->Docs.next())
if(d->DocName == Name) break;
2003-12-07 15:21:31 +00:00
if(d == 0) { // no open page found ?
2004-08-14 06:40:55 +00:00
Info.setFile(Name);
if(Info.isRelative())
Name = QucsWorkDir.filePath(Name);
QFile file(Name);
2003-12-07 15:21:31 +00:00
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)+
2005-09-12 12:01:40 +00:00
QDir::separator()+Name);
2003-12-07 15:21:31 +00:00
return;
}
2004-08-14 06:40:55 +00:00
else new QListViewItem(ConDisplays, Info.fileName()); // add new name
2003-12-07 15:21:31 +00:00
file.close();
2004-08-14 06:40:55 +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()) {
view->Docs.remove();
view->Docs.findRef(Doc);
2005-08-15 06:04:52 +00:00
view->viewport()->update();
2004-08-20 20:13:01 +00:00
view->drawn = false;
2003-12-07 15:21:31 +00:00
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-12-30 12:03:08 +00:00
if(WorkView->indexOf(WorkView->currentTab()) == cNo) // if page not ...
view->Docs.current()->reloadGraphs(); // ... changes, reload here !
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
2005-02-12 12:59:26 +00:00
d->sizeOfAll(d->UsedX1, d->UsedY1, d->UsedX2, d->UsedY2);
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-08-14 06:40:55 +00:00
// ------------------------------------------------------------------------
// Changes to the data display of current page.
void QucsApp::slotToPage()
{
QString Name = view->Docs.current()->DataDisplay;
if(Name.isEmpty()) {
QMessageBox::critical(this, tr("Error"), tr("No page set !"));
return;
}
2005-09-12 12:01:40 +00:00
QFileInfo Info(view->Docs.current()->DocName);
slotChangePage(Info.dirPath() + QDir::separator() + Name);
2004-08-14 06:40:55 +00:00
}
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)
{
2005-04-19 06:33:22 +00:00
view->editText->setHidden(true); // disable text edit of component property
2003-12-07 15:21:31 +00:00
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
2005-11-28 07:17:35 +00:00
/*
QucsWorkDir.setPath(QucsHomeDir.path());
QString p = ProjName+"_prj";
if(!QucsWorkDir.cd(p)) {
QMessageBox::critical(this, tr("Error"),
2005-11-28 07:17:35 +00:00
tr("Cannot access project directory: ")+
2005-09-12 12:01:40 +00:00
QucsWorkDir.path()+QDir::separator()+p);
return;
2005-11-28 07:17:35 +00:00
}*/
2004-10-31 17:55:57 +00:00
QFileInfo Info(QucsWorkDir.filePath(item->text(0)));
2005-11-28 07:17:35 +00:00
QString Suffix = Info.extension(false);
if((Suffix == "sch") || (Suffix == "dpl")) {
gotoPage(Info.absFilePath());
if(item->text(1).isEmpty()) return; // is subcircuit ?
// switch on the 'select' action
Acts.select->blockSignals(true);
Acts.select->setOn(true);
Acts.select->blockSignals(false);
Acts.slotSelect(true);
return;
}
if(Suffix == "dat") {
2005-04-19 06:33:22 +00:00
Acts.editFile(Info.absFilePath()); // open datasets with text editor
2004-10-31 17:55:57 +00:00
return;
}
2005-11-28 07:17:35 +00:00
// File is no Qucs file, so go through list and search a program
// to open it.
QStringList com;
QStringList::Iterator it = QucsSettings.FileTypes.begin();
while(it != QucsSettings.FileTypes.end()) {
if(Suffix == (*it).section('/',0,0)) {
2005-12-05 07:04:57 +00:00
com = QStringList::split(" ", (*it).section('/',1,1));
com << Info.absFilePath();
2005-11-28 07:17:35 +00:00
QProcess *Program = new QProcess(com);
Program->setCommunication(0);
if(!Program->start()) {
QMessageBox::critical(this, tr("Error"),
2005-12-05 07:04:57 +00:00
tr("Cannot start \"%1\"!").arg(Info.absFilePath()));
2005-11-28 07:17:35 +00:00
delete Program;
}
return;
}
it++;
}
// If no appropriate program was found, open as text file.
Acts.editFile(Info.absFilePath()); // open datasets with text editor
2003-12-07 15:21:31 +00:00
}
2004-08-25 19:46:13 +00:00
// ########################################################################
// Is called when the close project menu is called.
void QucsApp::slotMenuCloseProject()
{
2005-04-19 06:33:22 +00:00
view->editText->setHidden(true); // disable text edit of component property
2004-08-25 19:46:13 +00:00
if(!closeAllFiles()) return; // close files and ask for saving them
2004-10-02 16:21:06 +00:00
QucsDoc *d = new QucsDoc(this, "");
view->Docs.append(d); // create 'untitled' file
view->resizeContents(int(d->Scale*double(d->ViewX2-d->ViewX1)),
int(d->Scale*double(d->ViewY2-d->ViewY1)));
view->setContentsPos(d->PosX, d->PosY);
2005-08-15 06:04:52 +00:00
view->viewport()->update();
2004-08-25 19:46:13 +00:00
view->drawn = false;
2005-11-28 07:17:35 +00:00
Init.slotResetWarnings();
2004-08-25 19:46:13 +00:00
setCaption("Qucs " PACKAGE_VERSION + tr(" - Project: "));
QucsWorkDir.setPath(QDir::homeDirPath()+QDir::convertSeparators ("/.qucs"));
2004-08-25 19:46:13 +00:00
Content->setColumnText(0,tr("Content of")); // column text
Content->clear(); // empty content view
2005-11-28 07:17:35 +00:00
ConOthers = new QListViewItem(Content, tr("Others"));
2004-08-25 19:46:13 +00:00
ConDatasets = new QListViewItem(Content, tr("Datasets"));
ConDisplays = new QListViewItem(Content, tr("Data Displays"));
ConSchematics = new QListViewItem(Content, tr("Schematics"));
TabView->setCurrentPage(0); // switch to "Projects"-Tab
ProjName = "";
}
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;
2004-08-25 19:46:13 +00:00
2003-12-07 15:21:31 +00:00
QString s = d->selectedFile();
if(s.isEmpty()) return;
2004-08-25 19:46:13 +00:00
2003-12-07 15:21:31 +00:00
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
// #######################################################################
2005-11-28 07:17:35 +00:00
// Is called when project is double-clicked.
2003-12-07 15:21:31 +00:00
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
}
2005-11-28 07:17:35 +00:00
// #######################################################################
// Reads all files in the project directory and sort them into the
// content ListView
void QucsApp::readProjectFiles()
{
Content->clear(); // empty content view
ConOthers = new QListViewItem(Content, tr("Others"));
ConDatasets = new QListViewItem(Content, tr("Datasets"));
ConDisplays = new QListViewItem(Content, tr("Data Displays"));
ConSchematics = new QListViewItem(Content, tr("Schematics"));
int n;
// put all files into "Content"-ListView
QStringList Elements = QucsWorkDir.entryList("*", QDir::Files, QDir::Name);
QStringList::iterator it;
QString Str;
for(it = Elements.begin(); it != Elements.end(); ++it) {
Str = (*it).right(4);
if(Str == ".sch") {
n = testFile(QucsWorkDir.filePath((*it).ascii()));
if(n >= 0) {
if(n > 0)
new QListViewItem(ConSchematics, (*it).ascii(),
QString::number(n)+tr("-port"));
else new QListViewItem(ConSchematics, (*it).ascii());
}
}
else if(Str == ".dpl")
new QListViewItem(ConDisplays, (*it).ascii());
else if(Str == ".dat")
new QListViewItem(ConDatasets, (*it).ascii());
else
new QListViewItem(ConOthers, (*it).ascii());
}
}
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)
{
2005-04-19 06:33:22 +00:00
view->editText->setHidden(true); // disable text edit of component property
2003-12-07 15:21:31 +00:00
if(!closeAllFiles()) return; // close files and ask for saving them
2004-10-02 16:21:06 +00:00
QucsDoc *d = new QucsDoc(this, "");
view->Docs.append(d); // create 'untitled' file
view->resizeContents(int(d->Scale*double(d->ViewX2-d->ViewX1)),
int(d->Scale*double(d->ViewY2-d->ViewY1)));
view->setContentsPos(d->PosX, d->PosY);
2005-08-15 06:04:52 +00:00
view->viewport()->update();
2003-12-07 15:21:31 +00:00
view->drawn = false;
2005-11-28 07:17:35 +00:00
Init.slotResetWarnings();
QDir ProjDir(QDir::cleanDirPath(Path));
2004-07-18 18:48:51 +00:00
if(!ProjDir.exists() || !ProjDir.isReadable()) { // check project directory
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);
2005-11-28 07:17:35 +00:00
readProjectFiles();
2003-12-07 15:21:31 +00:00
TabView->setCurrentPage(1); // switch to "Content"-Tab
Content->firstChild()->setOpen(true); // show schematics
ProjName = Name; // remember the name of project
2004-08-07 10:48:45 +00:00
// show name in title of main window
setCaption("Qucs " PACKAGE_VERSION + tr(" - Project: ")+Name);
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()
{
2005-04-19 06:33:22 +00:00
view->editText->setHidden(true); // disable text edit of component property
2003-12-07 15:21:31 +00:00
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
}
2005-06-23 06:06:40 +00:00
// #######################################################################
// Is called, when "Open Project"-Button is pressed.
void QucsApp::slotProjOpenButt()
{
view->editText->setHidden(true); // disable text edit of component property
QListBoxItem *item = Projects->selectedItem();
if(item) slotOpenProject(item);
else QMessageBox::information(this, tr("Info"),
tr("No project is selected !"));
}
// #######################################################################
bool QucsApp::DeleteProject(const QString& Path, const QString& Name)
{
view->editText->setHidden(true); // disable text edit of component property
if(Name == ProjName) {
QMessageBox::information(this, tr("Info"),
tr("Cannot delete an open project !"));
return false;
}
// first ask, if really delete project ?
if(QMessageBox::warning(this, tr("Warning"),
tr("This will destroy all the project files permanently ! Continue ?"),
tr("&Yes"), tr("&No"), 0,1,1)) return false;
QDir projDir = QDir(Path);
QStringList ProjFiles = projDir.entryList("*", QDir::Files); // all files
// removes every file, remove("*") does not work
QStringList::iterator it;
for(it = ProjFiles.begin(); it != ProjFiles.end(); it++) {
if(!projDir.remove(*it)) {
QMessageBox::information(this, tr("Info"),
tr("Cannot remove project file: ")+(*it));
return false;
}
}
projDir.cdUp(); // leave project directory for deleting
if(!projDir.rmdir(Name+"_prj")) {
QMessageBox::information(this, tr("Info"),
tr("Cannot remove project directory !"));
return false;
}
return true;
}
// ########################################################################
// Is called, when "Delete Project"-menu is pressed.
void QucsApp::slotMenuDelProject()
{
QFileDialog *d = new QFileDialog(QucsHomeDir.path());
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
}
// #######################################################################
// Is called, when "Delete Project"-Button is pressed.
void QucsApp::slotProjDelButt()
{
QListBoxItem *item = Projects->selectedItem();
if(!item) {
QMessageBox::information(this, tr("Info"),
tr("No project is selected !"));
return;
}
if(!DeleteProject(QucsHomeDir.filePath(item->text()+"_prj"),
item->text())) return;
Projects->removeItem(Projects->currentItem()); // remove from project list
}
2004-06-06 14:13:59 +00:00
// ######################################################################
// The following arrays contains the components that appear in the
// component listview.
2005-06-23 06:06:40 +00:00
//typedef Component* (*pInfoFunc) (QString&, char* &, bool);
typedef Element* (*pInfoFunc) (QString&, char* &, bool);
2004-11-21 17:47:19 +00:00
pInfoFunc Simulations[] =
2004-06-06 14:13:59 +00:00
{&DC_Sim::info, &TR_Sim::info, &AC_Sim::info, &SP_Sim::info,
2005-10-04 06:18:18 +00:00
&HB_Sim::info, &Param_Sweep::info, &Digi_Sim::info, 0};
2004-06-06 14:13:59 +00:00
2004-11-21 17:47:19 +00:00
pInfoFunc lumpedComponents[] =
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,
2004-11-21 17:47:19 +00:00
&Amplifier::info, &Isolator::info, &Circulator::info,
2005-08-22 06:02:22 +00:00
&Gyrator::info, &Phaseshifter::info, &iProbe::info, &Mutual::info,
&Mutual2::info, 0};
2004-06-06 14:13:59 +00:00
2004-11-21 17:47:19 +00:00
pInfoFunc Sources[] =
2004-06-06 14:13:59 +00:00
{&Volt_dc::info, &Ampere_dc::info, &Volt_ac::info, &Ampere_ac::info,
&Source_ac::info, &Volt_noise::info, &Ampere_noise::info, &VCCS::info,
2004-10-02 16:21:06 +00:00
&CCCS::info, &VCVS::info, &CCVS::info, &vPulse::info, &iPulse::info,
2005-08-22 06:02:22 +00:00
&vRect::info, &iRect::info, &Noise_ii::info, &Noise_vv::info,
&Noise_iv::info, 0};
2004-06-06 14:13:59 +00:00
2004-11-21 17:47:19 +00:00
pInfoFunc TransmissionLines[] =
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-10-31 17:55:57 +00:00
&MScross::info, &MSopen::info, &MSgap::info, &MSvia::info,
2005-05-17 06:35:55 +00:00
&Coplanar::info, &CPWopen::info, &CPWshort::info, &CPWgap::info,
&CPWstep::info, 0};
2004-06-06 14:13:59 +00:00
2004-08-08 17:52:32 +00:00
pInfoFunc nonlinearComps[] =
2004-07-17 17:19:00 +00:00
{&Diode::info, &BJT::info, &BJT::info_pnp, &BJTsub::info,
&BJTsub::info_pnp, &JFET::info, &JFET::info_p,
2004-08-08 17:52:32 +00:00
&MOSFET::info, &MOSFET::info_p, &MOSFET::info_depl,
2004-11-21 17:47:19 +00:00
&MOSFET_sub::info, &MOSFET_sub::info_p, &MOSFET_sub::info_depl,
&OpAmp::info, 0};
2004-06-06 14:13:59 +00:00
2005-10-04 06:18:18 +00:00
pInfoFunc digitalComps[] =
{&Digi_Source::info, &Logical_Inv::info, &Logical_OR::info,
&Logical_NOR::info, &Logical_AND::info, &Logical_NAND::info,
&Logical_XOR::info, &Logical_XNOR::info, 0};
2005-06-23 06:06:40 +00:00
pInfoFunc Diagrams[] =
{&RectDiagram::info, &PolarDiagram::info, &TabDiagram::info,
&SmithDiagram::info, &SmithDiagram::info_y, &PSDiagram::info,
2005-10-24 06:10:35 +00:00
&PSDiagram::info_sp, &Rect3DDiagram::info, &CurveDiagram::info,
2005-11-28 07:17:35 +00:00
&TimingDiagram::info, &TruthDiagram::info, 0};
2005-06-23 06:06:40 +00:00
pInfoFunc Paintings[] =
{&GraphicLine::info, &Arrow::info, &GraphicText::info,
&Ellipse::info, &Rectangle::info, &Ellipse::info_filled,
&Rectangle::info_filled, &EllipseArc::info, 0};
2004-04-24 11:52:43 +00:00
// #######################################################################
2004-09-11 16:55:12 +00:00
// Whenever the Component Library ComboBox is changed, this slot fills the
// Component IconView with the appropriat components.
2003-12-07 15:21:31 +00:00
void QucsApp::slotSetCompView(int index)
{
2005-04-19 06:33:22 +00:00
view->editText->setHidden(true); // disable text edit of component property
2004-09-11 16:55:12 +00:00
char *File;
QString Name;
pInfoFunc *Infos = 0;
2004-06-06 14:13:59 +00:00
2003-12-07 15:21:31 +00:00
CompComps->clear(); // clear the IconView
2005-06-23 06:06:40 +00:00
if((index+1) >= CompChoose->count()) // because of symbol edit mode
Infos = &Paintings[0];
else
2003-12-07 15:21:31 +00:00
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;
2005-10-04 06:18:18 +00:00
case COMBO_digital: Infos = &digitalComps[0]; break;
2003-12-07 15:21:31 +00:00
case COMBO_File:
2004-12-30 12:03:08 +00:00
new QIconViewItem(CompComps, tr("SPICE netlist"),
2005-05-09 06:32:17 +00:00
QImage(QucsSettings.BitmapDir + "spicefile.png"));
2004-05-20 17:27:41 +00:00
new QIconViewItem(CompComps, tr("1-port S parameter file"),
2005-05-09 06:32:17 +00:00
QImage(QucsSettings.BitmapDir + "spfile1.png"));
2004-05-20 17:27:41 +00:00
new QIconViewItem(CompComps, tr("2-port S parameter file"),
2005-05-09 06:32:17 +00:00
QImage(QucsSettings.BitmapDir + "spfile2.png"));
2004-05-20 17:27:41 +00:00
new QIconViewItem(CompComps, tr("3-port S parameter file"),
2005-05-09 06:32:17 +00:00
QImage(QucsSettings.BitmapDir + "spfile3.png"));
2004-05-20 17:27:41 +00:00
new QIconViewItem(CompComps, tr("4-port S parameter file"),
2005-05-09 06:32:17 +00:00
QImage(QucsSettings.BitmapDir + "spfile4.png"));
2004-05-20 17:27:41 +00:00
new QIconViewItem(CompComps, tr("5-port S parameter file"),
2005-05-09 06:32:17 +00:00
QImage(QucsSettings.BitmapDir + "spfile5.png"));
2004-05-20 17:27:41 +00:00
new QIconViewItem(CompComps, tr("6-port S parameter file"),
2005-05-09 06:32:17 +00:00
QImage(QucsSettings.BitmapDir + "spfile6.png"));
2004-06-12 12:35:04 +00:00
return;
2005-06-23 06:06:40 +00:00
case COMBO_Sims: Infos = &Simulations[0]; break;
case COMBO_Diagrams: Infos = &Diagrams[0]; break;
2004-06-12 12:35:04 +00:00
}
while(*Infos != 0) {
(**Infos) (Name, File, false);
new QIconViewItem(CompComps, Name,
2005-05-09 06:32:17 +00:00
QImage(QucsSettings.BitmapDir+QString(File)+".png"));
2004-06-12 12:35:04 +00:00
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)
{
2005-04-19 06:33:22 +00:00
view->editText->setHidden(true); // disable text edit of component property
2004-05-07 17:31:21 +00:00
// delete previously selected elements
2005-06-23 06:06:40 +00:00
if(view->selElem != 0) delete view->selElem;
view->selElem = 0; // no component/diagram/painting selected
2005-09-12 12:01:40 +00:00
if(view->drawn) view->viewport()->repaint(); // don't use update() here !!!
2005-06-23 06:06:40 +00:00
view->drawn = false;
2003-12-07 15:21:31 +00:00
if(item == 0) { // mouse button pressed not over an item ?
CompComps->clearSelection(); // deselect component in ViewList
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
2005-06-23 06:06:40 +00:00
view->MouseMoveAction = &QucsView::MMoveElement;
view->MousePressAction = &QucsView::MPressElement;
view->MouseReleaseAction = 0;
view->MouseDoubleClickAction = 0;
2004-09-11 16:55:12 +00:00
2004-06-12 12:35:04 +00:00
pInfoFunc Infos = 0;
2005-06-23 06:06:40 +00:00
if((CompChoose->currentItem()+1) >= CompChoose->count())
Infos = Paintings[CompComps->index(item)];
else
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;
2005-10-04 06:18:18 +00:00
case COMBO_digital:
Infos = digitalComps[CompComps->index(item)];
break;
2003-12-07 15:21:31 +00:00
case COMBO_File:
2004-12-30 12:03:08 +00:00
if(CompComps->index(item) == 0)
2005-06-23 06:06:40 +00:00
view->selElem = new SpiceFile();
2004-12-30 12:03:08 +00:00
else
2005-06-23 06:06:40 +00:00
view->selElem = new SParamFile(CompComps->index(item));
2004-06-06 14:13:59 +00:00
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_Diagrams:
2005-06-23 06:06:40 +00:00
Infos = Diagrams[CompComps->index(item)];
break;
2003-12-07 15:21:31 +00:00
}
2004-06-06 14:13:59 +00:00
char *Dummy2;
QString Dummy1;
2005-06-23 06:06:40 +00:00
if(Infos) view->selElem = (*Infos) (Dummy1, Dummy2, true);
2003-12-07 15:21:31 +00:00
}
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)
{
2005-04-19 06:33:22 +00:00
view->editText->setHidden(true); // disable text edit of component property
2003-12-07 15:21:31 +00:00
if(item == 0) { // mouse button pressed not over an item ?
Content->clearSelection(); // deselect component in ListView
2005-08-15 06:04:52 +00:00
if(view->drawn) view->viewport()->update();
2003-12-07 15:21:31 +00:00
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
2004-08-07 10:48:45 +00:00
if(item->text(1).isEmpty()) return; // return, if not a subcircuit
2003-12-07 15:21:31 +00:00
2004-05-07 17:31:21 +00:00
// delete previously selected elements
2005-06-23 06:06:40 +00:00
if(view->selElem != 0) delete view->selElem;
view->selElem = 0;
2003-12-07 15:21:31 +00:00
// 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;
2005-06-23 06:06:40 +00:00
Component *Comp = new Subcircuit();
Comp->Props.first()->Value = item->text(0);
2005-10-24 06:10:35 +00:00
Comp->recreate(0);
2005-06-23 06:06:40 +00:00
view->selElem = Comp;
2003-12-07 15:21:31 +00:00
2005-08-15 06:04:52 +00:00
if(view->drawn) view->viewport()->update();
2003-12-07 15:21:31 +00:00
view->drawn = false;
2005-06-23 06:06:40 +00:00
view->MouseMoveAction = &QucsView::MMoveElement;
view->MousePressAction = &QucsView::MPressElement;
view->MouseReleaseAction = 0;
view->MouseDoubleClickAction = 0;
2003-12-07 15:21:31 +00:00
}
2004-06-12 12:35:04 +00:00
2004-09-11 16:55:12 +00:00
// #######################################################################
void QucsApp::switchEditMode(bool SchematicMode)
{
2004-10-02 16:21:06 +00:00
if(SchematicMode) {
symEdit->setMenuText(tr("Edit Circuit Symbol"));
symEdit->setStatusTip(tr("Edits the symbol for this schematic"));
symEdit->setWhatsThis(
tr("Edit Circuit Symbol\n\nEdits the symbol for this schematic"));
}
else {
symEdit->setMenuText(tr("Edit Schematic"));
symEdit->setStatusTip(tr("Edits the schematic"));
symEdit->setWhatsThis(tr("Edit Schematic\n\nEdits the schematic"));
}
2004-09-11 16:55:12 +00:00
fillComboBox(SchematicMode);
2004-10-02 16:21:06 +00:00
slotSetCompView(0);
2004-09-11 16:55:12 +00:00
Acts.editActivate->setEnabled(SchematicMode);
Acts.insEquation->setEnabled(SchematicMode);
Acts.insGround->setEnabled(SchematicMode);
Acts.insPort->setEnabled(SchematicMode);
Acts.insWire->setEnabled(SchematicMode);
Acts.insLabel->setEnabled(SchematicMode);
Acts.setMarker->setEnabled(SchematicMode);
simulate->setEnabled(SchematicMode);
}
// #######################################################################
2004-09-18 09:46:19 +00:00
void QucsApp::changeSchematicSymbolMode(QucsDoc *d)
2004-09-11 16:55:12 +00:00
{
2004-10-23 16:07:50 +00:00
if(!d->symbolMode) {
2004-09-11 16:55:12 +00:00
switchEditMode(true);
d->Comps = &(d->DocComps);
d->Wires = &(d->DocWires);
d->Nodes = &(d->DocNodes);
d->Diags = &(d->DocDiags);
d->Paints = &(d->DocPaints);
2004-09-19 16:38:59 +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-09-11 16:55:12 +00:00
}
else {
2004-09-18 17:14:23 +00:00
// go into select modus to avoid placing a forbidden element
Acts.select->setOn(true);
2004-09-11 16:55:12 +00:00
switchEditMode(false);
2004-10-23 16:07:50 +00:00
d->Comps = &SymbolComps;
d->Wires = &SymbolWires;
d->Nodes = &SymbolNodes;
d->Diags = &SymbolDiags;
2004-09-11 16:55:12 +00:00
d->Paints = &(d->SymbolPaints);
2004-09-19 16:38:59 +00:00
// If the number of ports is not equal, remove or add some.
2004-09-25 12:10:08 +00:00
unsigned int countPort = d->adjustPortNumbers();
2004-09-18 17:14:23 +00:00
2004-09-11 16:55:12 +00:00
// If a symbol does not yet exist, create one.
2004-09-25 12:10:08 +00:00
if(d->SymbolPaints.count() == countPort) {
2004-09-11 16:55:12 +00:00
int h = 30*((countPort-1)/2) + 10;
2004-10-15 07:07:57 +00:00
d->SymbolPaints.prepend(new ID_Text(-20, h+4));
2004-09-11 16:55:12 +00:00
d->SymbolPaints.append(
new GraphicLine(-20, -h, 40, 0, QPen(QPen::darkBlue,2)));
d->SymbolPaints.append(
new GraphicLine( 20, -h, 0,2*h, QPen(QPen::darkBlue,2)));
d->SymbolPaints.append(
new GraphicLine(-20, h, 40, 0, QPen(QPen::darkBlue,2)));
d->SymbolPaints.append(
new GraphicLine(-20, -h, 0,2*h, QPen(QPen::darkBlue,2)));
// Texts.append(new Text( -7, 0,"sub"));
2004-09-25 12:10:08 +00:00
unsigned int i=0, y = 10-h;
2004-09-11 16:55:12 +00:00
while(i<countPort) {
i++;
d->SymbolPaints.append(
new GraphicLine(-30, y, 10, 0, QPen(QPen::darkBlue,2)));
2004-10-15 07:07:57 +00:00
d->SymbolPaints.at(i)->setCenter(-30, y);
2004-09-11 16:55:12 +00:00
if(i == countPort) break;
i++;
d->SymbolPaints.append(
new GraphicLine( 20, y, 10, 0, QPen(QPen::darkBlue,2)));
2004-10-15 07:07:57 +00:00
d->SymbolPaints.at(i)->setCenter(30, y);
2004-09-11 16:55:12 +00:00
y += 60;
}
2004-10-23 16:07:50 +00:00
d->sizeOfAll(d->UsedX1, d->UsedY1, d->UsedX2, d->UsedY2);
2004-09-11 16:55:12 +00:00
}
2004-09-19 16:38:59 +00:00
QString *ps = d->UndoSymbol.current();
if(ps != d->UndoSymbol.getFirst()) undo->setEnabled(true);
else undo->setEnabled(false);
if(ps != d->UndoSymbol.getLast()) redo->setEnabled(true);
else redo->setEnabled(false);
2004-09-11 16:55:12 +00:00
}
2004-09-18 09:46:19 +00:00
}
// #######################################################################
// Is called if the "symEdit" action is activated, i.e. if the user
// switches between the two painting mode: Schematic and (subcircuit)
// symbol.
void QucsApp::slotSymbolEdit()
{
2005-04-19 06:33:22 +00:00
view->editText->setHidden(true); // disable text edit of component property
2004-09-18 09:46:19 +00:00
QucsDoc *d = view->Docs.current();
2004-10-23 16:07:50 +00:00
d->symbolMode = !(d->symbolMode); // change mode
2004-09-18 17:14:23 +00:00
d->switchPaintMode(); // twist the view coordinates
2004-09-18 09:46:19 +00:00
changeSchematicSymbolMode(d);
2004-09-19 16:38:59 +00:00
// This can only be true when switching to the symbol the first time.
if(d->UndoSymbol.isEmpty()) {
d->setChanged(false, true); // "not changed" state, but put on undo stack
d->UndoSymbol.current()->at(1) = 'i'; // state of being unchanged
}
2004-09-18 09:46:19 +00:00
view->resizeContents(int(d->Scale*double(d->ViewX2-d->ViewX1)),
int(d->Scale*double(d->ViewY2-d->ViewY1)));
view->setContentsPos(d->PosX, d->PosY);
2005-08-15 06:04:52 +00:00
view->viewport()->update();
2004-09-18 09:46:19 +00:00
view->drawn = false;
2004-09-11 16:55:12 +00:00
}