2003-12-07 15:21:31 +00:00
|
|
|
/***************************************************************************
|
2005-09-12 12:01:40 +00:00
|
|
|
qucs.cpp
|
|
|
|
----------
|
2006-01-09 07:17:15 +00:00
|
|
|
begin : Thu Aug 28 2003
|
|
|
|
copyright : (C) 2003, 2004, 2005, 2006 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
|
|
|
|
|
2005-03-01 08:50:13 +00:00
|
|
|
#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>
|
2006-03-28 06:10:52 +00:00
|
|
|
#include <qapplication.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>
|
2006-03-28 06:10:52 +00:00
|
|
|
#include <qaction.h>
|
|
|
|
#include <qtabwidget.h>
|
|
|
|
#include <qcombobox.h>
|
|
|
|
#include <qiconview.h>
|
|
|
|
#include <qpushbutton.h>
|
|
|
|
#include <qlistview.h>
|
|
|
|
#include <qlistbox.h>
|
|
|
|
#include <qprinter.h>
|
|
|
|
#include <qfiledialog.h>
|
|
|
|
#include <qpixmap.h>
|
|
|
|
#include <qtoolbutton.h>
|
|
|
|
#include <qstatusbar.h>
|
|
|
|
#include <qtoolbar.h>
|
|
|
|
#include <qpopupmenu.h>
|
|
|
|
#include <qmenubar.h>
|
|
|
|
#include <qprocess.h>
|
|
|
|
#include <qlineedit.h>
|
2006-06-02 07:47:24 +00:00
|
|
|
#include <qstringlist.h>
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2005-03-01 08:50:13 +00:00
|
|
|
#include "main.h"
|
|
|
|
#include "qucs.h"
|
2006-03-28 06:10:52 +00:00
|
|
|
#include "qucsdoc.h"
|
|
|
|
#include "textdoc.h"
|
|
|
|
#include "schematic.h"
|
|
|
|
#include "mouseactions.h"
|
2005-03-01 08:50:13 +00:00
|
|
|
#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"
|
2006-04-10 06:12:35 +00:00
|
|
|
#include "dialogs/digisettingsdialog.h"
|
2005-03-01 08:50:13 +00:00
|
|
|
#include "dialogs/qucssettingsdialog.h"
|
2006-04-10 06:12:35 +00:00
|
|
|
#include "dialogs/searchdialog.h"
|
2005-08-15 06:04:52 +00:00
|
|
|
#include "dialogs/sweepdialog.h"
|
2006-03-28 06:10:52 +00:00
|
|
|
#include "dialogs/labeldialog.h"
|
|
|
|
#include "dialogs/matchdialog.h"
|
2006-04-10 06:12:35 +00:00
|
|
|
#include "dialogs/simmessage.h"
|
2006-07-26 08:03:35 +00:00
|
|
|
#include "dialogs/vtabwidget.h"
|
|
|
|
#include "dialogs/vtabbeddockwidget.h"
|
2005-03-01 08:50:13 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
extern const char *empty_xpm[];
|
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
|
|
|
{
|
2004-04-30 22:32:03 +00:00
|
|
|
setCaption("Qucs " PACKAGE_VERSION);
|
2004-02-21 18:38:50 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
QucsFileFilter =
|
|
|
|
tr("Schematic")+" (*.sch);;"+
|
|
|
|
tr("Data Display")+" (*.dpl);;"+
|
|
|
|
tr("Qucs Documents")+" (*.sch *.dpl);;"+
|
2006-04-05 08:34:45 +00:00
|
|
|
tr("VHDL Sources")+" (*.vhdl *.vhd);;"+
|
2006-03-28 06:10:52 +00:00
|
|
|
tr("Any File")+" (*)";
|
2005-02-28 09:30:41 +00:00
|
|
|
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-02-21 18:38:50 +00:00
|
|
|
|
2004-04-24 11:52:43 +00:00
|
|
|
initView();
|
2006-03-28 06:10:52 +00:00
|
|
|
initActions();
|
|
|
|
initMenuBar();
|
|
|
|
initToolBar();
|
|
|
|
initStatusBar();
|
2006-07-17 06:02:57 +00:00
|
|
|
viewToolBar->setOn(true);
|
2006-03-28 06:10:52 +00:00
|
|
|
viewStatusBar->setOn(true);
|
2006-07-17 06:02:57 +00:00
|
|
|
viewBrowseDock->setOn(true);
|
2004-02-21 18:38:50 +00:00
|
|
|
initCursorMenu();
|
2006-03-28 06:10:52 +00:00
|
|
|
HierarchyHistory.setAutoDelete(true);
|
2005-01-16 14:21:24 +00:00
|
|
|
|
2003-12-07 15:21:31 +00:00
|
|
|
// default settings of the printer
|
2006-07-03 06:02:08 +00:00
|
|
|
Printer = new QPrinter(QPrinter::HighResolution);
|
2006-05-16 11:04:27 +00:00
|
|
|
#if defined (QT_VERSION) && QT_VERSION > 0x030200
|
2006-07-03 06:02:08 +00:00
|
|
|
Printer->setOptionEnabled(QPrinter::PrintSelection, true);
|
2006-04-10 06:12:35 +00:00
|
|
|
Printer->setOptionEnabled(QPrinter::PrintPageRange, false);
|
2006-05-16 11:04:27 +00:00
|
|
|
#endif
|
2004-10-16 20:57:38 +00:00
|
|
|
Printer->setColorMode(QPrinter::Color);
|
2006-04-10 06:12:35 +00:00
|
|
|
Printer->setFullPage(true);
|
|
|
|
|
|
|
|
SearchDia = new SearchDialog(this);
|
2004-02-21 18:38:50 +00:00
|
|
|
|
2004-06-21 08:22:13 +00:00
|
|
|
// creates a document called "untitled"
|
2006-03-28 06:10:52 +00:00
|
|
|
new Schematic(this, "");
|
|
|
|
|
|
|
|
select->setOn(true); // switch on the 'select' action
|
2006-04-10 06:12:35 +00:00
|
|
|
switchSchematicDoc(true); // "untitled" document is schematic
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// #######################################################################
|
|
|
|
// ########## ##########
|
|
|
|
// ########## Creates the working area (QTabWidget etc.) ##########
|
|
|
|
// ########## ##########
|
|
|
|
// #######################################################################
|
|
|
|
void QucsApp::initContentListView()
|
|
|
|
{
|
|
|
|
Content->clear(); // remove all documents
|
|
|
|
ConOthers = new QListViewItem(Content, tr("Others"));
|
|
|
|
ConDatasets = new QListViewItem(Content, tr("Datasets"));
|
|
|
|
ConDisplays = new QListViewItem(Content, tr("Data Displays"));
|
|
|
|
ConSources = new QListViewItem(Content, tr("VHDL"));
|
|
|
|
ConSchematics = new QListViewItem(Content, tr("Schematics"));
|
|
|
|
}
|
|
|
|
|
2003-12-07 15:21:31 +00:00
|
|
|
void QucsApp::initView()
|
|
|
|
{
|
2005-02-28 09:30:41 +00:00
|
|
|
// set application icon
|
|
|
|
setIcon (QPixmap(QucsSettings.BitmapDir + "big.qucs.xpm"));
|
2006-03-28 06:10:52 +00:00
|
|
|
|
2006-07-17 06:02:57 +00:00
|
|
|
DocumentTab = new QTabWidget(this);
|
|
|
|
setCentralWidget(DocumentTab);
|
2006-03-28 06:10:52 +00:00
|
|
|
connect(DocumentTab,
|
|
|
|
SIGNAL(currentChanged(QWidget*)), SLOT(slotChangeView(QWidget*)));
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2006-07-26 08:03:35 +00:00
|
|
|
dock = new VTabbedDockWidget(QDockWindow::InDock, this);
|
|
|
|
TabView = new VTabWidget(VTabInterface::TabLeft,dock); // tabs on the left side
|
|
|
|
|
|
|
|
|
2006-07-17 06:02:57 +00:00
|
|
|
connect(dock, SIGNAL(visibilityChanged(bool)), SLOT(slotToggleDock(bool)));
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
view = new MouseActions();
|
|
|
|
|
|
|
|
editText = new QLineEdit(this); // for editing component properties
|
|
|
|
editText->setFrame(false);
|
|
|
|
editText->setHidden(true);
|
|
|
|
editText->setPaletteBackgroundColor(QucsSettings.BGColor);
|
|
|
|
connect(editText, SIGNAL(returnPressed()), SLOT(slotApplyCompText()));
|
2006-05-08 06:13:04 +00:00
|
|
|
connect(editText, SIGNAL(textChanged(const QString&)),
|
|
|
|
SLOT(slotResizePropEdit(const QString&)));
|
2006-03-28 06:10:52 +00:00
|
|
|
connect(editText, SIGNAL(lostFocus()), SLOT(slotHideEdit()));
|
|
|
|
|
2003-12-07 15:21:31 +00:00
|
|
|
// ----------------------------------------------------------
|
|
|
|
// "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);
|
2006-07-26 08:03:35 +00:00
|
|
|
TabView->addPage(ProjGroup, tr("Projects"));
|
|
|
|
TabView->setTabToolTip(TabView->id(ProjGroup),
|
2006-03-28 06:10:52 +00:00
|
|
|
tr("content of 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);
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
initContentListView();
|
2006-07-26 08:03:35 +00:00
|
|
|
TabView->addPage(Content,tr("Content"));
|
|
|
|
TabView->setTabToolTip(TabView->id(Content), tr("content of current 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*)));
|
2006-07-31 06:04:54 +00:00
|
|
|
connect(Content, SIGNAL(expanded(QListViewItem*)),
|
|
|
|
SLOT(slotExpandContentList(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);
|
2006-07-26 08:03:35 +00:00
|
|
|
TabView->addPage(CompGroup,tr("Components"));
|
|
|
|
TabView->setTabToolTip(TabView->id(CompGroup), 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*)));
|
2006-07-26 08:03:35 +00:00
|
|
|
dock->setWidget(TabView);
|
|
|
|
setDockEnabled(dock,DockTop,false);
|
|
|
|
setDockEnabled(dock,DockBottom,false);
|
|
|
|
moveDockWindow(dock,DockLeft);
|
|
|
|
TabView->setCurrentPage(0);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// ............................................
|
|
|
|
readProjects(); // reads all projects and inserts them into the ListBox
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// ---------------------------------------------------------------
|
|
|
|
// Returns a pointer to the QucsDoc object whose number is "No".
|
|
|
|
// If No < 0 then a pointer to the current document is returned.
|
|
|
|
QucsDoc* QucsApp::getDoc(int No)
|
2004-09-11 16:55:12 +00:00
|
|
|
{
|
2006-03-28 06:10:52 +00:00
|
|
|
QWidget *w;
|
|
|
|
if(No < 0)
|
|
|
|
w = DocumentTab->currentPage();
|
|
|
|
else
|
|
|
|
w = DocumentTab->page(No);
|
|
|
|
|
|
|
|
if(w) {
|
2006-04-10 06:12:35 +00:00
|
|
|
if(w->inherits("QTextEdit"))
|
2006-03-28 06:10:52 +00:00
|
|
|
return (QucsDoc*) ((TextDoc*)w);
|
2006-04-10 06:12:35 +00:00
|
|
|
return (QucsDoc*) ((Schematic*)w);
|
2004-09-11 16:55:12 +00:00
|
|
|
}
|
2006-03-28 06:10:52 +00:00
|
|
|
|
|
|
|
return 0;
|
2004-09-11 16:55:12 +00:00
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// ####################################################################
|
|
|
|
// ##### The following arrays contains the elements that appear #####
|
|
|
|
// ##### in the component listview. #####
|
|
|
|
// ####################################################################
|
2006-02-27 07:10:33 +00:00
|
|
|
typedef Element* (*pInfoFunc) (QString&, char* &, bool);
|
|
|
|
pInfoFunc lumpedComponents[] =
|
|
|
|
{&Resistor::info, &Resistor::info_us, &Capacitor::info, &Inductor::info,
|
|
|
|
&Ground::info, &SubCirPort::info, &Transformer::info, &symTrafo::info,
|
|
|
|
&dcBlock::info, &dcFeed::info, &BiasT::info, &Attenuator::info,
|
|
|
|
&Amplifier::info, &Isolator::info, &Circulator::info,
|
|
|
|
&Gyrator::info, &Phaseshifter::info, &Coupler::info, &iProbe::info,
|
|
|
|
&vProbe::info, &Mutual::info, &Mutual2::info, &Switch::info,
|
|
|
|
&Relais::info, 0};
|
|
|
|
|
|
|
|
pInfoFunc Sources[] =
|
|
|
|
{&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, &vPulse::info, &iPulse::info,
|
|
|
|
&vRect::info, &iRect::info, &Noise_ii::info, &Noise_vv::info,
|
|
|
|
&Noise_iv::info, &AM_Modulator::info, &PM_Modulator::info, 0};
|
|
|
|
|
|
|
|
pInfoFunc TransmissionLines[] =
|
|
|
|
{&TLine::info, &CoaxialLine::info, &Substrate::info, &MSline::info,
|
|
|
|
&MScoupled::info, &MScorner::info, &MSmbend::info, &MSstep::info,
|
|
|
|
&MStee::info, &MScross::info, &MSopen::info, &MSgap::info, &MSvia::info,
|
|
|
|
&Coplanar::info, &CPWopen::info, &CPWshort::info, &CPWgap::info,
|
|
|
|
&CPWstep::info, 0};
|
|
|
|
|
|
|
|
pInfoFunc nonlinearComps[] =
|
|
|
|
{&Diode::info, &BJT::info, &BJT::info_pnp, &BJTsub::info,
|
|
|
|
&BJTsub::info_pnp, &JFET::info, &JFET::info_p,
|
|
|
|
&MOSFET::info, &MOSFET::info_p, &MOSFET::info_depl,
|
|
|
|
&MOSFET_sub::info, &MOSFET_sub::info_p, &MOSFET_sub::info_depl,
|
2006-10-31 11:04:52 +00:00
|
|
|
&OpAmp::info, &hicumL2p1::info, &hicumL2p1::info_pnp, &HBT_X::info, 0};
|
2006-02-27 07:10:33 +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, &RS_FlipFlop::info,
|
2006-04-28 06:04:44 +00:00
|
|
|
&D_FlipFlop::info, &JK_FlipFlop::info, &VHDL_File::info,
|
|
|
|
&Digi_Sim::info, 0};
|
2006-02-27 07:10:33 +00:00
|
|
|
|
|
|
|
pInfoFunc Simulations[] =
|
|
|
|
{&DC_Sim::info, &TR_Sim::info, &AC_Sim::info, &SP_Sim::info,
|
2006-07-24 06:12:23 +00:00
|
|
|
&HB_Sim::info, &Param_Sweep::info, &Digi_Sim::info, &Optimize_Sim::info,
|
|
|
|
0};
|
2006-02-27 07:10:33 +00:00
|
|
|
|
|
|
|
pInfoFunc FileComponents[] =
|
|
|
|
{&SpiceFile::info, &SParamFile::info1, &SParamFile::info2,
|
2006-05-05 06:00:05 +00:00
|
|
|
&SParamFile::info, &Subcircuit::info, 0};
|
2006-02-27 07:10:33 +00:00
|
|
|
|
|
|
|
pInfoFunc Diagrams[] =
|
|
|
|
{&RectDiagram::info, &PolarDiagram::info, &TabDiagram::info,
|
|
|
|
&SmithDiagram::info, &SmithDiagram::info_y, &PSDiagram::info,
|
|
|
|
&PSDiagram::info_sp, &Rect3DDiagram::info, &CurveDiagram::info,
|
|
|
|
&TimingDiagram::info, &TruthDiagram::info, 0};
|
|
|
|
|
|
|
|
pInfoFunc Paintings[] =
|
|
|
|
{&GraphicLine::info, &Arrow::info, &GraphicText::info,
|
|
|
|
&Ellipse::info, &Rectangle::info, &Ellipse::info_filled,
|
|
|
|
&Rectangle::info_filled, &EllipseArc::info, 0};
|
|
|
|
|
|
|
|
// Order of the component groups in the ComboBox
|
|
|
|
pInfoFunc *ComponentGroups[] =
|
|
|
|
{lumpedComponents, Sources, TransmissionLines, nonlinearComps,
|
|
|
|
digitalComps, FileComponents, Simulations, Diagrams, 0};
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// ---------------------------------------------------------------
|
|
|
|
// Put the component groups into the ComboBox. It is possible to
|
|
|
|
// only put the paintings in it, because of "symbol painting mode".
|
|
|
|
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"));
|
|
|
|
CompChoose->insertItem(tr("digital components"));
|
|
|
|
CompChoose->insertItem(tr("file components"));
|
|
|
|
CompChoose->insertItem(tr("simulations"));
|
|
|
|
CompChoose->insertItem(tr("diagrams"));
|
|
|
|
}
|
|
|
|
CompChoose->insertItem(tr("paintings"));
|
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------
|
2006-02-27 07:10:33 +00:00
|
|
|
// Whenever the Component Library ComboBox is changed, this slot fills the
|
|
|
|
// Component IconView with the appropriat components.
|
|
|
|
void QucsApp::slotSetCompView(int index)
|
|
|
|
{
|
2006-03-28 06:10:52 +00:00
|
|
|
editText->setHidden(true); // disable text edit of component property
|
2006-02-27 07:10:33 +00:00
|
|
|
|
|
|
|
char *File;
|
|
|
|
QString Name;
|
|
|
|
pInfoFunc *Infos = 0;
|
|
|
|
|
|
|
|
CompComps->clear(); // clear the IconView
|
|
|
|
if((index+1) >= CompChoose->count()) // because of symbol edit mode
|
|
|
|
Infos = &Paintings[0];
|
|
|
|
else
|
|
|
|
Infos = ComponentGroups[index];
|
|
|
|
|
|
|
|
while(*Infos != 0) {
|
|
|
|
(**Infos) (Name, File, false);
|
|
|
|
new QIconViewItem(CompComps, Name,
|
|
|
|
QImage(QucsSettings.BitmapDir+QString(File)+".png"));
|
|
|
|
Infos++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// ------------------------------------------------------------------
|
2006-02-27 07:10:33 +00:00
|
|
|
// Is called when the mouse is clicked within the Component QIconView.
|
|
|
|
void QucsApp::slotSelectComponent(QIconViewItem *item)
|
|
|
|
{
|
2006-03-28 06:10:52 +00:00
|
|
|
editText->setHidden(true); // disable text edit of component property
|
2006-02-27 07:10:33 +00:00
|
|
|
|
|
|
|
// delete previously selected elements
|
|
|
|
if(view->selElem != 0) delete view->selElem;
|
|
|
|
view->selElem = 0; // no component/diagram/painting selected
|
|
|
|
|
|
|
|
if(item == 0) { // mouse button pressed not over an item ?
|
|
|
|
CompComps->clearSelection(); // deselect component in ViewList
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
if(view->drawn)
|
2006-04-18 06:03:52 +00:00
|
|
|
((QScrollView*)DocumentTab->currentPage())->viewport()->update();
|
2006-03-28 06:10:52 +00:00
|
|
|
view->drawn = false;
|
|
|
|
|
2006-02-27 07:10:33 +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;
|
|
|
|
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
MouseMoveAction = &MouseActions::MMoveElement;
|
|
|
|
MousePressAction = &MouseActions::MPressElement;
|
|
|
|
MouseReleaseAction = 0;
|
|
|
|
MouseDoubleClickAction = 0;
|
2006-02-27 07:10:33 +00:00
|
|
|
|
|
|
|
pInfoFunc Infos = 0;
|
|
|
|
int i = CompComps->index(item);
|
|
|
|
if((CompChoose->currentItem()+1) >= CompChoose->count())
|
|
|
|
Infos = Paintings[i]; // the only one in "symbol-painting" mode
|
|
|
|
else
|
|
|
|
Infos = *(ComponentGroups[CompChoose->currentItem()] + i);
|
|
|
|
|
|
|
|
char *Dummy2;
|
|
|
|
QString Dummy1;
|
2006-04-18 06:03:52 +00:00
|
|
|
if(Infos)
|
|
|
|
view->selElem = (*Infos) (Dummy1, Dummy2, true);
|
2006-02-27 07:10:33 +00:00
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// ####################################################################
|
|
|
|
// ##### Functions for the menu that appears when left-clicking #####
|
|
|
|
// ##### 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
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------
|
2006-03-28 06:10:52 +00:00
|
|
|
// Shows the 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
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------
|
|
|
|
void QucsApp::slotCMenuOpen()
|
|
|
|
{
|
2006-03-28 06:10:52 +00:00
|
|
|
QListViewItem *Item = Content->selectedItem();
|
|
|
|
if(Item == 0) return;
|
2004-02-21 18:38:50 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
slotOpenContent(Item);
|
2004-02-21 18:38:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------
|
|
|
|
void QucsApp::slotCMenuRename()
|
|
|
|
{
|
2006-03-28 06:10:52 +00:00
|
|
|
QListViewItem *Item = Content->selectedItem();
|
|
|
|
if(!Item) return;
|
2004-02-21 18:38:50 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
int No=0;
|
|
|
|
QucsDoc *d; // search, if file is open
|
|
|
|
while((d=getDoc(No++)) != 0)
|
|
|
|
if(d->DocName == QucsWorkDir.filePath(Item->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
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
QString Name = Item->text(0);
|
|
|
|
QString Suffix = Name.section('.',2); // remember suffix
|
|
|
|
if(!Suffix.isEmpty())
|
|
|
|
Suffix = '.' + Suffix;
|
2004-02-21 18:38:50 +00:00
|
|
|
|
|
|
|
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;
|
|
|
|
|
2004-07-14 12:54:14 +00:00
|
|
|
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;
|
|
|
|
}
|
2006-03-28 06:10:52 +00:00
|
|
|
Item->setText(0, s+Suffix);
|
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
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
int No=0;
|
|
|
|
QucsDoc *d; // search, if file is open
|
|
|
|
while((d=getDoc(No++)) != 0)
|
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
|
|
|
return;
|
2006-03-28 06:10:52 +00:00
|
|
|
}
|
2004-02-21 18:38:50 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
No = QMessageBox::warning(this, tr("Warning"),
|
|
|
|
tr("This will delete the file permanently! Continue ?"),
|
|
|
|
tr("No"), tr("Yes"));
|
|
|
|
if(No != 1) return;
|
2004-02-21 18:38:50 +00:00
|
|
|
|
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));
|
2004-07-14 12:54:14 +00:00
|
|
|
return;
|
|
|
|
}
|
2004-09-25 12:10:08 +00:00
|
|
|
|
|
|
|
item->parent()->takeItem(item);
|
|
|
|
delete item;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------
|
2006-03-28 06:10:52 +00:00
|
|
|
// Deletes all files with that name (and suffix sch, dpl, dat, vhdl).
|
2004-09-25 12:10:08 +00:00
|
|
|
void QucsApp::slotCMenuDelGroup()
|
|
|
|
{
|
|
|
|
QListViewItem *item = Content->selectedItem();
|
|
|
|
if(item == 0) return;
|
|
|
|
QString s = item->text(0);
|
2006-03-28 06:10:52 +00:00
|
|
|
s = s.section('.',0,0); // cut off suffix from file name
|
2004-09-25 12:10:08 +00:00
|
|
|
|
|
|
|
QString NameSCH = QucsWorkDir.filePath(s+".sch");
|
|
|
|
QString NameDPL = QucsWorkDir.filePath(s+".dpl");
|
|
|
|
QString NameDAT = QucsWorkDir.filePath(s+".dat");
|
2006-03-28 06:10:52 +00:00
|
|
|
QString NameDIG = QucsWorkDir.filePath(s+".vhdl");
|
2006-07-03 06:02:08 +00:00
|
|
|
QString NameVHD = QucsWorkDir.filePath(s+".vhd");
|
2004-09-25 12:10:08 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
int No=0;
|
|
|
|
QucsDoc *d; // search, if files are open
|
|
|
|
while((d=getDoc(No++)) != 0) {
|
2004-09-25 12:10:08 +00:00
|
|
|
if(d->DocName == NameSCH) {
|
|
|
|
QMessageBox::critical(this, tr("Error"),
|
|
|
|
tr("Cannot delete the open file: ")+NameSCH);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if(d->DocName == NameDPL) {
|
|
|
|
QMessageBox::critical(this, tr("Error"),
|
|
|
|
tr("Cannot delete the open file: ")+NameDPL);
|
2006-03-28 06:10:52 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if(d->DocName == NameDIG) {
|
|
|
|
QMessageBox::critical(this, tr("Error"),
|
|
|
|
tr("Cannot delete the open file: ")+NameDIG);
|
2004-09-25 12:10:08 +00:00
|
|
|
return;
|
|
|
|
}
|
2006-07-03 06:02:08 +00:00
|
|
|
if(d->DocName == NameVHD) {
|
|
|
|
QMessageBox::critical(this, tr("Error"),
|
|
|
|
tr("Cannot delete the open file: ")+NameVHD);
|
|
|
|
return;
|
|
|
|
}
|
2004-09-25 12:10:08 +00:00
|
|
|
}
|
2006-03-28 06:10:52 +00:00
|
|
|
|
2004-09-25 12:10:08 +00:00
|
|
|
|
|
|
|
bool SCH_exists = QFile::exists(NameSCH);
|
|
|
|
bool DPL_exists = QFile::exists(NameDPL);
|
|
|
|
bool DAT_exists = QFile::exists(NameDAT);
|
2006-03-28 06:10:52 +00:00
|
|
|
bool DIG_exists = QFile::exists(NameDIG);
|
2006-07-03 06:02:08 +00:00
|
|
|
bool VHD_exists = QFile::exists(NameVHD);
|
2004-09-25 12:10:08 +00:00
|
|
|
|
|
|
|
QString Str;
|
|
|
|
if(SCH_exists) Str += s+".sch\n";
|
|
|
|
if(DPL_exists) Str += s+".dpl\n";
|
|
|
|
if(DAT_exists) Str += s+".dat\n";
|
2006-03-28 06:10:52 +00:00
|
|
|
if(DIG_exists) Str += s+".vhdl\n";
|
2006-07-03 06:02:08 +00:00
|
|
|
if(VHD_exists) Str += s+".vhd\n";
|
2004-09-25 12:10:08 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
No = QMessageBox::warning(this, tr("Warning"),
|
|
|
|
tr("This will delete the files\n")+Str+tr("permanently! Continue ?"),
|
|
|
|
tr("No"), tr("Yes"));
|
|
|
|
if(No != 1) return;
|
2004-09-25 12:10:08 +00:00
|
|
|
|
|
|
|
// 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"),
|
2006-03-28 06:10:52 +00:00
|
|
|
tr("Cannot delete data display: ")+s+".dpl");
|
2004-09-25 12:10:08 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if(DAT_exists)
|
|
|
|
if(!QFile::remove(NameDAT)) {
|
|
|
|
QMessageBox::critical(this, tr("Error"),
|
2006-03-28 06:10:52 +00:00
|
|
|
tr("Cannot delete data file: ")+s+".dat");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if(DIG_exists)
|
|
|
|
if(!QFile::remove(NameDIG)) {
|
|
|
|
QMessageBox::critical(this, tr("Error"),
|
|
|
|
tr("Cannot delete VHDL source: ")+s+".vhdl");
|
2004-09-25 12:10:08 +00:00
|
|
|
return;
|
|
|
|
}
|
2006-07-03 06:02:08 +00:00
|
|
|
if(VHD_exists)
|
|
|
|
if(!QFile::remove(NameVHD)) {
|
|
|
|
QMessageBox::critical(this, tr("Error"),
|
|
|
|
tr("Cannot delete VHDL source: ")+s+".vhd");
|
|
|
|
return;
|
|
|
|
}
|
2004-09-25 12:10:08 +00:00
|
|
|
|
|
|
|
// 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;
|
|
|
|
}
|
|
|
|
}
|
2006-03-28 06:10:52 +00:00
|
|
|
if(DIG_exists) {
|
|
|
|
item = Content->findItem(s+".vhdl", 0);
|
|
|
|
if(item) {
|
|
|
|
item->parent()->takeItem(item);
|
|
|
|
delete item;
|
|
|
|
}
|
|
|
|
}
|
2006-07-03 06:02:08 +00:00
|
|
|
if(VHD_exists) {
|
|
|
|
item = Content->findItem(s+".vhd", 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
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
|
|
|
|
// ################################################################
|
|
|
|
// ##### Functions that handle the project operations. #####
|
|
|
|
// ################################################################
|
|
|
|
|
|
|
|
// Checks for qucs directory and reads all existing Qucs projects.
|
2003-12-07 15:21:31 +00:00
|
|
|
void QucsApp::readProjects()
|
|
|
|
{
|
2004-07-14 12:54:14 +00:00
|
|
|
QDir ProjDir(QDir::homeDirPath());
|
2006-06-06 06:14:17 +00:00
|
|
|
if(!ProjDir.cd(".qucs")) { // work directory exists ?
|
2004-07-14 12:54:14 +00:00
|
|
|
if(!ProjDir.mkdir(".qucs")) { // no, then create it
|
2004-05-07 17:31:21 +00:00
|
|
|
QMessageBox::warning(this, tr("Warning"),
|
2006-06-06 06:14:17 +00:00
|
|
|
tr("Cannot create work directory !"));
|
2004-02-21 18:38:50 +00:00
|
|
|
return;
|
|
|
|
}
|
2006-06-06 06:14:17 +00:00
|
|
|
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++)
|
2006-03-28 06:10:52 +00:00
|
|
|
if ((*it).right(4) == "_prj") { // project directories end with "_prj"
|
|
|
|
(*it) = (*it).left((*it).length()-4); // remove "_prj" from name
|
|
|
|
Projects->insertItem(*it);
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// ----------------------------------------------------------
|
|
|
|
// Is called, when "Create New Project" button is pressed.
|
|
|
|
void QucsApp::slotProjNewButt()
|
2003-12-07 15:21:31 +00:00
|
|
|
{
|
2006-03-28 06:10:52 +00:00
|
|
|
editText->setHidden(true); // disable text edit of component property
|
2004-02-21 18:38:50 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
NewProjDialog *d = new NewProjDialog(this);
|
|
|
|
if(d->exec() != QDialog::Accepted) return;
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
QDir projDir(QucsHomeDir.path());
|
|
|
|
if(projDir.mkdir(d->ProjName->text()+"_prj")) {
|
|
|
|
Projects->insertItem(d->ProjName->text(),0); // at first position
|
2006-07-31 06:04:54 +00:00
|
|
|
if(d->OpenProj->isChecked())
|
|
|
|
slotOpenProject(Projects->firstItem());
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
2006-03-28 06:10:52 +00:00
|
|
|
else QMessageBox::information(this, tr("Info"),
|
|
|
|
tr("Cannot create project directory !"));
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +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)
|
2004-06-22 16:49:55 +00:00
|
|
|
{
|
2006-03-28 06:10:52 +00:00
|
|
|
QFile file(DocName);
|
|
|
|
if(!file.open(IO_ReadOnly)) {
|
|
|
|
return -1;
|
|
|
|
}
|
2004-06-22 16:49:55 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
QString Line;
|
|
|
|
// .........................................
|
|
|
|
// 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);
|
2004-06-22 16:49:55 +00:00
|
|
|
|
2005-04-19 06:33:22 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// read header ........................
|
|
|
|
do {
|
|
|
|
if(stream.atEnd()) {
|
|
|
|
file.close();
|
|
|
|
return -2;
|
|
|
|
}
|
|
|
|
Line = stream.readLine();
|
|
|
|
Line = Line.stripWhiteSpace();
|
|
|
|
} while(Line.isEmpty());
|
|
|
|
|
|
|
|
if(Line.left(16) != "<Qucs Schematic ") { // wrong file type ?
|
|
|
|
file.close();
|
|
|
|
return -3;
|
|
|
|
}
|
2004-06-16 17:41:33 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
Line = Line.mid(16, Line.length()-17);
|
2006-06-02 07:47:24 +00:00
|
|
|
if(!checkVersion(Line)) { // wrong version number ?
|
2006-03-28 06:10:52 +00:00
|
|
|
file.close();
|
|
|
|
return -4;
|
|
|
|
}
|
2004-10-15 07:07:57 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// read content ....................
|
|
|
|
while(!stream.atEnd()) {
|
|
|
|
Line = stream.readLine();
|
|
|
|
if(Line == "<Components>") break;
|
|
|
|
}
|
2004-06-16 17:41:33 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
int z=0;
|
|
|
|
while(!stream.atEnd()) {
|
|
|
|
Line = stream.readLine();
|
|
|
|
if(Line == "</Components>") {
|
|
|
|
file.close();
|
|
|
|
return z; // return number of ports
|
|
|
|
}
|
2004-06-16 17:41:33 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
Line = Line.stripWhiteSpace();
|
2006-06-02 07:47:24 +00:00
|
|
|
QString s = Line.section(' ',0,0); // component type
|
2006-03-28 06:10:52 +00:00
|
|
|
if(s == "<Port") z++;
|
|
|
|
}
|
|
|
|
return -5; // component field not closed
|
|
|
|
}
|
2004-06-22 16:49:55 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// ----------------------------------------------------------
|
|
|
|
// Reads all files in the project directory and sort them into the
|
|
|
|
// content ListView
|
|
|
|
void QucsApp::readProjectFiles()
|
|
|
|
{
|
2006-07-31 06:04:54 +00:00
|
|
|
// Delete the content files, but don't delete the parent items !!!
|
|
|
|
while(ConSchematics->firstChild())
|
|
|
|
delete ConSchematics->firstChild();
|
|
|
|
while(ConDisplays->firstChild())
|
|
|
|
delete ConDisplays->firstChild();
|
|
|
|
while(ConDatasets->firstChild())
|
|
|
|
delete ConDatasets->firstChild();
|
|
|
|
while(ConSources->firstChild())
|
|
|
|
delete ConSources->firstChild();
|
|
|
|
while(ConOthers->firstChild())
|
|
|
|
delete ConOthers->firstChild();
|
|
|
|
|
2004-06-22 16:49:55 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
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).section('.',1);
|
|
|
|
if(Str == "sch") {
|
|
|
|
n = testFile(QucsWorkDir.filePath((*it).ascii()));
|
|
|
|
if(n >= 0) {
|
|
|
|
if(n > 0)
|
|
|
|
new QListViewItem(ConSchematics, (*it).ascii(),
|
2006-07-31 06:04:54 +00:00
|
|
|
QString::number(n)+tr("-port"));
|
2006-03-28 06:10:52 +00:00
|
|
|
else new QListViewItem(ConSchematics, (*it).ascii());
|
|
|
|
}
|
2004-08-07 10:48:45 +00:00
|
|
|
}
|
2006-03-28 06:10:52 +00:00
|
|
|
else if(Str == "dpl")
|
|
|
|
new QListViewItem(ConDisplays, (*it).ascii());
|
|
|
|
else if(Str == "dat")
|
|
|
|
new QListViewItem(ConDatasets, (*it).ascii());
|
2006-07-03 06:02:08 +00:00
|
|
|
else if((Str == "vhdl") || (Str == "vhd"))
|
2006-03-28 06:10:52 +00:00
|
|
|
new QListViewItem(ConSources, (*it).ascii());
|
|
|
|
else
|
|
|
|
new QListViewItem(ConOthers, (*it).ascii());
|
|
|
|
}
|
2004-06-16 17:41:33 +00:00
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// ----------------------------------------------------------
|
|
|
|
// Opens an existing project.
|
2006-07-03 06:02:08 +00:00
|
|
|
void QucsApp::openProject(const QString& Path, const QString& Name)
|
2003-12-07 15:21:31 +00:00
|
|
|
{
|
2006-03-28 06:10:52 +00:00
|
|
|
editText->setHidden(true); // disable text edit of component property
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
if(!closeAllFiles()) return; // close files and ask for saving them
|
|
|
|
new Schematic(this, "");
|
|
|
|
view->drawn = false;
|
2004-06-16 17:41:33 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
slotResetWarnings();
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
QDir ProjDir(QDir::cleanDirPath(Path));
|
|
|
|
if(!ProjDir.exists() || !ProjDir.isReadable()) { // check project directory
|
|
|
|
QMessageBox::critical(this, tr("Error"),
|
|
|
|
tr("Cannot access project directory: ")+Path);
|
|
|
|
return;
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
2006-03-28 06:10:52 +00:00
|
|
|
QucsWorkDir.setPath(ProjDir.path());
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
Content->setColumnText(0,tr("Content of '")+Name+tr("'")); // column text
|
2006-08-07 06:07:55 +00:00
|
|
|
ConSchematics->setOpen(false); // get sure to have it closed
|
2006-07-31 06:04:54 +00:00
|
|
|
ConSchematics->setOpen(true); // also calls readProjectFiles()
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
TabView->setCurrentPage(1); // switch to "Content"-Tab
|
|
|
|
ProjName = Name; // remember the name of project
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// show name in title of main window
|
|
|
|
setCaption("Qucs " PACKAGE_VERSION + tr(" - Project: ")+Name);
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// ----------------------------------------------------------
|
|
|
|
// Is called when the open project menu is called.
|
|
|
|
void QucsApp::slotMenuOpenProject()
|
2004-06-22 16:49:55 +00:00
|
|
|
{
|
2006-03-28 06:10:52 +00:00
|
|
|
QFileDialog *d = new QFileDialog(QucsHomeDir.path());
|
|
|
|
d->setCaption(tr("Choose Project Directory for Opening"));
|
|
|
|
d->setShowHiddenFiles(true);
|
|
|
|
d->setMode(QFileDialog::DirectoryOnly);
|
|
|
|
if(d->exec() != QDialog::Accepted) return;
|
2004-06-22 16:49:55 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
QString s = d->selectedFile();
|
|
|
|
if(s.isEmpty()) return;
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2006-03-28 06:10:52 +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");
|
2006-07-03 06:02:08 +00:00
|
|
|
openProject(d->selectedFile(), s);
|
2006-03-28 06:10:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------
|
|
|
|
// Is called, when "Open Project" button is pressed.
|
|
|
|
void QucsApp::slotProjOpenButt()
|
2003-12-07 15:21:31 +00:00
|
|
|
{
|
2006-03-28 06:10:52 +00:00
|
|
|
editText->setHidden(true); // disable text edit of component property
|
2005-04-19 06:33:22 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
QListBoxItem *item = Projects->selectedItem();
|
|
|
|
if(item) slotOpenProject(item);
|
|
|
|
else QMessageBox::information(this, tr("Info"),
|
|
|
|
tr("No project is selected !"));
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// ----------------------------------------------------------
|
|
|
|
// Is called when project is double-clicked to open it.
|
|
|
|
void QucsApp::slotOpenProject(QListBoxItem *item)
|
2004-05-25 19:10:00 +00:00
|
|
|
{
|
2006-07-03 06:02:08 +00:00
|
|
|
openProject(QucsHomeDir.filePath(item->text()+"_prj"), item->text());
|
2006-03-28 06:10:52 +00:00
|
|
|
}
|
2005-04-19 06:33:22 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// ----------------------------------------------------------
|
|
|
|
// Is called when the close project menu is called.
|
|
|
|
void QucsApp::slotMenuCloseProject()
|
|
|
|
{
|
|
|
|
editText->setHidden(true); // disable text edit of component property
|
|
|
|
|
|
|
|
if(!closeAllFiles()) return; // close files and ask for saving them
|
2006-04-10 06:12:35 +00:00
|
|
|
new Schematic(this, "");
|
2004-05-25 19:10:00 +00:00
|
|
|
view->drawn = false;
|
2006-03-28 06:10:52 +00:00
|
|
|
|
|
|
|
slotResetWarnings();
|
|
|
|
setCaption("Qucs " PACKAGE_VERSION + tr(" - Project: "));
|
|
|
|
QucsWorkDir.setPath(QDir::homeDirPath()+QDir::convertSeparators ("/.qucs"));
|
|
|
|
|
|
|
|
Content->setColumnText(0,tr("Content of")); // column text
|
|
|
|
initContentListView();
|
|
|
|
|
|
|
|
TabView->setCurrentPage(0); // switch to "Projects"-Tab
|
|
|
|
ProjName = "";
|
2004-05-25 19:10:00 +00:00
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// ----------------------------------------------------------
|
2006-07-03 06:02:08 +00:00
|
|
|
bool QucsApp::deleteDirectoryContent(QDir& Dir)
|
|
|
|
{
|
|
|
|
// removes every file, remove("*") does not work
|
|
|
|
QStringList Files = Dir.entryList("*", QDir::Files); // all files
|
|
|
|
QStringList::iterator it;
|
|
|
|
for(it = Files.begin(); it != Files.end(); it++) {
|
|
|
|
if(!Dir.remove(*it)) {
|
|
|
|
QMessageBox::information(this, tr("Info"),
|
|
|
|
tr("Cannot delete file: ")+(*it));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QDir myDir(Dir);
|
|
|
|
// Remove all directories recursively.
|
|
|
|
Files = Dir.entryList("*", QDir::Dirs);
|
|
|
|
Files.pop_front(); // delete "." from list
|
|
|
|
Files.pop_front(); // delete ".." from list
|
|
|
|
for(it = Files.begin(); it != Files.end(); it++) {
|
|
|
|
myDir.cd(*it);
|
|
|
|
if(!deleteDirectoryContent(myDir))
|
|
|
|
return false;
|
|
|
|
myDir.cdUp();
|
|
|
|
if(!myDir.rmdir(*it)) {
|
|
|
|
QMessageBox::information(this, tr("Info"),
|
|
|
|
tr("Cannot remove directory: ")+(*it));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------
|
|
|
|
bool QucsApp::deleteProject(const QString& Path, const QString& Name)
|
2006-03-28 06:10:52 +00:00
|
|
|
{
|
|
|
|
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);
|
2006-07-03 06:02:08 +00:00
|
|
|
if(!deleteDirectoryContent(projDir))
|
|
|
|
return false;
|
2006-03-28 06:10:52 +00:00
|
|
|
|
|
|
|
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 activated.
|
|
|
|
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 = s.left(s.length()-4); // remove "_prj" from name
|
2006-07-03 06:02:08 +00:00
|
|
|
deleteProject(d->selectedFile(), s);
|
2006-03-28 06:10:52 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2006-07-03 06:02:08 +00:00
|
|
|
if(!deleteProject(QucsHomeDir.filePath(item->text()+"_prj"),
|
2006-03-28 06:10:52 +00:00
|
|
|
item->text())) return;
|
|
|
|
Projects->removeItem(Projects->currentItem()); // remove from project list
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ################################################################
|
|
|
|
// ##### Functions that handle the file operations for the #####
|
|
|
|
// ##### documents. #####
|
|
|
|
// ################################################################
|
|
|
|
|
2003-12-07 15:21:31 +00:00
|
|
|
void QucsApp::slotFileNew()
|
|
|
|
{
|
|
|
|
statusBar()->message(tr("Creating new schematic..."));
|
2006-03-28 06:10:52 +00:00
|
|
|
editText->setHidden(true); // disable text edit of component property
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
new Schematic(this, "");
|
2003-12-07 15:21:31 +00:00
|
|
|
|
|
|
|
statusBar()->message(tr("Ready."));
|
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// --------------------------------------------------------------
|
|
|
|
void QucsApp::slotTextNew()
|
|
|
|
{
|
|
|
|
statusBar()->message(tr("Creating new text editor..."));
|
|
|
|
editText->setHidden(true); // disable text edit of component property
|
|
|
|
|
|
|
|
new TextDoc(this, "");
|
|
|
|
|
|
|
|
statusBar()->message(tr("Ready."));
|
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------
|
|
|
|
// Changes to the document "Name". If already open then it goes to it
|
|
|
|
// directly, otherwise it loads it.
|
|
|
|
bool QucsApp::gotoPage(const QString& Name)
|
|
|
|
{
|
|
|
|
int No = DocumentTab->currentPageIndex();
|
|
|
|
|
|
|
|
int i=0;
|
|
|
|
QucsDoc *d; // search, if page is already loaded
|
|
|
|
while((d=getDoc(i++)) != 0)
|
|
|
|
if(QDir::convertSeparators (d->DocName) == QDir::convertSeparators (Name))
|
|
|
|
break;
|
|
|
|
|
|
|
|
if(d) { // open page found ?
|
|
|
|
d->becomeCurrent(true);
|
|
|
|
DocumentTab->setCurrentPage(i-1); // make new document the current
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
QFileInfo Info(Name);
|
2006-04-21 05:58:21 +00:00
|
|
|
if((Info.extension(false) == "sch") || (Info.extension(false) == "dpl"))
|
2006-03-28 06:10:52 +00:00
|
|
|
d = new Schematic(this, Name);
|
2006-04-21 05:58:21 +00:00
|
|
|
else
|
|
|
|
d = new TextDoc(this, Name);
|
2006-03-28 06:10:52 +00:00
|
|
|
|
|
|
|
if(!d->load()) { // load document if possible
|
|
|
|
delete d;
|
|
|
|
DocumentTab->setCurrentPage(No);
|
|
|
|
view->drawn = false;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
slotChangeView(DocumentTab->currentPage());
|
|
|
|
|
|
|
|
// if only an untitled document was open -> close it
|
2006-07-31 06:04:54 +00:00
|
|
|
if(getDoc(0)->DocName.isEmpty())
|
|
|
|
if(!getDoc(0)->DocChanged)
|
|
|
|
delete DocumentTab->page(0);
|
2006-03-28 06:10:52 +00:00
|
|
|
|
|
|
|
view->drawn = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2003-12-07 15:21:31 +00:00
|
|
|
// --------------------------------------------------------------
|
|
|
|
void QucsApp::slotFileOpen()
|
|
|
|
{
|
2005-04-04 17:26:45 +00:00
|
|
|
static QString lastDir; // to remember last directory and file
|
2006-03-28 06:10:52 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// --------------------------------------------------------------
|
|
|
|
bool QucsApp::saveFile(QucsDoc *Doc)
|
2003-12-07 15:21:31 +00:00
|
|
|
{
|
2006-03-28 06:10:52 +00:00
|
|
|
if(!Doc)
|
|
|
|
Doc = getDoc();
|
2004-08-07 10:48:45 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
if(Doc->DocName.isEmpty())
|
2004-05-07 17:31:21 +00:00
|
|
|
return saveAs();
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
int Result = Doc->save();
|
2004-12-19 16:06:24 +00:00
|
|
|
if(Result < 0) return false;
|
|
|
|
|
2006-05-05 06:00:05 +00:00
|
|
|
updatePortNumber(Doc, Result);
|
2003-12-07 15:21:31 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// --------------------------------------------------------------
|
2003-12-07 15:21:31 +00:00
|
|
|
void QucsApp::slotFileSave()
|
|
|
|
{
|
|
|
|
statusBar()->message(tr("Saving file..."));
|
2006-03-28 06:10:52 +00:00
|
|
|
DocumentTab->blockSignals(true); // no user interaction during that time
|
|
|
|
editText->setHidden(true); // disable text edit of component property
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
if(!saveFile()) {
|
|
|
|
DocumentTab->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
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
DocumentTab->blockSignals(false);
|
2003-12-07 15:21:31 +00:00
|
|
|
statusBar()->message(tr("Ready."));
|
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// --------------------------------------------------------------
|
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
|
2006-03-28 06:10:52 +00:00
|
|
|
QWidget *w = DocumentTab->currentPage();
|
|
|
|
QucsDoc *Doc = getDoc();
|
2005-04-04 17:26:45 +00:00
|
|
|
|
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;
|
2006-03-28 06:10:52 +00:00
|
|
|
s = Doc->DocName;
|
2005-04-04 17:26:45 +00:00
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
2006-04-10 06:12:35 +00:00
|
|
|
if(w->inherits("QTextEdit"))
|
2006-04-05 08:34:45 +00:00
|
|
|
Filter = tr("VHDL Sources")+" (*.vhdl *.vhd);;" + tr("Any File")+" (*)";
|
2006-03-28 06:10:52 +00:00
|
|
|
else
|
|
|
|
Filter = QucsFileFilter;
|
|
|
|
s = QFileDialog::getSaveFileName(s, Filter,
|
|
|
|
this, "", tr("Enter a Document Name"));
|
2004-05-07 17:31:21 +00:00
|
|
|
if(s.isEmpty()) return false;
|
|
|
|
Info.setFile(s); // try to guess the best extension ...
|
2006-03-28 06:10:52 +00:00
|
|
|
if(Info.extension(false).isEmpty()) { // ... if no one was specified
|
2006-04-10 06:12:35 +00:00
|
|
|
if(w->inherits("QTextEdit"))
|
2006-03-28 06:10:52 +00:00
|
|
|
s += ".vhdl";
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
// search, if document is open
|
2006-03-28 06:10:52 +00:00
|
|
|
int No=0;
|
2004-05-07 17:31:21 +00:00
|
|
|
QucsDoc *d;
|
2006-03-28 06:10:52 +00:00
|
|
|
while((d=getDoc(No++)) != 0)
|
2004-05-07 17:31:21 +00:00
|
|
|
if(d->DocName == s) break;
|
|
|
|
if(d) {
|
|
|
|
QMessageBox::information(this, tr("Info"),
|
|
|
|
tr("Cannot overwrite an open document"));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
2006-03-28 06:10:52 +00:00
|
|
|
Doc->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 ?
|
2004-07-14 12:54:14 +00:00
|
|
|
if(Info.dirPath(true) == QucsWorkDir.absPath())
|
2004-05-07 17:31:21 +00:00
|
|
|
if(!ProjName.isEmpty()) {
|
2006-03-28 06:10:52 +00:00
|
|
|
s = Info.fileName(); // remove path from file name
|
|
|
|
if(Info.extension(false) == "sch")
|
|
|
|
Content->setSelected(new QListViewItem(ConSchematics, s), true);
|
|
|
|
else if(Info.extension(false) == "dpl")
|
|
|
|
Content->setSelected(new QListViewItem(ConDisplays, s), true);
|
|
|
|
else if(Info.extension(false) == "dat")
|
|
|
|
Content->setSelected(new QListViewItem(ConDatasets, s), true);
|
2006-07-03 06:02:08 +00:00
|
|
|
else if((Info.extension(false) == "vhdl") || (Info.extension(false) == "vhd"))
|
2006-03-28 06:10:52 +00:00
|
|
|
Content->setSelected(new QListViewItem(ConSources, s), true);
|
|
|
|
else
|
|
|
|
Content->setSelected(new QListViewItem(ConOthers, s), true);
|
2004-05-07 17:31:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
n = Doc->save(); // SAVE
|
2004-12-19 16:06:24 +00:00
|
|
|
if(n < 0) return false;
|
|
|
|
|
2006-05-05 06:00:05 +00:00
|
|
|
updatePortNumber(Doc, n);
|
2004-05-07 17:31:21 +00:00
|
|
|
return true;
|
|
|
|
}
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// --------------------------------------------------------------
|
2004-05-07 17:31:21 +00:00
|
|
|
void QucsApp::slotFileSaveAs()
|
|
|
|
{
|
|
|
|
statusBar()->message(tr("Saving file under new filename..."));
|
2006-03-28 06:10:52 +00:00
|
|
|
DocumentTab->blockSignals(true); // no user interaction during the time
|
|
|
|
editText->setHidden(true); // disable text edit of component property
|
2004-05-07 17:31:21 +00:00
|
|
|
|
|
|
|
if(!saveAs()) {
|
2006-03-28 06:10:52 +00:00
|
|
|
DocumentTab->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
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
DocumentTab->blockSignals(false);
|
2003-12-07 15:21:31 +00:00
|
|
|
statusBar()->message(tr("Ready."));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// --------------------------------------------------------------
|
2003-12-07 15:21:31 +00:00
|
|
|
void QucsApp::slotFileSaveAll()
|
|
|
|
{
|
|
|
|
statusBar()->message(tr("Saving all files..."));
|
2006-03-28 06:10:52 +00:00
|
|
|
editText->setHidden(true); // disable text edit of component property
|
|
|
|
DocumentTab->blockSignals(true); // no user interaction during the time
|
|
|
|
|
|
|
|
int No=0;
|
|
|
|
QucsDoc *Doc; // search, if page is already loaded
|
|
|
|
while((Doc=getDoc(No++)) != 0) {
|
|
|
|
if(Doc->DocName.isEmpty()) // make document the current ?
|
|
|
|
DocumentTab->setCurrentPage(No-1);
|
|
|
|
saveFile(Doc);
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
2004-03-28 19:51:04 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
DocumentTab->blockSignals(false);
|
2006-05-05 06:00:05 +00:00
|
|
|
// Call update() to update subcircuit symbols in current document.
|
|
|
|
((QScrollView*)DocumentTab->currentPage())->viewport()->update();
|
|
|
|
view->drawn = false;
|
2003-12-07 15:21:31 +00:00
|
|
|
statusBar()->message(tr("Ready."));
|
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// --------------------------------------------------------------
|
2003-12-07 15:21:31 +00:00
|
|
|
void QucsApp::slotFileClose()
|
|
|
|
{
|
|
|
|
statusBar()->message(tr("Closing file..."));
|
2006-03-28 06:10:52 +00:00
|
|
|
editText->setHidden(true); // disable text edit of component property
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
QucsDoc *Doc = getDoc();
|
|
|
|
if(Doc->DocChanged) {
|
2003-12-07 15:21:31 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
delete Doc;
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
if(DocumentTab->count() < 1) // if no document left, create an untitled
|
|
|
|
new Schematic(this, "");
|
2004-09-25 12:10:08 +00:00
|
|
|
|
2003-12-07 15:21:31 +00:00
|
|
|
statusBar()->message(tr("Ready."));
|
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// --------------------------------------------------------------
|
|
|
|
bool QucsApp::closeAllFiles()
|
2003-12-07 15:21:31 +00:00
|
|
|
{
|
2006-03-28 06:10:52 +00:00
|
|
|
int Result = 0;
|
|
|
|
bool notForAll = true;
|
|
|
|
CloseMessageBox *m = new CloseMessageBox(tr("Closing Qucs document"),
|
|
|
|
tr("This document contains unsaved changes!\n"
|
|
|
|
"Do you want to save the changes before closing?"),this);
|
2004-05-07 17:31:21 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// close all files and ask to save changed ones
|
|
|
|
QucsDoc *Doc;
|
|
|
|
DocumentTab->setCurrentPage(0);
|
|
|
|
while ((Doc=getDoc()) != 0) {
|
|
|
|
if (Doc->DocChanged) {
|
|
|
|
if(notForAll) Result = m->exec();
|
|
|
|
switch(Result) {
|
|
|
|
case 1: if(!saveFile(Doc)) return false; // save button
|
|
|
|
break;
|
|
|
|
case 2: Result = 1; // save all button
|
|
|
|
notForAll = false;
|
|
|
|
if(!saveFile(Doc)) 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
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
delete Doc;
|
|
|
|
}
|
|
|
|
|
|
|
|
delete m;
|
|
|
|
switchEditMode(true); // set schematic edit mode
|
|
|
|
return true;
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// --------------------------------------------------------------
|
|
|
|
// Is called when another document is selected via the TabBar.
|
|
|
|
void QucsApp::slotChangeView(QWidget *w)
|
2004-08-25 19:46:13 +00:00
|
|
|
{
|
2006-03-28 06:10:52 +00:00
|
|
|
editText->setHidden(true); // disable text edit of component property
|
2004-08-25 19:46:13 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
QucsDoc *Doc;
|
2006-04-10 06:12:35 +00:00
|
|
|
if(w->inherits("QTextEdit")) {
|
|
|
|
TextDoc *d = (TextDoc*)w;
|
|
|
|
Doc = (QucsDoc*)d;
|
|
|
|
|
|
|
|
if(mainAccel->isEnabled())
|
|
|
|
switchSchematicDoc(false);
|
|
|
|
}
|
|
|
|
else {
|
2006-03-28 06:10:52 +00:00
|
|
|
Schematic *d = (Schematic*)w;
|
|
|
|
Doc = (QucsDoc*)d;
|
2004-08-25 19:46:13 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
if(mainAccel->isEnabled()) {
|
|
|
|
// which mode: schematic or symbol editor ?
|
|
|
|
if((CompChoose->count() > 1) == d->symbolMode)
|
|
|
|
changeSchematicSymbolMode(d);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
switchSchematicDoc(true);
|
|
|
|
changeSchematicSymbolMode(d);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Doc->becomeCurrent(true);
|
|
|
|
view->drawn = false;
|
|
|
|
|
|
|
|
if(!HierarchyHistory.isEmpty())
|
|
|
|
if(*(HierarchyHistory.getLast()) != "*") {
|
|
|
|
HierarchyHistory.clear(); // no subcircuit history anymore
|
|
|
|
popH->setEnabled(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------
|
|
|
|
// Changes to the next document in the TabBar.
|
|
|
|
void QucsApp::slotNextTab()
|
|
|
|
{
|
|
|
|
int No = DocumentTab->currentPageIndex() + 1;
|
|
|
|
if(No >= DocumentTab->count())
|
|
|
|
No = 0;
|
|
|
|
|
|
|
|
// make new document the current (calls "slotChangeView(int)" indirectly)
|
|
|
|
DocumentTab->setCurrentPage(No);
|
|
|
|
view->drawn = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------
|
|
|
|
void QucsApp::slotFileSettings()
|
|
|
|
{
|
|
|
|
editText->setHidden(true); // disable text edit of component property
|
|
|
|
|
2006-04-10 06:12:35 +00:00
|
|
|
QWidget *w = DocumentTab->currentPage();
|
|
|
|
if(w->inherits("QTextEdit")) {
|
|
|
|
DigiSettingsDialog *d = new DigiSettingsDialog((TextDoc*)w);
|
|
|
|
d->exec();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
SettingsDialog *d = new SettingsDialog((Schematic*)w);
|
|
|
|
d->exec();
|
|
|
|
}
|
2006-03-28 06:10:52 +00:00
|
|
|
view->drawn = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------
|
|
|
|
void QucsApp::slotApplSettings()
|
|
|
|
{
|
|
|
|
editText->setHidden(true); // disable text edit of component property
|
|
|
|
|
|
|
|
QucsSettingsDialog *d = new QucsSettingsDialog(this);
|
|
|
|
d->exec();
|
|
|
|
view->drawn = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// --------------------------------------------------------------
|
2006-05-05 06:00:05 +00:00
|
|
|
void QucsApp::updatePortNumber(QucsDoc *currDoc, int No)
|
2006-03-28 06:10:52 +00:00
|
|
|
{
|
|
|
|
if(No<0) return;
|
|
|
|
|
2006-05-05 06:00:05 +00:00
|
|
|
QString pathName = currDoc->DocName;
|
2006-03-28 06:10:52 +00:00
|
|
|
QFileInfo Info(pathName);
|
2006-05-05 06:00:05 +00:00
|
|
|
QString Model, File, Name = Info.fileName();
|
|
|
|
|
|
|
|
if(Info.extension() == "sch") {
|
|
|
|
Model = "Sub";
|
|
|
|
|
|
|
|
// enter new port number into ListView
|
|
|
|
QListViewItem *p;
|
|
|
|
for(p = ConSchematics->firstChild(); p!=0; p = p->nextSibling()) {
|
|
|
|
if(p->text(0) == Name) {
|
|
|
|
if(No == 0) p->setText(1,"");
|
|
|
|
else p->setText(1,QString::number(No)+tr("-port"));
|
|
|
|
break;
|
|
|
|
}
|
2006-03-28 06:10:52 +00:00
|
|
|
}
|
|
|
|
}
|
2006-05-05 06:00:05 +00:00
|
|
|
else
|
|
|
|
Model = "VHDL";
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
|
|
|
|
// update all occurencies of subcircuit in all open documents
|
|
|
|
No = 0;
|
2006-05-05 06:00:05 +00:00
|
|
|
QWidget *w;
|
2006-03-28 06:10:52 +00:00
|
|
|
Component *pc_tmp;
|
|
|
|
while((w=DocumentTab->page(No++)) != 0) {
|
2006-04-10 06:12:35 +00:00
|
|
|
if(w->inherits("QTextEdit")) continue;
|
2006-05-05 06:00:05 +00:00
|
|
|
|
|
|
|
// start from the last to omit re-appended components
|
2006-03-28 06:10:52 +00:00
|
|
|
Schematic *Doc = (Schematic*)w;
|
|
|
|
for(Component *pc=Doc->Components->last(); pc!=0; ) {
|
2006-05-05 06:00:05 +00:00
|
|
|
if(pc->Model == Model) {
|
2006-03-28 06:10:52 +00:00
|
|
|
File = pc->Props.getFirst()->Value;
|
|
|
|
if((File == pathName) || (File == Name)) {
|
|
|
|
pc_tmp = Doc->Components->prev();
|
|
|
|
Doc->recreateComponent(pc); // delete and re-append component
|
|
|
|
if(!pc_tmp) break;
|
|
|
|
Doc->Components->findRef(pc_tmp);
|
|
|
|
pc = Doc->Components->current();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pc = Doc->Components->prev();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// --------------------------------------------------------------
|
2006-07-03 06:02:08 +00:00
|
|
|
void QucsApp::printCurrentDocument(bool fitToPage)
|
2006-03-28 06:10:52 +00:00
|
|
|
{
|
|
|
|
statusBar()->message(tr("Printing..."));
|
|
|
|
editText->setHidden(true); // disable text edit of component property
|
|
|
|
|
2006-07-03 06:02:08 +00:00
|
|
|
if(DocumentTab->currentPage()->inherits("QTextEdit"))
|
|
|
|
Printer->setOrientation(QPrinter::Portrait);
|
|
|
|
else
|
|
|
|
Printer->setOrientation(QPrinter::Landscape);
|
|
|
|
|
2006-07-24 06:12:23 +00:00
|
|
|
if(Printer->setup(this)) { // printer dialog
|
|
|
|
|
|
|
|
QPainter Painter(Printer);
|
|
|
|
if(!Painter.device()) // valid device available ?
|
|
|
|
goto Error;
|
|
|
|
|
|
|
|
for(int z=Printer->numCopies(); z>0 ; z--) {
|
|
|
|
if(Printer->aborted())
|
|
|
|
break;
|
|
|
|
|
|
|
|
getDoc()->print(Printer, &Painter,
|
|
|
|
Printer->printRange() == QPrinter::AllPages, fitToPage);
|
|
|
|
if(z > 1)
|
|
|
|
if(!Printer->newPage())
|
|
|
|
goto Error;
|
|
|
|
}
|
|
|
|
}
|
2006-03-28 06:10:52 +00:00
|
|
|
|
|
|
|
statusBar()->message(tr("Ready."));
|
2006-07-24 06:12:23 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
Error:
|
|
|
|
statusBar()->message(tr("Printer Error."));
|
2006-03-28 06:10:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------
|
2006-07-03 06:02:08 +00:00
|
|
|
void QucsApp::slotFilePrint()
|
2006-03-28 06:10:52 +00:00
|
|
|
{
|
2006-07-03 06:02:08 +00:00
|
|
|
printCurrentDocument(false);
|
|
|
|
}
|
2006-03-28 06:10:52 +00:00
|
|
|
|
2006-07-03 06:02:08 +00:00
|
|
|
// --------------------------------------------------------------
|
|
|
|
// Fit printed content to page size.
|
|
|
|
void QucsApp::slotFilePrintFit()
|
|
|
|
{
|
|
|
|
printCurrentDocument(true);
|
2006-03-28 06:10:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------
|
|
|
|
// Exits the application.
|
|
|
|
void QucsApp::slotFileQuit()
|
|
|
|
{
|
|
|
|
statusBar()->message(tr("Exiting application..."));
|
|
|
|
editText->setHidden(true); // disable text edit of component property
|
|
|
|
|
|
|
|
int exit = QMessageBox::information(this,
|
|
|
|
tr("Quit..."), tr("Do you really want to quit?"),
|
|
|
|
tr("Yes"), tr("No"));
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2004-05-17 19:58:36 +00:00
|
|
|
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..."));
|
|
|
|
|
2006-05-18 06:08:50 +00:00
|
|
|
Schematic *Doc = (Schematic*)DocumentTab->currentPage();
|
|
|
|
if(Doc->inherits("QTextEdit")) {
|
|
|
|
((TextDoc*)Doc)->viewport()->setFocus();
|
|
|
|
((TextDoc*)Doc)->cut();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
editText->setHidden(true); // disable text edit of component property
|
2006-03-28 06:10:52 +00:00
|
|
|
QClipboard *cb = QApplication::clipboard(); // get system clipboard
|
|
|
|
|
|
|
|
QString s = Doc->copySelected(true);
|
2003-12-07 15:21:31 +00:00
|
|
|
if(!s.isEmpty()) {
|
|
|
|
cb->setText(s, QClipboard::Clipboard);
|
2006-03-28 06:10:52 +00:00
|
|
|
Doc->viewport()->update();
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
statusBar()->message(tr("Ready."));
|
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// --------------------------------------------------------------------
|
2003-12-07 15:21:31 +00:00
|
|
|
void QucsApp::slotEditCopy()
|
|
|
|
{
|
|
|
|
statusBar()->message(tr("Copying selection to clipboard..."));
|
|
|
|
|
2006-05-18 06:08:50 +00:00
|
|
|
Schematic *Doc = (Schematic*)DocumentTab->currentPage();
|
|
|
|
if(Doc->inherits("QTextEdit")) {
|
|
|
|
((TextDoc*)Doc)->viewport()->setFocus();
|
|
|
|
((TextDoc*)Doc)->copy();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
editText->setHidden(true); // disable text edit of component property
|
2006-03-28 06:10:52 +00:00
|
|
|
QClipboard *cb = QApplication::clipboard(); // get system clipboard
|
|
|
|
|
|
|
|
QString s = Doc->copySelected(false);
|
2003-12-07 15:21:31 +00:00
|
|
|
if(!s.isEmpty())
|
|
|
|
cb->setText(s, QClipboard::Clipboard);
|
|
|
|
|
|
|
|
statusBar()->message(tr("Ready."));
|
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +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()
|
|
|
|
{
|
2006-03-28 06:10:52 +00:00
|
|
|
editText->setHidden(true); // disable text edit of component property
|
2005-04-19 06:33:22 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
Schematic *Doc = (Schematic*)DocumentTab->currentPage();
|
|
|
|
Component *pc = Doc->searchSelSubcircuit();
|
2003-12-07 15:21:31 +00:00
|
|
|
if(pc == 0) return;
|
2004-08-07 10:48:45 +00:00
|
|
|
|
|
|
|
QString *ps = new QString("*");
|
2006-03-28 06:10:52 +00:00
|
|
|
HierarchyHistory.append(ps); // sign not to clear HierarchyHistory
|
2004-08-07 10:48:45 +00:00
|
|
|
|
2004-07-14 12:54:14 +00:00
|
|
|
QString s = QucsWorkDir.filePath(pc->Props.getFirst()->Value);
|
2006-03-28 06:10:52 +00:00
|
|
|
if(!gotoPage(s)) {
|
|
|
|
HierarchyHistory.remove();
|
|
|
|
return;
|
|
|
|
}
|
2003-12-07 15:21:31 +00:00
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// --------------------------------------------------------------------
|
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()
|
|
|
|
{
|
2006-03-28 06:10:52 +00:00
|
|
|
editText->setHidden(true); // disable text edit of component property
|
2005-04-19 06:33:22 +00:00
|
|
|
|
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());
|
2006-03-28 06:10:52 +00:00
|
|
|
*(HierarchyHistory.last()) = "*"; // sign not to clear HierarchyHistory
|
2004-08-07 10:48:45 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
if(!gotoPage(Doc)) {
|
|
|
|
*(HierarchyHistory.getLast()) = Doc;
|
|
|
|
return;
|
|
|
|
}
|
2004-05-07 17:31:21 +00:00
|
|
|
|
2003-12-07 15:21:31 +00:00
|
|
|
HierarchyHistory.remove();
|
2006-04-21 05:58:21 +00:00
|
|
|
if(HierarchyHistory.count() == 0)
|
|
|
|
popH->setEnabled(false);
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// --------------------------------------------------------------
|
2003-12-07 15:21:31 +00:00
|
|
|
void QucsApp::slotShowAll()
|
|
|
|
{
|
2006-03-28 06:10:52 +00:00
|
|
|
editText->setHidden(true); // disable text edit of component property
|
2006-04-18 06:03:52 +00:00
|
|
|
getDoc()->showAll();
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------
|
|
|
|
// Sets the scale factor to 1.
|
|
|
|
void QucsApp::slotShowOne()
|
|
|
|
{
|
2006-04-18 06:03:52 +00:00
|
|
|
editText->setHidden(true); // disable text edit of component property
|
|
|
|
getDoc()->showNoZoom();
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// -----------------------------------------------------------
|
2003-12-07 15:21:31 +00:00
|
|
|
void QucsApp::slotZoomOut()
|
|
|
|
{
|
2006-03-28 06:10:52 +00:00
|
|
|
editText->setHidden(true); // disable text edit of component property
|
2006-04-10 06:12:35 +00:00
|
|
|
getDoc()->zoom(0.7f);
|
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 simulate toolbar button is pressed.
|
|
|
|
void QucsApp::slotSimulate()
|
|
|
|
{
|
2006-03-28 06:10:52 +00:00
|
|
|
editText->setHidden(true); // disable text edit of component property
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2006-04-10 06:12:35 +00:00
|
|
|
QucsDoc *Doc;
|
|
|
|
QWidget *w = DocumentTab->currentPage();
|
|
|
|
if(w->inherits("QTextEdit")) {
|
|
|
|
Doc = (QucsDoc*)((TextDoc*)w);
|
|
|
|
if(Doc->SimTime.isEmpty()) {
|
|
|
|
DigiSettingsDialog *d = new DigiSettingsDialog((TextDoc*)Doc);
|
|
|
|
if(d->exec() == QDialog::Rejected)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
Doc = (QucsDoc*)((Schematic*)w);
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
if(Doc->DocName.isEmpty()) // if document 'untitled' ...
|
|
|
|
if(!saveAs()) return; // ... save schematic before
|
2005-07-04 06:07:17 +00:00
|
|
|
|
2006-04-18 06:03:52 +00:00
|
|
|
// Perhaps the document was modified from another program ?
|
|
|
|
if(Doc->lastSaved.isValid()) {
|
|
|
|
QFileInfo Info(Doc->DocName);
|
|
|
|
if(Doc->lastSaved < Info.lastModified()) {
|
|
|
|
int No = QMessageBox::warning(this, tr("Warning"),
|
|
|
|
tr("The document was modified by another program !") + '\n' +
|
|
|
|
tr("Do you want to reload or keep this version ?"),
|
|
|
|
tr("Reload"), tr("Keep it"));
|
|
|
|
if(No == 0)
|
|
|
|
Doc->load();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
slotResetWarnings();
|
2006-04-10 06:12:35 +00:00
|
|
|
SimMessage *sim = new SimMessage(w, 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*)));
|
2006-03-28 06:10:52 +00:00
|
|
|
connect(sim, SIGNAL(displayDataPage(QString&, QString&)),
|
|
|
|
this, SLOT(slotChangePage(QString&, 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 ?
|
2006-03-28 06:10:52 +00:00
|
|
|
slotShowWarnings();
|
|
|
|
|
|
|
|
int i=0;
|
2006-04-10 06:12:35 +00:00
|
|
|
QWidget *w; // search, if page is still open
|
|
|
|
while((w=DocumentTab->page(i++)) != 0)
|
|
|
|
if(w == sim->DocWidget)
|
2006-03-28 06:10:52 +00:00
|
|
|
break;
|
2005-06-23 06:06:40 +00:00
|
|
|
|
2005-10-31 06:52:45 +00:00
|
|
|
if(sim->showBias == 0) { // paint dc bias into schematic ?
|
2005-08-15 06:04:52 +00:00
|
|
|
sim->slotClose(); // close and delete simulation window
|
2006-04-10 06:12:35 +00:00
|
|
|
if(w) { // schematic still open ?
|
|
|
|
SweepDialog *Dia = new SweepDialog((Schematic*)sim->DocWidget);
|
2005-10-31 06:52:45 +00:00
|
|
|
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
|
2006-03-28 06:10:52 +00:00
|
|
|
slotChangePage(sim->DocName, sim->DataDisplay);
|
2005-08-15 06:04:52 +00:00
|
|
|
sim->slotClose(); // close and delete simulation window
|
|
|
|
}
|
2006-03-28 06:10:52 +00:00
|
|
|
else
|
2006-04-10 06:12:35 +00:00
|
|
|
if(w) if(!sim->DocWidget->inherits("QTextEdit"))
|
2006-03-28 06:10:52 +00:00
|
|
|
// load recent simulation data (if document is still open)
|
2006-04-10 06:12:35 +00:00
|
|
|
((Schematic*)sim->DocWidget)->reloadGraphs();
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2006-04-10 06:12:35 +00:00
|
|
|
if(!sim->DocWidget->inherits("QTextEdit"))
|
|
|
|
((Schematic*)sim->DocWidget)->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()
|
|
|
|
{
|
2006-03-28 06:10:52 +00:00
|
|
|
getDoc()->showBias = 0;
|
2005-08-15 06:04:52 +00:00
|
|
|
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.
|
2006-03-28 06:10:52 +00:00
|
|
|
void QucsApp::slotChangePage(QString& DocName, QString& DataDisplay)
|
2003-12-07 15:21:31 +00:00
|
|
|
{
|
2006-03-28 06:10:52 +00:00
|
|
|
if(DataDisplay.isEmpty()) return;
|
2004-06-26 07:05:47 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
QFileInfo Info(DocName);
|
|
|
|
QString Name = Info.dirPath() + QDir::separator() + DataDisplay;
|
2004-02-21 18:38:50 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
QWidget *w = DocumentTab->currentPage();
|
|
|
|
|
|
|
|
int z=0; // search, if page is already loaded
|
|
|
|
QucsDoc *d;
|
|
|
|
while((d=getDoc(z++)) != 0)
|
2006-03-01 09:13:44 +00:00
|
|
|
if(QDir::convertSeparators (d->DocName) == QDir::convertSeparators (Name))
|
|
|
|
break;
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
if(d)
|
|
|
|
DocumentTab->setCurrentPage(z-1);
|
|
|
|
else { // no open page found ?
|
2006-07-03 06:02:08 +00:00
|
|
|
if(DataDisplay.section('.',1).left(3) != "vhd")
|
2006-03-28 06:10:52 +00:00
|
|
|
d = new Schematic(this, Name);
|
|
|
|
else
|
|
|
|
d = new TextDoc(this, Name);
|
|
|
|
|
2004-08-14 06:40:55 +00:00
|
|
|
QFile file(Name);
|
2006-03-28 06:10:52 +00:00
|
|
|
if(file.open(IO_ReadOnly)) { // try to load document
|
|
|
|
file.close();
|
|
|
|
if(!d->load()) {
|
|
|
|
delete d;
|
|
|
|
view->drawn = false;
|
2003-12-07 15:21:31 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2006-03-28 06:10:52 +00:00
|
|
|
else {
|
|
|
|
if(file.open(IO_ReadWrite)) { // if document doesn't exist, create
|
|
|
|
new QListViewItem(ConDisplays, DataDisplay); // add new name
|
|
|
|
d->DataDisplay = Info.fileName();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
QMessageBox::critical(this, tr("Error"), tr("Cannot create ")+Name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
file.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
d->becomeCurrent(true);
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
2004-06-12 12:35:04 +00:00
|
|
|
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
if(DocumentTab->currentPage() == w) // if page not ...
|
2006-04-10 06:12:35 +00:00
|
|
|
if(!w->inherits("QTextEdit"))
|
2006-03-28 06:10:52 +00:00
|
|
|
((Schematic*)w)->reloadGraphs(); // ... changes, reload here !
|
2005-02-12 12:59:26 +00:00
|
|
|
|
2003-12-07 15:21:31 +00:00
|
|
|
TabView->setCurrentPage(2); // switch to "Component"-Tab
|
|
|
|
if(Name.right(4) == ".dpl") {
|
2006-03-28 06:10:52 +00:00
|
|
|
int i = sizeof(ComponentGroups)/sizeof(pInfoFunc) - 2;
|
|
|
|
CompChoose->setCurrentItem(i); // switch to diagrams
|
|
|
|
slotSetCompView(i);
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// -------------------------------------------------------------------
|
2004-08-14 06:40:55 +00:00
|
|
|
// Changes to the data display of current page.
|
|
|
|
void QucsApp::slotToPage()
|
|
|
|
{
|
2006-03-28 06:10:52 +00:00
|
|
|
QucsDoc *d = getDoc();
|
|
|
|
if(d->DataDisplay.isEmpty()) {
|
2004-08-14 06:40:55 +00:00
|
|
|
QMessageBox::critical(this, tr("Error"), tr("No page set !"));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
slotChangePage(d->DocName, d->DataDisplay);
|
2004-08-14 06:40:55 +00:00
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// -------------------------------------------------------------------
|
|
|
|
// Is called when a double-click is made in the content ListView.
|
2003-12-07 15:21:31 +00:00
|
|
|
void QucsApp::slotOpenContent(QListViewItem *item)
|
|
|
|
{
|
2006-03-28 06:10:52 +00:00
|
|
|
editText->setHidden(true); // disable text edit of component property
|
2005-04-19 06:33:22 +00:00
|
|
|
|
2003-12-07 15:21:31 +00:00
|
|
|
if(item == 0) return; // no item was double clicked
|
2006-04-18 06:03:52 +00:00
|
|
|
if(item->parent() == 0) return; // no document, but item "schematic", ...
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2005-11-28 07:17:35 +00:00
|
|
|
/*
|
2004-07-16 19:16:03 +00:00
|
|
|
QucsWorkDir.setPath(QucsHomeDir.path());
|
2005-03-01 08:50:13 +00:00
|
|
|
QString p = ProjName+"_prj";
|
|
|
|
if(!QucsWorkDir.cd(p)) {
|
2004-07-14 12:54:14 +00:00
|
|
|
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);
|
2004-07-14 12:54:14 +00:00
|
|
|
return;
|
2005-11-28 07:17:35 +00:00
|
|
|
}*/
|
2004-07-14 12:54:14 +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);
|
|
|
|
|
2006-07-03 06:02:08 +00:00
|
|
|
if((Suffix == "sch") || (Suffix == "dpl") || (Suffix.left(3) == "vhd")) {
|
2005-11-28 07:17:35 +00:00
|
|
|
gotoPage(Info.absFilePath());
|
|
|
|
|
2006-04-18 06:03:52 +00:00
|
|
|
if(item->text(1).isEmpty()) // is subcircuit ?
|
2006-07-03 06:02:08 +00:00
|
|
|
if(Suffix.left(3) != "vhd") return; // is VHDL subcircuit ?
|
2006-04-18 06:03:52 +00:00
|
|
|
|
|
|
|
select->blockSignals(true); // switch on the 'select' action ...
|
2006-03-28 06:10:52 +00:00
|
|
|
select->setOn(true);
|
|
|
|
select->blockSignals(false);
|
2006-04-18 06:03:52 +00:00
|
|
|
|
|
|
|
activeAction = select;
|
|
|
|
MouseMoveAction = 0;
|
|
|
|
MousePressAction = &MouseActions::MPressSelect;
|
|
|
|
MouseReleaseAction = &MouseActions::MReleaseSelect;
|
|
|
|
MouseDoubleClickAction = &MouseActions::MDoubleClickSelect;
|
2005-11-28 07:17:35 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(Suffix == "dat") {
|
2006-03-28 06:10:52 +00:00
|
|
|
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
|
|
|
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// File is no Qucs file, so go through list and search a user
|
|
|
|
// defined program to open it.
|
2005-11-28 07:17:35 +00:00
|
|
|
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.
|
2006-03-28 06:10:52 +00:00
|
|
|
editFile(Info.absFilePath()); // open datasets with text editor
|
2005-06-23 06:06:40 +00:00
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +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)
|
|
|
|
{
|
2006-03-28 06:10:52 +00:00
|
|
|
editText->setHidden(true); // disable text edit of component property
|
2005-04-19 06:33:22 +00:00
|
|
|
|
2003-12-07 15:21:31 +00:00
|
|
|
if(item == 0) { // mouse button pressed not over an item ?
|
|
|
|
Content->clearSelection(); // deselect component in ListView
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
|
2006-04-18 06:03:52 +00:00
|
|
|
bool isVHDL = true;
|
2003-12-07 15:21:31 +00:00
|
|
|
if(item->parent() == 0) return;
|
2006-04-18 06:03:52 +00:00
|
|
|
if(item->parent()->text(0) == tr("Schematics")) {
|
|
|
|
if(item->text(1).isEmpty())
|
|
|
|
return; // return, if not a subcircuit
|
|
|
|
isVHDL = false;
|
|
|
|
}
|
|
|
|
else if(item->parent()->text(0) != tr("VHDL"))
|
|
|
|
return;
|
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;
|
|
|
|
|
2006-04-18 06:03:52 +00:00
|
|
|
Component *Comp;
|
|
|
|
if(isVHDL)
|
|
|
|
Comp = new VHDL_File();
|
|
|
|
else
|
|
|
|
Comp = new Subcircuit();
|
2005-06-23 06:06:40 +00:00
|
|
|
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
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
if(view->drawn)
|
|
|
|
((QScrollView*)DocumentTab->currentPage())->viewport()->update();
|
2003-12-07 15:21:31 +00:00
|
|
|
view->drawn = false;
|
2006-03-28 06:10:52 +00:00
|
|
|
MouseMoveAction = &MouseActions::MMoveElement;
|
|
|
|
MousePressAction = &MouseActions::MPressElement;
|
|
|
|
MouseReleaseAction = 0;
|
|
|
|
MouseDoubleClickAction = 0;
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
2004-06-12 12:35:04 +00:00
|
|
|
|
2006-07-31 06:04:54 +00:00
|
|
|
// ---------------------------------------------------------
|
|
|
|
// Is called when one of the Content ListView parents was expanded
|
|
|
|
// to show the files. It re-reads all files.
|
|
|
|
void QucsApp::slotExpandContentList(QListViewItem*)
|
|
|
|
{
|
|
|
|
readProjectFiles();
|
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// ---------------------------------------------------------
|
2006-04-28 06:04:44 +00:00
|
|
|
// This function is called if the document type changes, i.e.
|
|
|
|
// from schematic to text document or vice versa.
|
2006-03-28 06:10:52 +00:00
|
|
|
void QucsApp::switchSchematicDoc(bool SchematicMode)
|
|
|
|
{
|
|
|
|
mainAccel->setEnabled(SchematicMode);
|
|
|
|
|
2006-04-10 06:12:35 +00:00
|
|
|
if(!SchematicMode) {
|
|
|
|
if(activeAction) {
|
|
|
|
activeAction->blockSignals(true); // do not call toggle slot
|
|
|
|
activeAction->setOn(false); // set last toolbar button off
|
|
|
|
activeAction->blockSignals(false);
|
|
|
|
}
|
|
|
|
activeAction = select;
|
2006-04-28 06:04:44 +00:00
|
|
|
select->blockSignals(true);
|
2006-03-28 06:10:52 +00:00
|
|
|
select->setOn(true);
|
2006-04-28 06:04:44 +00:00
|
|
|
select->blockSignals(false);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
MouseMoveAction = 0;
|
|
|
|
MousePressAction = &MouseActions::MPressSelect;
|
|
|
|
MouseReleaseAction = &MouseActions::MReleaseSelect;
|
|
|
|
MouseDoubleClickAction = &MouseActions::MDoubleClickSelect;
|
2006-04-10 06:12:35 +00:00
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
symEdit->setEnabled(SchematicMode);
|
2006-05-22 06:01:55 +00:00
|
|
|
selectMarker->setEnabled(SchematicMode);
|
2006-03-28 06:10:52 +00:00
|
|
|
alignTop->setEnabled(SchematicMode);
|
|
|
|
alignBottom->setEnabled(SchematicMode);
|
|
|
|
alignLeft->setEnabled(SchematicMode);
|
|
|
|
alignRight->setEnabled(SchematicMode);
|
|
|
|
distrHor->setEnabled(SchematicMode);
|
|
|
|
distrVert->setEnabled(SchematicMode);
|
|
|
|
onGrid->setEnabled(SchematicMode);
|
|
|
|
moveText->setEnabled(SchematicMode);
|
2006-07-03 06:02:08 +00:00
|
|
|
filePrintFit->setEnabled(SchematicMode);
|
2006-04-10 06:12:35 +00:00
|
|
|
editFind->setEnabled(!SchematicMode);
|
|
|
|
editFindAgain->setEnabled(!SchematicMode);
|
2006-03-28 06:10:52 +00:00
|
|
|
editRotate->setEnabled(SchematicMode);
|
|
|
|
editMirror->setEnabled(SchematicMode);
|
|
|
|
editMirrorY->setEnabled(SchematicMode);
|
|
|
|
intoH->setEnabled(SchematicMode);
|
2006-04-18 06:03:52 +00:00
|
|
|
dcbias->setEnabled(SchematicMode);
|
2006-03-28 06:10:52 +00:00
|
|
|
insWire->setEnabled(SchematicMode);
|
|
|
|
insLabel->setEnabled(SchematicMode);
|
2006-04-18 06:03:52 +00:00
|
|
|
insPort->setEnabled(SchematicMode);
|
|
|
|
insGround->setEnabled(SchematicMode);
|
|
|
|
insEquation->setEnabled(SchematicMode);
|
|
|
|
insEntity->setEnabled(!SchematicMode);
|
2006-03-28 06:10:52 +00:00
|
|
|
setMarker->setEnabled(SchematicMode);
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------
|
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
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
editActivate->setEnabled(SchematicMode);
|
|
|
|
changeProps->setEnabled(SchematicMode);
|
|
|
|
insEquation->setEnabled(SchematicMode);
|
|
|
|
insGround->setEnabled(SchematicMode);
|
|
|
|
insPort->setEnabled(SchematicMode);
|
|
|
|
insWire->setEnabled(SchematicMode);
|
|
|
|
insLabel->setEnabled(SchematicMode);
|
|
|
|
setMarker->setEnabled(SchematicMode);
|
2006-05-22 06:01:55 +00:00
|
|
|
selectMarker->setEnabled(SchematicMode);
|
2004-09-11 16:55:12 +00:00
|
|
|
simulate->setEnabled(SchematicMode);
|
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// ---------------------------------------------------------
|
|
|
|
void QucsApp::changeSchematicSymbolMode(Schematic *Doc)
|
2004-09-11 16:55:12 +00:00
|
|
|
{
|
2006-03-28 06:10:52 +00:00
|
|
|
if(Doc->symbolMode) {
|
2004-09-18 17:14:23 +00:00
|
|
|
// go into select modus to avoid placing a forbidden element
|
2006-03-28 06:10:52 +00:00
|
|
|
select->setOn(true);
|
2004-09-18 17:14:23 +00:00
|
|
|
|
2004-09-11 16:55:12 +00:00
|
|
|
switchEditMode(false);
|
|
|
|
}
|
2006-03-28 06:10:52 +00:00
|
|
|
else
|
|
|
|
switchEditMode(true);
|
2004-09-18 09:46:19 +00:00
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +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()
|
|
|
|
{
|
2006-03-28 06:10:52 +00:00
|
|
|
editText->setHidden(true); // disable text edit of component property
|
2005-04-19 06:33:22 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
Schematic *Doc = (Schematic*)DocumentTab->currentPage();
|
|
|
|
Doc->switchPaintMode(); // twist the view coordinates
|
|
|
|
changeSchematicSymbolMode(Doc);
|
|
|
|
Doc->becomeCurrent(true);
|
2004-09-18 09:46:19 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
Doc->viewport()->update();
|
2004-09-18 09:46:19 +00:00
|
|
|
view->drawn = false;
|
2004-09-11 16:55:12 +00:00
|
|
|
}
|
2006-03-28 06:10:52 +00:00
|
|
|
|
|
|
|
// -----------------------------------------------------------
|
|
|
|
void QucsApp::slotPowerMatching()
|
|
|
|
{
|
|
|
|
if(!view->focusElement) return;
|
|
|
|
if(view->focusElement->Type != isMarker) return;
|
|
|
|
Marker *pm = (Marker*)view->focusElement;
|
|
|
|
|
|
|
|
// double Z0 = 50.0;
|
|
|
|
QString Var = pm->pGraph->Var;
|
|
|
|
double Imag = pm->VarPos[pm->nVarPos+1];
|
|
|
|
if(Var == "Sopt") // noise matching ?
|
|
|
|
Imag *= -1.0;
|
|
|
|
|
|
|
|
MatchDialog *Dia = new MatchDialog(this);
|
|
|
|
Dia->TwoCheck->setChecked(false);
|
|
|
|
Dia->TwoCheck->setEnabled(false);
|
|
|
|
// Dia->Ref1Edit->setText(QString::number(Z0));
|
|
|
|
Dia->S11magEdit->setText(QString::number(pm->VarPos[pm->nVarPos]));
|
|
|
|
Dia->S11degEdit->setText(QString::number(Imag));
|
|
|
|
Dia->setFrequency(pm->VarPos[0]);
|
|
|
|
|
|
|
|
slotToPage();
|
|
|
|
if(Dia->exec() != QDialog::Accepted)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------
|
|
|
|
void QucsApp::slot2PortMatching()
|
|
|
|
{
|
|
|
|
if(!view->focusElement) return;
|
|
|
|
if(view->focusElement->Type != isMarker) return;
|
|
|
|
Marker *pm = (Marker*)view->focusElement;
|
|
|
|
|
|
|
|
QString DataSet;
|
|
|
|
Schematic *Doc = (Schematic*)DocumentTab->currentPage();
|
|
|
|
int z = pm->pGraph->Var.find(':');
|
|
|
|
if(z <= 0) DataSet = Doc->DataSet;
|
|
|
|
else DataSet = pm->pGraph->Var.mid(z+1);
|
|
|
|
double Freq = pm->VarPos[0];
|
|
|
|
|
|
|
|
QFileInfo Info(Doc->DocName);
|
|
|
|
DataSet = Info.dirPath()+QDir::separator()+DataSet;
|
|
|
|
|
|
|
|
Diagram *Diag = new Diagram();
|
|
|
|
|
|
|
|
Graph *pg = new Graph("S[1,1]");
|
|
|
|
Diag->Graphs.append(pg);
|
|
|
|
if(!Diag->loadVarData(DataSet, pg)) {
|
|
|
|
QMessageBox::critical(0, tr("Error"), tr("Could not load S[1,1]."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
pg = new Graph("S[1,2]");
|
|
|
|
Diag->Graphs.append(pg);
|
|
|
|
if(!Diag->loadVarData(DataSet, pg)) {
|
|
|
|
QMessageBox::critical(0, tr("Error"), tr("Could not load S[1,2]."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
pg = new Graph("S[2,1]");
|
|
|
|
Diag->Graphs.append(pg);
|
|
|
|
if(!Diag->loadVarData(DataSet, pg)) {
|
|
|
|
QMessageBox::critical(0, tr("Error"), tr("Could not load S[2,1]."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
pg = new Graph("S[2,2]");
|
|
|
|
Diag->Graphs.append(pg);
|
|
|
|
if(!Diag->loadVarData(DataSet, pg)) {
|
|
|
|
QMessageBox::critical(0, tr("Error"), tr("Could not load S[2,2]."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
DataX *Data = Diag->Graphs.getFirst()->cPointsX.first();
|
|
|
|
if(Data->Var != "frequency") {
|
|
|
|
QMessageBox::critical(0, tr("Error"), tr("Wrong dependency!"));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
double *Value = Data->Points;
|
|
|
|
// search for values for chosen frequency
|
|
|
|
for(z=0; z<Data->count; z++)
|
|
|
|
if(*(Value++) == Freq) break;
|
|
|
|
|
|
|
|
// get S-parameters
|
|
|
|
double S11real = *(Diag->Graphs.first()->cPointsY + 2*z);
|
|
|
|
double S11imag = *(Diag->Graphs.current()->cPointsY + 2*z + 1);
|
|
|
|
double S12real = *(Diag->Graphs.next()->cPointsY + 2*z);
|
|
|
|
double S12imag = *(Diag->Graphs.current()->cPointsY + 2*z + 1);
|
|
|
|
double S21real = *(Diag->Graphs.next()->cPointsY + 2*z);
|
|
|
|
double S21imag = *(Diag->Graphs.current()->cPointsY + 2*z + 1);
|
|
|
|
double S22real = *(Diag->Graphs.next()->cPointsY + 2*z);
|
|
|
|
double S22imag = *(Diag->Graphs.current()->cPointsY + 2*z + 1);
|
|
|
|
|
|
|
|
delete Diag;
|
|
|
|
|
|
|
|
MatchDialog *Dia = new MatchDialog(this);
|
|
|
|
Dia->TwoCheck->setEnabled(false);
|
|
|
|
Dia->setFrequency(Freq);
|
|
|
|
Dia->S11magEdit->setText(QString::number(S11real));
|
|
|
|
Dia->S11degEdit->setText(QString::number(S11imag));
|
|
|
|
Dia->S12magEdit->setText(QString::number(S12real));
|
|
|
|
Dia->S12degEdit->setText(QString::number(S12imag));
|
|
|
|
Dia->S21magEdit->setText(QString::number(S21real));
|
|
|
|
Dia->S21degEdit->setText(QString::number(S21imag));
|
|
|
|
Dia->S22magEdit->setText(QString::number(S22real));
|
|
|
|
Dia->S22degEdit->setText(QString::number(S22imag));
|
|
|
|
|
|
|
|
slotToPage();
|
|
|
|
if(Dia->exec() != QDialog::Accepted)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------
|
|
|
|
// Is called if the "edit" action is clicked on right mouse button menu.
|
|
|
|
void QucsApp::slotEditElement()
|
|
|
|
{
|
|
|
|
if(view->focusMEvent)
|
|
|
|
view->editElement((Schematic*)DocumentTab->currentPage(), view->focusMEvent);
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------
|
|
|
|
// Hides the edit for component property. Called e.g. if QLineEdit
|
|
|
|
// looses the focus.
|
|
|
|
void QucsApp::slotHideEdit()
|
|
|
|
{
|
|
|
|
editText->setHidden(true);
|
|
|
|
}
|