qucs_s/qucs/qucs.cpp

2119 lines
64 KiB
C++
Raw Normal View History

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
#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 <qmessagebox.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>
2003-12-07 15:21:31 +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"
#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"
#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-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
{
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")+" (*)";
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();
viewToolBar->setOn(true);
initStatusBar();
viewStatusBar->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
2004-10-16 20:57:38 +00:00
Printer = new QPrinter(QPrinter::PrinterResolution);
2006-04-10 06:12:35 +00:00
// Printer->setOrientation(QPrinter::Landscape);
Printer->setOptionEnabled(QPrinter::PrintPageRange, false);
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()
{
// set application icon
setIcon (QPixmap(QucsSettings.BitmapDir + "big.qucs.xpm"));
2006-03-28 06:10:52 +00:00
2004-05-07 17:31:21 +00:00
QVBox *all = new QVBox(this); // only to fill the entire view area
2003-12-07 15:21:31 +00:00
QSplitter *Hsplit = new QSplitter(QSplitter::Horizontal, all);
2006-03-28 06:10:52 +00:00
TabView = new QTabWidget(Hsplit); // tabs on the left side
DocumentTab = new QTabWidget(Hsplit); // tab on the right side
connect(DocumentTab,
SIGNAL(currentChanged(QWidget*)), SLOT(slotChangeView(QWidget*)));
2003-12-07 15:21:31 +00:00
Hsplit->setResizeMode(TabView, QSplitter::KeepSize);
setCentralWidget(all);
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()));
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);
TabView->addTab(ProjGroup, tr("Projects"));
2004-05-07 17:31:21 +00:00
TabView->setTabToolTip(TabView->page(0),
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();
2003-12-07 15:21:31 +00:00
TabView->addTab(Content,tr("Content"));
2006-03-28 06:10:52 +00:00
TabView->setTabToolTip(TabView->page(1), 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*)));
2003-12-07 15:21:31 +00:00
// ----------------------------------------------------------
// "Component Tab" of the left QTabWidget
QVBox *CompGroup = new QVBox(this);
CompChoose = new QComboBox(CompGroup);
2005-09-12 12:01:40 +00:00
CompComps = new myIconView(CompGroup);
2003-12-07 15:21:31 +00:00
TabView->addTab(CompGroup,tr("Components"));
2003-12-26 16:31:25 +00:00
TabView->setTabToolTip(TabView->page(2), tr("components and diagrams"));
2004-09-11 16:55:12 +00:00
fillComboBox(true);
2003-12-07 15:21:31 +00:00
slotSetCompView(0);
connect(CompChoose, SIGNAL(activated(int)), SLOT(slotSetCompView(int)));
2004-05-07 17:31:21 +00:00
connect(CompComps, SIGNAL(clicked(QIconViewItem*)),
SLOT(slotSelectComponent(QIconViewItem*)));
2003-12-07 15:21:31 +00:00
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,
&OpAmp::info, 0};
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,
&D_FlipFlop::info, &JK_FlipFlop::info, 0};
pInfoFunc Simulations[] =
{&DC_Sim::info, &TR_Sim::info, &AC_Sim::info, &SP_Sim::info,
&HB_Sim::info, &Param_Sweep::info, &Digi_Sim::info, 0};
pInfoFunc FileComponents[] =
{&SpiceFile::info, &SParamFile::info1, &SParamFile::info2,
&SParamFile::info, 0};
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)
((QScrollView*)DocumentTab->currentPage())->repaint(); // not update() !!!
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;
if(Infos) view->selElem = (*Infos) (Dummy1, Dummy2, true);
}
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;
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));
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");
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-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);
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";
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;
}
// 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;
}
}
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()
{
QDir ProjDir(QDir::homeDirPath());
if(!ProjDir.cd(".qucs")) // work directory exists ?
if(!ProjDir.mkdir(".qucs")) { // no, then create it
2004-05-07 17:31:21 +00:00
QMessageBox::warning(this, tr("Warning"),
tr("Cannot create work directory !"));
2004-02-21 18:38:50 +00:00
return;
}
ProjDir.cd(".qucs");
2003-12-07 15:21:31 +00:00
2004-05-07 17:31:21 +00:00
// get all directories
QStringList PrDirs = ProjDir.entryList("*", QDir::Dirs, QDir::Name);
2003-12-07 15:21:31 +00:00
PrDirs.pop_front(); // delete "." from list
PrDirs.pop_front(); // delete ".." from list
Projects->clear();
QStringList::iterator it;
2004-05-07 17:31:21 +00:00
// inserts all project directories
for(it = PrDirs.begin(); it != PrDirs.end(); it++)
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
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
QString s = PACKAGE_VERSION;
s.remove('.');
Line = Line.mid(16, Line.length()-17);
Line.remove('.');
if(Line > s) { // wrong version number ? (only backward compatible)
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();
s = Line.section(' ',0,0); // component type
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()
{
initContentListView();
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(),
QString::number(n)+tr("-port"));
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());
else if(Str == "vhdl")
new QListViewItem(ConSources, (*it).ascii());
else
new QListViewItem(ConOthers, (*it).ascii());
}
Content->firstChild()->setOpen(true); // show schematics
2004-06-16 17:41:33 +00:00
}
2006-03-28 06:10:52 +00:00
// ----------------------------------------------------------
// Opens an existing project.
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
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");
OpenProject(d->selectedFile(), s);
}
// ----------------------------------------------------------
// 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-03-28 06:10:52 +00:00
OpenProject(QucsHomeDir.filePath(item->text()+"_prj"), item->text());
}
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
// ----------------------------------------------------------
bool QucsApp::DeleteProject(const QString& Path, const QString& Name)
{
editText->setHidden(true); // disable text edit of component property
if(Name == ProjName) {
QMessageBox::information(this, tr("Info"),
tr("Cannot delete an open project !"));
return false;
}
// first ask, if really delete project ?
if(QMessageBox::warning(this, tr("Warning"),
tr("This will destroy all the project files permanently ! Continue ?"),
tr("&Yes"), tr("&No"), 0,1,1)) return false;
QDir projDir = QDir(Path);
QStringList ProjFiles = projDir.entryList("*", QDir::Files); // all files
// removes every file, remove("*") does not work
QStringList::iterator it;
for(it = ProjFiles.begin(); it != ProjFiles.end(); it++) {
if(!projDir.remove(*it)) {
QMessageBox::information(this, tr("Info"),
tr("Cannot remove project file: ")+(*it));
return false;
}
}
projDir.cdUp(); // leave project directory for deleting
if(!projDir.rmdir(Name+"_prj")) {
QMessageBox::information(this, tr("Info"),
tr("Cannot remove project directory !"));
return false;
}
return true;
}
// ----------------------------------------------------------
// Is called, when "Delete Project" menu is 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
DeleteProject(d->selectedFile(), s);
readProjects(); // re-reads all projects and inserts them into the ListBox
}
// ----------------------------------------------------------
// Is called, when "Delete Project" button is pressed.
void QucsApp::slotProjDelButt()
{
QListBoxItem *item = Projects->selectedItem();
if(!item) {
QMessageBox::information(this, tr("Info"),
tr("No project is selected !"));
return;
}
if(!DeleteProject(QucsHomeDir.filePath(item->text()+"_prj"),
item->text())) return;
Projects->removeItem(Projects->currentItem()); // remove from project list
}
// ################################################################
// ##### 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);
if(Info.extension(false) == "vhdl")
d = new TextDoc(this, Name);
else
d = new Schematic(this, Name);
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
if(DocumentTab->count() == 2)
if(getDoc(0)->DocName.isEmpty())
if(!getDoc(0)->DocChanged)
delete DocumentTab->page(0);
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;
updatePortNumber(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 ?
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);
else if(Info.extension(false) == "vhdl")
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;
updatePortNumber(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);
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;
}
// --------------------------------------------------------------
void QucsApp::updatePortNumber(int No)
{
if(No<0) return;
QWidget *w = DocumentTab->currentPage();
2006-04-10 06:12:35 +00:00
if(w->inherits("QTextEdit")) return;
2006-03-28 06:10:52 +00:00
QString pathName = ((Schematic*)w)->DocName;
QFileInfo Info(pathName);
QString File, Name = Info.fileName();
// 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;
}
}
if(No == 0) return;
// update all occurencies of subcircuit in all open documents
No = 0;
Component *pc_tmp;
while((w=DocumentTab->page(No++)) != 0) {
2006-04-10 06:12:35 +00:00
if(w->inherits("QTextEdit")) continue;
2006-03-28 06:10:52 +00:00
// start from the last to avoid re-appended components
Schematic *Doc = (Schematic*)w;
for(Component *pc=Doc->Components->last(); pc!=0; ) {
if(pc->Model == "Sub") {
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();
}
}
}
// --------------------------------------------------------------
void QucsApp::slotFilePrint()
{
statusBar()->message(tr("Printing..."));
editText->setHidden(true); // disable text edit of component property
2006-04-10 06:12:35 +00:00
if(Printer->setup(this)) // printer dialog
getDoc()->print(Printer, true);
2006-03-28 06:10:52 +00:00
statusBar()->message(tr("Ready."));
}
// --------------------------------------------------------------
void QucsApp::slotFilePrintSelected()
{
statusBar()->message(tr("Printing selected..."));
editText->setHidden(true); // disable text edit of component property
2006-04-10 06:12:35 +00:00
if(Printer->setup(this)) // printer dialog
getDoc()->print(Printer, false);
2006-03-28 06:10:52 +00:00
statusBar()->message(tr("Ready."));
}
// --------------------------------------------------------------------
// 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-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
QClipboard *cb = QApplication::clipboard(); // get system clipboard
Schematic *Doc = (Schematic*)DocumentTab->currentPage();
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-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
QClipboard *cb = QApplication::clipboard(); // get system clipboard
Schematic *Doc = (Schematic*)DocumentTab->currentPage();
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
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();
if(HierarchyHistory.count() == 0) popH->setEnabled(false);
}
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
2005-04-19 06:33:22 +00:00
2006-03-28 06:10:52 +00:00
Schematic *Doc = (Schematic*)DocumentTab->currentPage();
int x1 = Doc->UsedX1;
int y1 = Doc->UsedY1;
int x2 = Doc->UsedX2;
int y2 = Doc->UsedY2;
2004-03-28 19:51:04 +00:00
2005-11-07 07:04:50 +00:00
if(x1 == INT_MAX) return;
if(y1 == INT_MAX) return;
if(x2 == INT_MIN) return;
if(y2 == INT_MIN) return;
2003-12-07 15:21:31 +00:00
x1 -= 40; y1 -= 40;
x2 += 40; y2 += 40;
2004-03-28 19:51:04 +00:00
2006-03-28 06:10:52 +00:00
float xScale = float(Doc->visibleWidth()) / float(x2-x1);
float yScale = float(Doc->visibleHeight()) / float(y2-y1);
2003-12-07 15:21:31 +00:00
if(xScale > yScale) xScale = yScale;
2006-03-28 06:10:52 +00:00
xScale /= Doc->Scale;
2003-12-07 15:21:31 +00:00
2006-03-28 06:10:52 +00:00
Doc->ViewX1 = x1;
Doc->ViewY1 = y1;
Doc->ViewX2 = x2;
Doc->ViewY2 = y2;
Doc->zoom(xScale);
2003-12-07 15:21:31 +00:00
}
// -----------------------------------------------------------
// Sets the scale factor to 1.
void QucsApp::slotShowOne()
{
2006-04-10 06:12:35 +00:00
QWidget *w = DocumentTab->currentPage();
if(w->inherits("QTextEdit")) {
TextDoc *Doc = (TextDoc*)w;
Doc->Scale = (float)QucsSettings.font.pointSize();
Doc->zoomTo(QucsSettings.font.pointSize());
}
else {
2003-12-07 15:21:31 +00:00
2006-04-10 06:12:35 +00:00
editText->setHidden(true); // disable text edit of component property
Schematic *Doc = (Schematic*)w;
2004-05-16 15:02:50 +00:00
2006-04-10 06:12:35 +00:00
Doc->Scale = 1.0;
2004-03-28 19:51:04 +00:00
2006-04-10 06:12:35 +00:00
int x1 = Doc->UsedX1;
int y1 = Doc->UsedY1;
int x2 = Doc->UsedX2;
int y2 = Doc->UsedY2;
2003-12-07 15:21:31 +00:00
2006-04-10 06:12:35 +00:00
// view->Docs.current()->sizeOfAll(x1, y1, x2, y2);
if(x2==0) if(y2==0) if(x1==0) if(y1==0) x2 = y2 = 800;
Doc->ViewX1 = x1-40;
Doc->ViewY1 = y1-40;
Doc->ViewX2 = x2+40;
Doc->ViewY2 = y2+40;
Doc->resizeContents(x2-x1+80, y2-y1+80);
Doc->viewport()->update();
view->drawn = 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::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-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)
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 ?
if(DataDisplay.section('.',1) != "vhdl")
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
2004-04-24 11:52:43 +00:00
if(item->parent() == 0) return; // no component, but item "schematic", ...
2003-12-07 15:21:31 +00:00
2005-11-28 07:17:35 +00:00
/*
QucsWorkDir.setPath(QucsHomeDir.path());
QString p = ProjName+"_prj";
if(!QucsWorkDir.cd(p)) {
QMessageBox::critical(this, tr("Error"),
2005-11-28 07:17:35 +00:00
tr("Cannot access project directory: ")+
2005-09-12 12:01:40 +00:00
QucsWorkDir.path()+QDir::separator()+p);
return;
2005-11-28 07:17:35 +00:00
}*/
2004-10-31 17:55:57 +00:00
QFileInfo Info(QucsWorkDir.filePath(item->text(0)));
2005-11-28 07:17:35 +00:00
QString Suffix = Info.extension(false);
2006-03-28 06:10:52 +00:00
if((Suffix == "sch") || (Suffix == "dpl") || (Suffix == "vhdl")) {
2005-11-28 07:17:35 +00:00
gotoPage(Info.absFilePath());
if(item->text(1).isEmpty()) return; // is subcircuit ?
// switch on the 'select' action
2006-03-28 06:10:52 +00:00
select->blockSignals(true);
select->setOn(true);
select->blockSignals(false);
slotSelect(true);
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
2003-12-07 15:21:31 +00:00
if(item->parent() == 0) return;
2004-05-07 17:31:21 +00:00
if(item->parent()->text(0) != tr("Schematics"))
return; // return, if not clicked on schematic
2004-08-07 10:48:45 +00:00
if(item->text(1).isEmpty()) return; // return, if not a subcircuit
2003-12-07 15:21:31 +00:00
2004-05-07 17:31:21 +00:00
// delete previously selected elements
2005-06-23 06:06:40 +00:00
if(view->selElem != 0) delete view->selElem;
view->selElem = 0;
2003-12-07 15:21:31 +00:00
// toggle last toolbar button off
if(activeAction) {
activeAction->blockSignals(true); // do not call toggle slot
activeAction->setOn(false); // set last toolbar button off
activeAction->blockSignals(false);
}
activeAction = 0;
2005-06-23 06:06:40 +00:00
Component *Comp = new Subcircuit();
Comp->Props.first()->Value = item->text(0);
2005-10-24 06:10:35 +00:00
Comp->recreate(0);
2005-06-23 06:06:40 +00:00
view->selElem = Comp;
2003-12-07 15:21:31 +00:00
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-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-03-28 06:10:52 +00:00
select->setOn(true);
2006-04-10 06:12:35 +00:00
}
2006-03-28 06:10:52 +00:00
symEdit->setEnabled(SchematicMode);
alignTop->setEnabled(SchematicMode);
alignBottom->setEnabled(SchematicMode);
alignLeft->setEnabled(SchematicMode);
alignRight->setEnabled(SchematicMode);
distrHor->setEnabled(SchematicMode);
distrVert->setEnabled(SchematicMode);
onGrid->setEnabled(SchematicMode);
moveText->setEnabled(SchematicMode);
changeProps->setEnabled(SchematicMode);
magAll->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);
popH->setEnabled(SchematicMode);
insEquation->setEnabled(SchematicMode);
insGround->setEnabled(SchematicMode);
insPort->setEnabled(SchematicMode);
insWire->setEnabled(SchematicMode);
insLabel->setEnabled(SchematicMode);
dcbias->setEnabled(SchematicMode);
setMarker->setEnabled(SchematicMode);
showNet->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);
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
2004-09-19 16:38:59 +00:00
// This can only be true when switching to the symbol the first time.
2006-03-28 06:10:52 +00:00
if(Doc->UndoSymbol.isEmpty()) {
Doc->setChanged(false, true); // "not changed" state, but put on undo stack
Doc->UndoSymbol.current()->at(1) = 'i'; // state of being unchanged
2004-09-19 16:38:59 +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);
}