2003-12-07 15:21:31 +00:00
|
|
|
|
/***************************************************************************
|
|
|
|
|
qucs.cpp - description
|
|
|
|
|
-------------------
|
|
|
|
|
begin : Thu Aug 28 18:17:41 CEST 2003
|
|
|
|
|
copyright : (C) 2003 by Michael Margraf
|
|
|
|
|
email : margraf@mwt.ee.tu-berlin.de
|
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
|
* *
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
|
|
|
* it under the terms of the GNU General Public License as published by *
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
|
|
|
* (at your option) any later version. *
|
|
|
|
|
* *
|
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
# include <config.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include "qucs.h"
|
|
|
|
|
#include "qucsview.h"
|
|
|
|
|
#include "wire.h"
|
2003-12-26 16:31:25 +00:00
|
|
|
|
#include "paintings/paintings.h"
|
2004-04-10 11:29:03 +00:00
|
|
|
|
#include "diagrams/diagrams.h"
|
|
|
|
|
#include "dialogs/messagebox.h"
|
|
|
|
|
#include "dialogs/helpdialog.h"
|
|
|
|
|
#include "dialogs/newprojdialog.h"
|
|
|
|
|
#include "dialogs/fileshowdialog.h"
|
|
|
|
|
#include "dialogs/settingsdialog.h"
|
2003-12-07 15:21:31 +00:00
|
|
|
|
|
|
|
|
|
#include <qaccel.h>
|
|
|
|
|
#include <qimage.h>
|
|
|
|
|
#include <qsplitter.h>
|
|
|
|
|
#include <qvbox.h>
|
|
|
|
|
#include <qhbox.h>
|
|
|
|
|
#include <qlabel.h>
|
|
|
|
|
#include <qmessagebox.h>
|
|
|
|
|
#include <qdir.h>
|
|
|
|
|
#include <qpainter.h>
|
|
|
|
|
#include <qfiledialog.h>
|
2004-02-21 18:38:50 +00:00
|
|
|
|
#include <qinputdialog.h>
|
2003-12-07 15:21:31 +00:00
|
|
|
|
#include <qclipboard.h>
|
|
|
|
|
|
2004-04-10 11:29:03 +00:00
|
|
|
|
|
2003-12-07 15:21:31 +00:00
|
|
|
|
#include <limits.h>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define COMBO_passive 0
|
|
|
|
|
#define COMBO_Sources 1
|
|
|
|
|
#define COMBO_TLines 2
|
|
|
|
|
#define COMBO_nonlinear 3
|
|
|
|
|
#define COMBO_File 4
|
|
|
|
|
#define COMBO_Sims 5
|
|
|
|
|
#define COMBO_Paints 6
|
|
|
|
|
#define COMBO_Diagrams 7
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
QucsApp::QucsApp()
|
|
|
|
|
{
|
|
|
|
|
setCaption("Qucs " VERSION);
|
2004-02-21 18:38:50 +00:00
|
|
|
|
|
|
|
|
|
if(!loadSettings())
|
|
|
|
|
resize(600,400);
|
|
|
|
|
|
2003-12-07 15:21:31 +00:00
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////
|
|
|
|
|
// call inits to invoke all other construction parts
|
|
|
|
|
initActions();
|
|
|
|
|
initMenuBar();
|
|
|
|
|
initToolBar();
|
|
|
|
|
initStatusBar();
|
|
|
|
|
|
|
|
|
|
initView();
|
2004-02-21 18:38:50 +00:00
|
|
|
|
initCursorMenu();
|
2003-12-07 15:21:31 +00:00
|
|
|
|
|
|
|
|
|
viewToolBar->setOn(true);
|
|
|
|
|
viewStatusBar->setOn(true);
|
|
|
|
|
|
2004-02-21 18:38:50 +00:00
|
|
|
|
|
2003-12-07 15:21:31 +00:00
|
|
|
|
// default settings of the printer
|
|
|
|
|
Printer.setOrientation(QPrinter::Landscape);
|
|
|
|
|
Printer.setColorMode(QPrinter::Color);
|
2004-02-21 18:38:50 +00:00
|
|
|
|
|
2003-12-07 15:21:31 +00:00
|
|
|
|
|
|
|
|
|
// switch on the 'select' action
|
|
|
|
|
select->blockSignals(true);
|
|
|
|
|
select->setOn(true);
|
|
|
|
|
select->blockSignals(false);
|
|
|
|
|
slotSelect(true);
|
|
|
|
|
|
|
|
|
|
HierarchyHistory.setAutoDelete(true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QucsApp::~QucsApp()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2004-02-21 18:38:50 +00:00
|
|
|
|
// #########################################################################################
|
|
|
|
|
// Loads the settings file and restores the settings.
|
|
|
|
|
bool QucsApp::loadSettings()
|
|
|
|
|
{
|
2004-02-28 14:40:49 +00:00
|
|
|
|
QFile file(QDir::homeDirPath()+"/.qucs/qucsrc");
|
2004-02-21 18:38:50 +00:00
|
|
|
|
if(!file.open(IO_ReadOnly)) return false; // settings file does not exist
|
|
|
|
|
|
|
|
|
|
QString Line, Setting;
|
|
|
|
|
QTextStream stream(&file);
|
|
|
|
|
|
|
|
|
|
int x, y;
|
|
|
|
|
bool ok;
|
|
|
|
|
while(!stream.atEnd()) {
|
|
|
|
|
Line = stream.readLine();
|
|
|
|
|
Setting = Line.section('=',0,0);
|
|
|
|
|
Line = Line.section('=',1,1);
|
2004-02-28 14:40:49 +00:00
|
|
|
|
if(Setting == "Position") { x = Line.section(",",0,0).toInt(&ok);
|
|
|
|
|
y = Line.section(",",1,1).toInt(&ok);
|
|
|
|
|
move(x,y); }
|
2004-02-21 18:38:50 +00:00
|
|
|
|
else if(Setting == "Size") { x = Line.section(",",0,0).toInt(&ok);
|
|
|
|
|
y = Line.section(",",1,1).toInt(&ok);
|
|
|
|
|
resize(x,y); }
|
|
|
|
|
}
|
|
|
|
|
file.close();
|
|
|
|
|
// resize(600,400);
|
|
|
|
|
// resize(maximumSize());
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// #########################################################################################
|
|
|
|
|
// Saves the settings in the settings file.
|
|
|
|
|
void QucsApp::saveSettings()
|
|
|
|
|
{
|
2004-02-28 14:40:49 +00:00
|
|
|
|
QFile file(QDir::homeDirPath()+"/.qucs/qucsrc");
|
2004-02-21 18:38:50 +00:00
|
|
|
|
if(!file.open(IO_WriteOnly)) { // settings file cannot be created
|
|
|
|
|
QMessageBox::warning(this, tr("Warning"), tr("Cannot save settings !"));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString Line;
|
|
|
|
|
QTextStream stream(&file);
|
|
|
|
|
|
|
|
|
|
stream << "Settings file, Qucs " VERSION "\n";
|
|
|
|
|
stream << "Position=" << x() << "," << y() << "\n";
|
|
|
|
|
stream << "Size=" << width() << "," << height() << "\n";
|
|
|
|
|
file.close();
|
|
|
|
|
}
|
|
|
|
|
|
2003-12-07 15:21:31 +00:00
|
|
|
|
// #########################################################################################
|
|
|
|
|
// initializes all QActions of the application
|
|
|
|
|
void QucsApp::initActions()
|
|
|
|
|
{
|
2004-04-04 15:56:10 +00:00
|
|
|
|
mainAccel = new QAccel(this); // used to connect more than one key to an action
|
|
|
|
|
|
|
|
|
|
|
2003-12-07 15:21:31 +00:00
|
|
|
|
activeAction = 0; // no active action
|
|
|
|
|
|
2004-04-04 15:56:10 +00:00
|
|
|
|
fileNew = new QAction(tr("New"), QIconSet(QImage(BITMAPDIR "filenew.png")),
|
|
|
|
|
tr("&New"), CTRL+Key_N, this);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
fileNew->setStatusTip(tr("Creates a new document"));
|
|
|
|
|
fileNew->setWhatsThis(tr("New\n\nCreates a new schematic or data display document"));
|
|
|
|
|
connect(fileNew, SIGNAL(activated()), this, SLOT(slotFileNew()));
|
|
|
|
|
|
2004-04-04 15:56:10 +00:00
|
|
|
|
fileOpen = new QAction(tr("Open File"), QIconSet(QImage(BITMAPDIR "fileopen.png")),
|
|
|
|
|
tr("&Open..."), CTRL+Key_O, this);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
fileOpen->setStatusTip(tr("Opens an existing document"));
|
|
|
|
|
fileOpen->setWhatsThis(tr("Open File\n\nOpens an existing document"));
|
|
|
|
|
connect(fileOpen, SIGNAL(activated()), this, SLOT(slotFileOpen()));
|
|
|
|
|
|
2004-04-04 15:56:10 +00:00
|
|
|
|
fileSave = new QAction(tr("Save File"), QIconSet(QImage(BITMAPDIR "filesave.png")),
|
|
|
|
|
tr("&Save"), CTRL+Key_S, this);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
fileSave->setStatusTip(tr("Saves the current document"));
|
|
|
|
|
fileSave->setWhatsThis(tr("Save File\n\nSaves the current document"));
|
|
|
|
|
connect(fileSave, SIGNAL(activated()), this, SLOT(slotFileSave()));
|
|
|
|
|
|
|
|
|
|
fileSaveAs = new QAction(tr("Save File As"), tr("Save &as..."), 0, this);
|
|
|
|
|
fileSaveAs->setStatusTip(tr("Saves the current document under a new filename"));
|
|
|
|
|
fileSaveAs->setWhatsThis(tr("Save As\n\nSaves the current document under a new filename"));
|
|
|
|
|
connect(fileSaveAs, SIGNAL(activated()), this, SLOT(slotFileSaveAs()));
|
|
|
|
|
|
2004-04-04 15:56:10 +00:00
|
|
|
|
fileSaveAll = new QAction(tr("Save All Files"), QIconSet(QImage(BITMAPDIR "filesaveall.png")),
|
|
|
|
|
tr("Save &All"), 0, this);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
fileSaveAll->setStatusTip(tr("Saves all open documents"));
|
|
|
|
|
fileSaveAll->setWhatsThis(tr("Save All Files\n\nSaves all open documents"));
|
|
|
|
|
connect(fileSaveAll, SIGNAL(activated()), this, SLOT(slotFileSaveAll()));
|
|
|
|
|
|
2004-04-04 15:56:10 +00:00
|
|
|
|
fileClose = new QAction(tr("Close File"), QIconSet(QImage(BITMAPDIR "fileclose.png")),
|
|
|
|
|
tr("&Close"), CTRL+Key_W, this);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
fileClose->setStatusTip(tr("Closes the current document"));
|
|
|
|
|
fileClose->setWhatsThis(tr("Close File\n\nCloses the current document"));
|
|
|
|
|
connect(fileClose, SIGNAL(activated()), this, SLOT(slotFileClose()));
|
|
|
|
|
|
|
|
|
|
fileSettings = new QAction(tr("Settings"), tr("Settings..."), 0, this);
|
|
|
|
|
fileSettings->setStatusTip(tr("Settings"));
|
|
|
|
|
fileSettings->setWhatsThis(tr("Settings\n\nSets properties of the file"));
|
|
|
|
|
connect(fileSettings, SIGNAL(activated()), this, SLOT(slotFileSettings()));
|
|
|
|
|
|
2004-04-04 15:56:10 +00:00
|
|
|
|
filePrint = new QAction(tr("Print File"), QIconSet(QImage(BITMAPDIR "fileprint.png")),
|
|
|
|
|
tr("&Print..."), CTRL+Key_P, this);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
filePrint->setStatusTip(tr("Prints the current document"));
|
|
|
|
|
filePrint->setWhatsThis(tr("Print File\n\nPrints the current document"));
|
|
|
|
|
connect(filePrint, SIGNAL(activated()), this, SLOT(slotFilePrint()));
|
|
|
|
|
|
|
|
|
|
fileQuit = new QAction(tr("Exit"), tr("E&xit"), QAccel::stringToKey(tr("Ctrl+Q")), this);
|
|
|
|
|
fileQuit->setStatusTip(tr("Quits the application"));
|
|
|
|
|
fileQuit->setWhatsThis(tr("Exit\n\nQuits the application"));
|
|
|
|
|
connect(fileQuit, SIGNAL(activated()), this, SLOT(slotFileQuit()));
|
|
|
|
|
|
2004-04-04 15:56:10 +00:00
|
|
|
|
editCut = new QAction(tr("Cut"), QIconSet(QImage(BITMAPDIR "editcut.png")),
|
|
|
|
|
tr("Cu&t"), CTRL+Key_X, this);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
editCut->setStatusTip(tr("Cuts the selected section and puts it to the clipboard"));
|
|
|
|
|
editCut->setWhatsThis(tr("Cut\n\nCuts the selected section and puts it to the clipboard"));
|
|
|
|
|
connect(editCut, SIGNAL(activated()), this, SLOT(slotEditCut()));
|
|
|
|
|
|
2004-04-04 15:56:10 +00:00
|
|
|
|
editCopy = new QAction(tr("Copy"), QIconSet(QImage(BITMAPDIR "editcopy.png")),
|
|
|
|
|
tr("&Copy"), CTRL+Key_C, this);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
editCopy->setStatusTip(tr("Copies the selected section to the clipboard"));
|
|
|
|
|
editCopy->setWhatsThis(tr("Copy\n\nCopies the selected section to the clipboard"));
|
|
|
|
|
connect(editCopy, SIGNAL(activated()), this, SLOT(slotEditCopy()));
|
|
|
|
|
|
2004-04-04 15:56:10 +00:00
|
|
|
|
editPaste = new QAction(tr("Paste"), QIconSet(QImage(BITMAPDIR "editpaste.png")),
|
|
|
|
|
tr("&Paste"), CTRL+Key_V, this);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
editPaste->setStatusTip(tr("Pastes the clipboard contents to the cursor position"));
|
|
|
|
|
editPaste->setWhatsThis(tr("Paste\n\nPastes the clipboard contents to the cursor position"));
|
|
|
|
|
editPaste->setToggleAction(true);
|
|
|
|
|
connect(editPaste, SIGNAL(toggled(bool)), this, SLOT(slotEditPaste(bool)));
|
|
|
|
|
|
2004-04-04 15:56:10 +00:00
|
|
|
|
editDelete = new QAction(tr("Delete"), QIconSet(QImage(BITMAPDIR "editdelete.png")),
|
|
|
|
|
tr("&Delete"), Key_Delete, this);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
editDelete->setStatusTip(tr("Deletes the selected components"));
|
|
|
|
|
editDelete->setWhatsThis(tr("Delete\n\nDeletes the selected components"));
|
|
|
|
|
editDelete->setToggleAction(true);
|
|
|
|
|
connect(editDelete, SIGNAL(toggled(bool)), this, SLOT(slotEditDelete(bool)));
|
2004-04-04 15:56:10 +00:00
|
|
|
|
// to ease the usage with notebooks, backspace can also be used to delete elements
|
|
|
|
|
mainAccel->connectItem(mainAccel->insertItem(Key_Backspace), editDelete, SLOT(toggle()) );
|
|
|
|
|
|
2003-12-07 15:21:31 +00:00
|
|
|
|
|
2004-04-04 15:56:10 +00:00
|
|
|
|
undo = new QAction(tr("Undo"), QIconSet(QImage(BITMAPDIR "undo.png")),
|
|
|
|
|
tr("&Undo"), CTRL+Key_Z, this);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
undo->setStatusTip(tr("Undoes the last command"));
|
|
|
|
|
undo->setWhatsThis(tr("Undo\n\nMakes the last action undone"));
|
|
|
|
|
// connect(undo, SIGNAL(activated()), this, SLOT(slot()));
|
|
|
|
|
undo->setEnabled(false);
|
|
|
|
|
|
2004-04-04 15:56:10 +00:00
|
|
|
|
redo = new QAction(tr("Redo"), QIconSet(QImage(BITMAPDIR "redo.png")),
|
|
|
|
|
tr("&Redo"), CTRL+Key_Y, this);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
redo->setStatusTip(tr("Redoes the last command"));
|
|
|
|
|
redo->setWhatsThis(tr("Redo\n\nRepeats the last action once more"));
|
|
|
|
|
// connect(redo, SIGNAL(activated()), this, SLOT(slot()));
|
|
|
|
|
redo->setEnabled(false);
|
|
|
|
|
|
|
|
|
|
projNew = new QAction(tr("New Project"), tr("&New Project..."), 0, this);
|
|
|
|
|
projNew->setStatusTip(tr("Creates a new project"));
|
|
|
|
|
projNew->setWhatsThis(tr("New Project\n\nCreates a new project"));
|
|
|
|
|
connect(projNew, SIGNAL(activated()), this, SLOT(slotProjNewButt()));
|
|
|
|
|
|
|
|
|
|
projOpen = new QAction(tr("Open Project"), tr("&Open Project..."), 0, this);
|
|
|
|
|
projOpen->setStatusTip(tr("Opens a project"));
|
|
|
|
|
projOpen->setWhatsThis(tr("Open Project\n\nOpens an existing project"));
|
|
|
|
|
connect(projOpen, SIGNAL(activated()), this, SLOT(slotMenuOpenProject()));
|
|
|
|
|
|
|
|
|
|
projDel = new QAction(tr("Delete Project"), tr("&Delete Project..."), 0, this);
|
|
|
|
|
projDel->setStatusTip(tr("Deletes a project"));
|
|
|
|
|
projDel->setWhatsThis(tr("Delete Project\n\nDeletes an existing project"));
|
|
|
|
|
connect(projDel, SIGNAL(activated()), this, SLOT(slotMenuDelProject()));
|
|
|
|
|
|
2004-04-04 15:56:10 +00:00
|
|
|
|
magAll = new QAction(tr("View All"), QIconSet(QImage(BITMAPDIR "viewmagfit.png")),
|
|
|
|
|
tr("View All"), 0, this);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
magAll->setStatusTip(tr("Views the whole page"));
|
|
|
|
|
magAll->setWhatsThis(tr("View All\n\nShows the whole page content"));
|
|
|
|
|
connect(magAll, SIGNAL(activated()), this, SLOT(slotShowAll()));
|
|
|
|
|
|
2004-04-04 15:56:10 +00:00
|
|
|
|
magOne = new QAction(tr("View 1:1"), QIconSet(QImage(BITMAPDIR "viewmag1.png")),
|
|
|
|
|
tr("View 1:1"), Key_1, this);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
magOne->setStatusTip(tr("Views without magnification"));
|
|
|
|
|
magOne->setWhatsThis(tr("View 1:1\n\nShows the page content without magnification"));
|
|
|
|
|
connect(magOne, SIGNAL(activated()), this, SLOT(slotShowOne()));
|
|
|
|
|
|
2004-04-04 15:56:10 +00:00
|
|
|
|
magPlus = new QAction(tr("Zoom in"), QIconSet(QImage(BITMAPDIR "viewmag+.png")),
|
|
|
|
|
tr("Zoom in"), Key_Plus, this);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
magPlus->setStatusTip(tr("Zooms into the current view"));
|
|
|
|
|
magPlus->setWhatsThis(tr("Zoom in\n\nZooms the current view"));
|
|
|
|
|
connect(magPlus, SIGNAL(activated()), this, SLOT(slotZoomIn()));
|
|
|
|
|
|
2004-04-04 15:56:10 +00:00
|
|
|
|
magMinus = new QAction(tr("Zoom out"), QIconSet(QImage(BITMAPDIR "viewmag-.png")),
|
|
|
|
|
tr("Zoom out"), Key_Minus, this);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
magMinus->setStatusTip(tr("Zooms out the current view"));
|
|
|
|
|
magMinus->setWhatsThis(tr("Reduce\n\nZooms out the current view"));
|
|
|
|
|
connect(magMinus, SIGNAL(activated()), this, SLOT(slotZoomOut()));
|
|
|
|
|
|
2004-04-04 15:56:10 +00:00
|
|
|
|
select = new QAction(tr("Select"), QIconSet(QImage(BITMAPDIR "pointer.png")),
|
|
|
|
|
tr("Select"), Key_Escape, this);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
select->setStatusTip(tr("Select mode"));
|
|
|
|
|
select->setWhatsThis(tr("Select\n\nSelect mode"));
|
|
|
|
|
select->setToggleAction(true);
|
|
|
|
|
connect(select, SIGNAL(toggled(bool)), this, SLOT(slotSelect(bool)));
|
|
|
|
|
|
2004-04-04 15:56:10 +00:00
|
|
|
|
selectAll = new QAction(tr("Select All"), tr("Select All"), CTRL+Key_A, this);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
selectAll->setStatusTip(tr("Selects all elements"));
|
|
|
|
|
selectAll->setWhatsThis(tr("Select All\n\nSelects all elements of the document"));
|
|
|
|
|
connect(selectAll, SIGNAL(activated()), this, SLOT(slotSelectAll()));
|
|
|
|
|
|
2004-04-04 15:56:10 +00:00
|
|
|
|
editRotate = new QAction(tr("Rotate"), QIconSet(QImage(BITMAPDIR "rotate_ccw.png")),
|
|
|
|
|
tr("Rotate"), CTRL+Key_R, this);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
editRotate->setStatusTip(tr("Rotates the selected component by 90<39>"));
|
|
|
|
|
editRotate->setWhatsThis(tr("Rotate\n\nRotates the selected component by 90<39> counter-clockwise"));
|
|
|
|
|
editRotate->setToggleAction(true);
|
|
|
|
|
connect(editRotate, SIGNAL(toggled(bool)), this, SLOT(slotEditRotate(bool)));
|
|
|
|
|
|
2004-04-04 15:56:10 +00:00
|
|
|
|
editMirror = new QAction(tr("Mirror about X Axis"), QIconSet(QImage(BITMAPDIR "mirror.png")),
|
|
|
|
|
tr("Mirror about X Axis"), 0, this);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
editMirror->setStatusTip(tr("Mirrors the selected item about X axis"));
|
|
|
|
|
editMirror->setWhatsThis(tr("Mirror about X Axis\n\nMirrors the selected item about X Axis"));
|
|
|
|
|
editMirror->setToggleAction(true);
|
|
|
|
|
connect(editMirror, SIGNAL(toggled(bool)), this, SLOT(slotEditMirrorX(bool)));
|
|
|
|
|
|
2004-04-04 15:56:10 +00:00
|
|
|
|
editMirrorY = new QAction(tr("Mirror about Y Axis"), QIconSet(QImage(BITMAPDIR "mirrory.png")),
|
|
|
|
|
tr("Mirror about Y Axis"), CTRL+Key_M, this);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
editMirrorY->setStatusTip(tr("Mirrors the selected item about Y axis"));
|
|
|
|
|
editMirrorY->setWhatsThis(tr("Mirror about Y Axis\n\nMirrors the selected item about Y Axis"));
|
|
|
|
|
editMirrorY->setToggleAction(true);
|
|
|
|
|
connect(editMirrorY, SIGNAL(toggled(bool)), this, SLOT(slotEditMirrorY(bool)));
|
|
|
|
|
|
2004-04-04 15:56:10 +00:00
|
|
|
|
intoH = new QAction(tr("Go into Subcircuit"), QIconSet(QImage(BITMAPDIR "bottom.png")),
|
|
|
|
|
tr("Go into Subcircuit"), 0, this);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
intoH->setStatusTip(tr("Goes inside subcircuit"));
|
|
|
|
|
intoH->setWhatsThis(tr("Go into Subcircuit\n\nGoes inside the selected subcircuit"));
|
|
|
|
|
connect(intoH, SIGNAL(activated()), this, SLOT(slotIntoHierarchy()));
|
|
|
|
|
// intoH->setEnabled(false);
|
|
|
|
|
|
|
|
|
|
popH = new QAction(tr("Pop out"), QIconSet(QImage(BITMAPDIR "top.png")), tr("Pop out"), 0, this);
|
|
|
|
|
popH->setStatusTip(tr("Pop outside subcircuit"));
|
|
|
|
|
popH->setWhatsThis(tr("Pop out\n\nGoes up one hierarchy level, i.e. leaves subcircuit"));
|
|
|
|
|
connect(popH, SIGNAL(activated()), this, SLOT(slotPopHierarchy()));
|
|
|
|
|
popH->setEnabled(false); // only enabled if useful !!!!
|
|
|
|
|
|
2004-04-04 15:56:10 +00:00
|
|
|
|
editActivate = new QAction(tr("Deactivate/Activate"), QIconSet(QImage(BITMAPDIR "deactiv.png")),
|
|
|
|
|
tr("Deactivate/Activate"), CTRL+Key_D, this);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
editActivate->setStatusTip(tr("Deactivate/Activate the selected item"));
|
|
|
|
|
editActivate->setWhatsThis(tr("Deactivate/Activate\n\nDeactivate/Activate the selected item"));
|
|
|
|
|
editActivate->setToggleAction(true);
|
|
|
|
|
connect(editActivate, SIGNAL(toggled(bool)), this, SLOT(slotEditActivate(bool)));
|
|
|
|
|
|
2004-04-04 15:56:10 +00:00
|
|
|
|
insEquation = new QAction(tr("Insert Equation"), QIconSet(QImage(BITMAPDIR "equation.png")),
|
|
|
|
|
tr("Insert Equation"), 0, this);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
insEquation->setStatusTip(tr("Inserts equation"));
|
|
|
|
|
insEquation->setWhatsThis(tr("Insert Equation\n\nInserts a user defined equation"));
|
|
|
|
|
insEquation->setToggleAction(true);
|
|
|
|
|
connect(insEquation, SIGNAL(toggled(bool)), this, SLOT(slotInsertEquation(bool)));
|
|
|
|
|
|
2004-04-04 15:56:10 +00:00
|
|
|
|
insGround = new QAction(tr("Insert Ground"), QIconSet(QImage(BITMAPDIR "ground.png")),
|
|
|
|
|
tr("Insert Ground"), 0, this);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
insGround->setStatusTip(tr("Inserts ground"));
|
|
|
|
|
insGround->setWhatsThis(tr("Insert Ground\n\nInserts a ground symbol"));
|
|
|
|
|
insGround->setToggleAction(true);
|
|
|
|
|
connect(insGround, SIGNAL(toggled(bool)), this, SLOT(slotInsertGround(bool)));
|
|
|
|
|
|
2004-04-04 15:56:10 +00:00
|
|
|
|
insPort = new QAction(tr("Insert Port"), QIconSet(QImage(BITMAPDIR "port.png")),
|
|
|
|
|
tr("Insert Port"), 0, this);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
insPort->setStatusTip(tr("Inserts port"));
|
|
|
|
|
insPort->setWhatsThis(tr("Insert Port\n\nInserts a port symbol"));
|
|
|
|
|
insPort->setToggleAction(true);
|
|
|
|
|
connect(insPort, SIGNAL(toggled(bool)), this, SLOT(slotInsertPort(bool)));
|
|
|
|
|
|
2004-04-04 15:56:10 +00:00
|
|
|
|
insWire = new QAction(tr("Insert Wire"), QIconSet(QImage(BITMAPDIR "wire.png")),
|
|
|
|
|
tr("Wire"), CTRL+Key_E, this);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
insWire->setStatusTip(tr("Inserts a wire"));
|
|
|
|
|
insWire->setWhatsThis(tr("Wire\n\nInserts a wire"));
|
|
|
|
|
insWire->setToggleAction(true);
|
|
|
|
|
connect(insWire, SIGNAL(toggled(bool)), this, SLOT(slotSetWire(bool)));
|
|
|
|
|
|
2004-04-04 15:56:10 +00:00
|
|
|
|
insLabel = new QAction(tr("Insert Wire/Pin Label"), QIconSet(QImage(BITMAPDIR "nodename.png")),
|
|
|
|
|
tr("Wire Label"), 0, this);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
insLabel->setStatusTip(tr("Inserts a wire or pin label"));
|
|
|
|
|
insLabel->setWhatsThis(tr("Wire Label\n\nInserts a wire or pin label"));
|
|
|
|
|
insLabel->setToggleAction(true);
|
|
|
|
|
connect(insLabel, SIGNAL(toggled(bool)), this, SLOT(slotInsertLabel(bool)));
|
|
|
|
|
|
2004-04-04 15:56:10 +00:00
|
|
|
|
simulate = new QAction(tr("Simulate"), QIconSet(QImage(BITMAPDIR "gear.png")),
|
|
|
|
|
tr("Simulate"), Key_F2, this);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
simulate->setStatusTip(tr("Simulates the current schematic"));
|
|
|
|
|
simulate->setWhatsThis(tr("Simulate\n\nSimulates the current schematic"));
|
|
|
|
|
connect(simulate, SIGNAL(activated()), this, SLOT(slotSimulate()));
|
|
|
|
|
|
2004-04-04 15:56:10 +00:00
|
|
|
|
dpl_sch = new QAction(tr("View Data Display/Schematic"), QIconSet(QImage(BITMAPDIR "rebuild.png")),
|
|
|
|
|
tr("View Data Display/Schematic"), Key_F4, this);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
dpl_sch->setStatusTip(tr("Changes to data display or schematic page"));
|
|
|
|
|
dpl_sch->setWhatsThis(tr("View Data Display/Schematic\n\nChanges to data display or schematic page"));
|
|
|
|
|
connect(dpl_sch, SIGNAL(activated()), this, SLOT(slotChangePage()));
|
|
|
|
|
|
|
|
|
|
showMsg = new QAction(tr("Show Last Messages"), tr("Show Last Messages"), 0, this);
|
|
|
|
|
showMsg->setStatusTip(tr("Shows last simulation messages"));
|
|
|
|
|
showMsg->setWhatsThis(tr("Show Last Messages\n\nShows the messages of the last simulation"));
|
|
|
|
|
connect(showMsg, SIGNAL(activated()), this, SLOT(slotShowLastMsg()));
|
|
|
|
|
|
|
|
|
|
showNet = new QAction(tr("Show Last Netlist"), tr("Show Last Netlist"), 0, this);
|
|
|
|
|
showNet->setStatusTip(tr("Shows last simulation netlist"));
|
|
|
|
|
showNet->setWhatsThis(tr("Show Last Netlist\n\nShows the netlist of the last simulation"));
|
|
|
|
|
connect(showNet, SIGNAL(activated()), this, SLOT(slotShowLastNetlist()));
|
|
|
|
|
|
|
|
|
|
viewToolBar = new QAction(tr("Toolbar"), tr("Tool&bar"), 0, this, 0, true);
|
|
|
|
|
viewToolBar->setStatusTip(tr("Enables/disables the toolbar"));
|
|
|
|
|
viewToolBar->setWhatsThis(tr("Toolbar\n\nEnables/disables the toolbar"));
|
|
|
|
|
connect(viewToolBar, SIGNAL(toggled(bool)), this, SLOT(slotViewToolBar(bool)));
|
|
|
|
|
|
|
|
|
|
viewStatusBar = new QAction(tr("Statusbar"), tr("&Statusbar"), 0, this, 0, true);
|
|
|
|
|
viewStatusBar->setStatusTip(tr("Enables/disables the statusbar"));
|
|
|
|
|
viewStatusBar->setWhatsThis(tr("Statusbar\n\nEnables/disables the statusbar"));
|
|
|
|
|
connect(viewStatusBar, SIGNAL(toggled(bool)), this, SLOT(slotViewStatusBar(bool)));
|
|
|
|
|
|
2004-04-04 15:56:10 +00:00
|
|
|
|
helpIndex = new QAction(tr("Help Index"), tr("Help Index..."), Key_F1, this);
|
2004-01-18 14:41:45 +00:00
|
|
|
|
helpIndex->setStatusTip(tr("Index of Qucs Help"));
|
|
|
|
|
helpIndex->setWhatsThis(tr("Help Index\n\nIndex of intern Qucs help"));
|
|
|
|
|
connect(helpIndex, SIGNAL(activated()), this, SLOT(slotHelpIndex()));
|
|
|
|
|
|
|
|
|
|
helpGetStart = new QAction(tr("Getting Started"), tr("Getting Started..."), 0, this);
|
|
|
|
|
helpGetStart->setStatusTip(tr("Getting Started with Qucs"));
|
|
|
|
|
helpGetStart->setWhatsThis(tr("Getting Started\n\nShort introduction into Qucs"));
|
|
|
|
|
connect(helpGetStart, SIGNAL(activated()), this, SLOT(slotGettingStarted()));
|
|
|
|
|
|
2003-12-07 15:21:31 +00:00
|
|
|
|
helpAboutApp = new QAction(tr("About"), tr("&About Qucs..."), 0, this);
|
|
|
|
|
helpAboutApp->setStatusTip(tr("About the application"));
|
|
|
|
|
helpAboutApp->setWhatsThis(tr("About\n\nAbout the application"));
|
|
|
|
|
connect(helpAboutApp, SIGNAL(activated()), this, SLOT(slotHelpAbout()));
|
|
|
|
|
|
|
|
|
|
helpAboutQt = new QAction(tr("About Qt"), tr("&About Qt..."), 0, this);
|
|
|
|
|
helpAboutQt->setStatusTip(tr("About Qt"));
|
|
|
|
|
helpAboutQt->setWhatsThis(tr("About Qt\n\nAbout Qt by Trolltech"));
|
|
|
|
|
connect(helpAboutQt, SIGNAL(activated()), this, SLOT(slotHelpAboutQt()));
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void QucsApp::initMenuBar()
|
|
|
|
|
{
|
|
|
|
|
fileMenu=new QPopupMenu(); // menuBar entry fileMenu
|
|
|
|
|
fileNew->addTo(fileMenu);
|
|
|
|
|
fileOpen->addTo(fileMenu);
|
|
|
|
|
fileClose->addTo(fileMenu);
|
|
|
|
|
fileMenu->insertSeparator();
|
|
|
|
|
fileSave->addTo(fileMenu);
|
|
|
|
|
fileSaveAll->addTo(fileMenu);
|
|
|
|
|
fileSaveAs->addTo(fileMenu);
|
|
|
|
|
fileMenu->insertSeparator();
|
|
|
|
|
fileSettings->addTo(fileMenu);
|
|
|
|
|
fileMenu->insertSeparator();
|
|
|
|
|
filePrint->addTo(fileMenu);
|
|
|
|
|
fileMenu->insertSeparator();
|
|
|
|
|
fileQuit->addTo(fileMenu);
|
|
|
|
|
|
|
|
|
|
editMenu=new QPopupMenu(); // menuBar entry editMenu
|
|
|
|
|
undo->addTo(editMenu);
|
|
|
|
|
redo->addTo(editMenu);
|
|
|
|
|
editMenu->insertSeparator();
|
|
|
|
|
editCut->addTo(editMenu);
|
|
|
|
|
editCopy->addTo(editMenu);
|
|
|
|
|
editPaste->addTo(editMenu);
|
|
|
|
|
editDelete->addTo(editMenu);
|
|
|
|
|
editMenu->insertSeparator();
|
|
|
|
|
select->addTo(editMenu);
|
|
|
|
|
selectAll->addTo(editMenu);
|
|
|
|
|
editRotate->addTo(editMenu);
|
|
|
|
|
editMirror->addTo(editMenu);
|
|
|
|
|
editMirrorY->addTo(editMenu);
|
|
|
|
|
editActivate->addTo(editMenu);
|
|
|
|
|
editMenu->insertSeparator();
|
|
|
|
|
intoH->addTo(editMenu);
|
|
|
|
|
popH->addTo(editMenu);
|
|
|
|
|
|
|
|
|
|
insMenu=new QPopupMenu(); // menuBar entry insMenu
|
|
|
|
|
insWire->addTo(insMenu);
|
|
|
|
|
insLabel->addTo(insMenu);
|
|
|
|
|
insEquation->addTo(insMenu);
|
|
|
|
|
insGround->addTo(insMenu);
|
|
|
|
|
insPort->addTo(insMenu);
|
|
|
|
|
|
|
|
|
|
projMenu=new QPopupMenu(); // menuBar entry projMenu
|
|
|
|
|
projNew->addTo(projMenu);
|
|
|
|
|
projOpen->addTo(projMenu);
|
|
|
|
|
projDel->addTo(projMenu);
|
|
|
|
|
|
|
|
|
|
simMenu=new QPopupMenu(); // menuBar entry simMenu
|
|
|
|
|
simulate->addTo(simMenu);
|
|
|
|
|
dpl_sch->addTo(simMenu);
|
|
|
|
|
showMsg->addTo(simMenu);
|
|
|
|
|
showNet->addTo(simMenu);
|
|
|
|
|
|
|
|
|
|
viewMenu=new QPopupMenu(); // menuBar entry viewMenu
|
|
|
|
|
magAll->addTo(viewMenu);
|
|
|
|
|
magOne->addTo(viewMenu);
|
|
|
|
|
magPlus->addTo(viewMenu);
|
|
|
|
|
magMinus->addTo(viewMenu);
|
|
|
|
|
viewMenu->insertSeparator();
|
|
|
|
|
viewMenu->setCheckable(true);
|
|
|
|
|
viewToolBar->addTo(viewMenu);
|
|
|
|
|
viewStatusBar->addTo(viewMenu);
|
|
|
|
|
|
|
|
|
|
helpMenu=new QPopupMenu(); // menuBar entry helpMenu
|
2004-01-18 14:41:45 +00:00
|
|
|
|
helpIndex->addTo(helpMenu);
|
|
|
|
|
helpGetStart->addTo(helpMenu);
|
|
|
|
|
helpMenu->insertSeparator();
|
2003-12-07 15:21:31 +00:00
|
|
|
|
helpAboutApp->addTo(helpMenu);
|
|
|
|
|
helpAboutQt->addTo(helpMenu);
|
|
|
|
|
|
|
|
|
|
menuBar()->insertItem(tr("&File"), fileMenu); // MENUBAR CONFIGURATION
|
|
|
|
|
menuBar()->insertItem(tr("&Edit"), editMenu);
|
|
|
|
|
menuBar()->insertItem(tr("&Insert"), insMenu);
|
|
|
|
|
menuBar()->insertItem(tr("&Project"), projMenu);
|
|
|
|
|
menuBar()->insertItem(tr("&Simulation"), simMenu);
|
|
|
|
|
menuBar()->insertItem(tr("&View"), viewMenu);
|
|
|
|
|
menuBar()->insertSeparator();
|
|
|
|
|
menuBar()->insertItem(tr("&Help"), helpMenu);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void QucsApp::initToolBar()
|
|
|
|
|
{
|
2003-12-26 16:31:25 +00:00
|
|
|
|
fileToolbar = new QToolBar(this);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
fileNew->addTo(fileToolbar);
|
|
|
|
|
fileOpen->addTo(fileToolbar);
|
|
|
|
|
fileSave->addTo(fileToolbar);
|
|
|
|
|
fileSaveAll->addTo(fileToolbar);
|
|
|
|
|
fileClose->addTo(fileToolbar);
|
|
|
|
|
filePrint->addTo(fileToolbar);
|
|
|
|
|
|
2003-12-26 16:31:25 +00:00
|
|
|
|
editToolbar = new QToolBar(this);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
editCut->addTo(editToolbar);
|
|
|
|
|
editCopy->addTo(editToolbar);
|
|
|
|
|
editPaste->addTo(editToolbar);
|
|
|
|
|
editDelete->addTo(editToolbar);
|
|
|
|
|
undo->addTo(editToolbar);
|
|
|
|
|
redo->addTo(editToolbar);
|
|
|
|
|
|
2003-12-26 16:31:25 +00:00
|
|
|
|
viewToolbar = new QToolBar(this);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
magAll->addTo(viewToolbar);
|
|
|
|
|
magOne->addTo(viewToolbar);
|
|
|
|
|
magPlus->addTo(viewToolbar);
|
|
|
|
|
magMinus->addTo(viewToolbar);
|
|
|
|
|
|
2003-12-26 16:31:25 +00:00
|
|
|
|
workToolbar = new QToolBar(this);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
select->addTo(workToolbar);
|
|
|
|
|
editMirror->addTo(workToolbar);
|
|
|
|
|
editMirrorY->addTo(workToolbar);
|
|
|
|
|
editRotate->addTo(workToolbar);
|
|
|
|
|
intoH->addTo(workToolbar);
|
|
|
|
|
popH->addTo(workToolbar);
|
|
|
|
|
editActivate->addTo(workToolbar);
|
|
|
|
|
insWire->addTo(workToolbar);
|
|
|
|
|
insLabel->addTo(workToolbar);
|
|
|
|
|
insEquation->addTo(workToolbar);
|
|
|
|
|
insGround->addTo(workToolbar);
|
|
|
|
|
insPort->addTo(workToolbar);
|
|
|
|
|
simulate->addTo(workToolbar);
|
|
|
|
|
dpl_sch->addTo(workToolbar);
|
|
|
|
|
workToolbar->addSeparator(); // <<<=======================
|
|
|
|
|
QWhatsThis::whatsThisButton(workToolbar);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// #########################################################################
|
|
|
|
|
// Statusbar
|
|
|
|
|
void QucsApp::initStatusBar()
|
|
|
|
|
{
|
|
|
|
|
statusBar()->message(tr("Ready."), 2000);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// #########################################################################
|
|
|
|
|
// ########## ##########
|
|
|
|
|
// ########## Creates the view area (QTabWidget etc.) ##########
|
|
|
|
|
// ########## ##########
|
|
|
|
|
// #########################################################################
|
|
|
|
|
void QucsApp::initView()
|
|
|
|
|
{
|
|
|
|
|
QVBox *all = new QVBox(this); // only to fill the entire view area completely
|
|
|
|
|
QSplitter *Hsplit = new QSplitter(QSplitter::Horizontal, all);
|
|
|
|
|
|
|
|
|
|
TabView = new QTabWidget(Hsplit); // tabs on the left side
|
|
|
|
|
QVBox *WorkGroup = new QVBox(Hsplit);
|
|
|
|
|
WorkView = new QTabBar(WorkGroup); // tab on the right side
|
|
|
|
|
view = new QucsView(WorkGroup); // work area with schematics, data displays etc.
|
|
|
|
|
|
|
|
|
|
connect(WorkView, SIGNAL(selected(int)), SLOT(slotChangeView(int)));
|
|
|
|
|
|
|
|
|
|
Hsplit->setResizeMode(TabView, QSplitter::KeepSize);
|
|
|
|
|
setCentralWidget(all);
|
|
|
|
|
|
|
|
|
|
// ----------------------------------------------------------
|
|
|
|
|
// "Project Tab" of the left QTabWidget
|
|
|
|
|
QVBox *ProjGroup = new QVBox(this);
|
|
|
|
|
QHBox *ProjButts = new QHBox(ProjGroup);
|
|
|
|
|
QPushButton *ProjNew = new QPushButton(tr("New"),ProjButts);
|
|
|
|
|
connect(ProjNew, SIGNAL(clicked()), SLOT(slotProjNewButt()));
|
|
|
|
|
QPushButton *ProjOpen = new QPushButton(tr("Open"),ProjButts);
|
|
|
|
|
connect(ProjOpen, SIGNAL(clicked()), SLOT(slotProjOpenButt()));
|
|
|
|
|
QPushButton *ProjDel = new QPushButton(tr("Delete"),ProjButts);
|
|
|
|
|
connect(ProjDel, SIGNAL(clicked()), SLOT(slotProjDelButt()));
|
|
|
|
|
|
|
|
|
|
Projects = new QListBox(ProjGroup);
|
|
|
|
|
TabView->addTab(ProjGroup, tr("Projects"));
|
|
|
|
|
TabView->setTabToolTip(TabView->page(0), tr("content of the project directory"));
|
|
|
|
|
|
|
|
|
|
connect(Projects, SIGNAL(doubleClicked(QListBoxItem*)), SLOT(slotOpenProject(QListBoxItem*)));
|
|
|
|
|
|
|
|
|
|
// ----------------------------------------------------------
|
|
|
|
|
// "Content Tab" of the left QTabWidget
|
|
|
|
|
Content = new QListView(this);
|
|
|
|
|
Content->setRootIsDecorated(true); // root items should have open/close decoration to their left
|
|
|
|
|
Content->setSorting(-1); // no sorting
|
|
|
|
|
Content->addColumn(tr("Content of"));
|
|
|
|
|
Content->addColumn(tr("Note"));
|
|
|
|
|
Content->setColumnWidthMode(0,QListView::Manual);
|
|
|
|
|
Content->setColumnWidth(0, 150);
|
|
|
|
|
|
|
|
|
|
ConDatasets = new QListViewItem(Content, tr("Datasets"));
|
|
|
|
|
ConDisplays = new QListViewItem(Content, tr("Data Displays"));
|
|
|
|
|
ConSchematics = new QListViewItem(Content, tr("Schematics"));
|
|
|
|
|
TabView->addTab(Content,tr("Content"));
|
2003-12-26 16:31:25 +00:00
|
|
|
|
TabView->setTabToolTip(TabView->page(1), tr("content of the open project"));
|
2003-12-07 15:21:31 +00:00
|
|
|
|
|
|
|
|
|
// QT 3.2
|
|
|
|
|
// connect(Content, SIGNAL(doubleClicked(QListViewItem*, const<73>QPoint<6E>&,int)), SLOT(slotOpenContent(QListViewItem*, const<73>QPoint<6E>&,int)));
|
|
|
|
|
connect(Content, SIGNAL(doubleClicked(QListViewItem*)), SLOT(slotOpenContent(QListViewItem*)));
|
|
|
|
|
connect(Content, SIGNAL(clicked(QListViewItem*)), SLOT(slotSelectSubcircuit(QListViewItem*)));
|
|
|
|
|
|
|
|
|
|
// ----------------------------------------------------------
|
|
|
|
|
// "Component Tab" of the left QTabWidget
|
|
|
|
|
QVBox *CompGroup = new QVBox(this);
|
|
|
|
|
CompChoose = new QComboBox(CompGroup);
|
|
|
|
|
CompComps = new QIconView(CompGroup);
|
|
|
|
|
TabView->addTab(CompGroup,tr("Components"));
|
2003-12-26 16:31:25 +00:00
|
|
|
|
TabView->setTabToolTip(TabView->page(2), tr("components and diagrams"));
|
2003-12-07 15:21:31 +00:00
|
|
|
|
|
|
|
|
|
CompChoose->insertItem(tr("lumped components"));
|
|
|
|
|
CompChoose->insertItem(tr("sources"));
|
|
|
|
|
CompChoose->insertItem(tr("transmission lines"));
|
|
|
|
|
CompChoose->insertItem(tr("nonlinear components"));
|
|
|
|
|
CompChoose->insertItem(tr("file data"));
|
|
|
|
|
CompChoose->insertItem(tr("simulations"));
|
|
|
|
|
CompChoose->insertItem(tr("paintings"));
|
|
|
|
|
CompChoose->insertItem(tr("diagrams"));
|
|
|
|
|
|
|
|
|
|
slotSetCompView(0);
|
|
|
|
|
connect(CompChoose, SIGNAL(activated(int)), SLOT(slotSetCompView(int)));
|
|
|
|
|
connect(CompComps, SIGNAL(clicked(QIconViewItem*)), SLOT(slotSelectComponent(QIconViewItem*)));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------
|
|
|
|
|
readProjects(); // reads all projects and inserts them into the ListBox
|
|
|
|
|
|
|
|
|
|
view->Docs.append(new QucsDoc(WorkView, "")); // creates a document called "untitled"
|
|
|
|
|
|
|
|
|
|
// ...............................................................
|
|
|
|
|
// connect(view, SIGNAL(CompsSelected(bool)), this, SLOT(slotActivateCopy(bool)));
|
|
|
|
|
}
|
|
|
|
|
|
2004-02-21 18:38:50 +00:00
|
|
|
|
// ----------------------------------------------------------
|
|
|
|
|
// Menu that appears if right mouse button is pressed on a file in the "Content" ListView.
|
|
|
|
|
void QucsApp::initCursorMenu()
|
|
|
|
|
{
|
|
|
|
|
ContentMenu = new QPopupMenu(Content);
|
|
|
|
|
ContentMenu->insertItem(tr("Open"), this, SLOT(slotCMenuOpen()));
|
|
|
|
|
ContentMenu->insertItem(tr("Rename"), this, SLOT(slotCMenuRename()));
|
|
|
|
|
ContentMenu->insertItem(tr("Delete"), this, SLOT(slotCMenuDelete()));
|
|
|
|
|
|
|
|
|
|
connect(Content, SIGNAL(contextMenuRequested(QListViewItem*, const QPoint&, int)),
|
|
|
|
|
this, SLOT(slotShowContentMenu(QListViewItem*, const QPoint&, int)));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ----------------------------------------------------------
|
|
|
|
|
// Is called if right mouse button is pressed on a file in the "Content" ListView.
|
|
|
|
|
// It shows a menu.
|
|
|
|
|
void QucsApp::slotShowContentMenu(QListViewItem *item, const QPoint& point, int)
|
|
|
|
|
{
|
|
|
|
|
if(item)
|
|
|
|
|
if(item->parent() != 0) // no component, but item "schematic", ...
|
|
|
|
|
ContentMenu->popup(point);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ----------------------------------------------------------
|
|
|
|
|
// for menu that appears if right mouse button is pressed on a file in the "Content" ListView.
|
|
|
|
|
void QucsApp::slotCMenuOpen()
|
|
|
|
|
{
|
|
|
|
|
QListViewItem *i = Content->selectedItem();
|
|
|
|
|
if(i == 0) return;
|
|
|
|
|
|
|
|
|
|
slotOpenContent(i);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ----------------------------------------------------------
|
|
|
|
|
// for menu that appears if right mouse button is pressed on a file in the "Content" ListView.
|
|
|
|
|
void QucsApp::slotCMenuRename()
|
|
|
|
|
{
|
|
|
|
|
QListViewItem *i = Content->selectedItem();
|
|
|
|
|
if(i == 0) return;
|
|
|
|
|
|
|
|
|
|
QucsDoc *dc = view->Docs.current();
|
|
|
|
|
for(QucsDoc *d = view->Docs.first(); d!=0; d = view->Docs.next()) { // search, if file is open
|
|
|
|
|
if(d->DocName == QDir::current().path()+"/"+i->text(0)) {
|
|
|
|
|
QMessageBox::critical(this, tr("Error"), tr("Cannot rename an open file!"));
|
|
|
|
|
view->Docs.findRef(dc);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
view->Docs.findRef(dc);
|
|
|
|
|
|
|
|
|
|
QString Name = i->text(0);
|
|
|
|
|
QString Suffix = Name.right(4); // remember suffix
|
|
|
|
|
|
|
|
|
|
bool ok;
|
|
|
|
|
QString s = QInputDialog::getText(tr("Rename file"), tr("Enter new name:"),
|
|
|
|
|
QLineEdit::Normal, Name.left(Name.length()-4), &ok, this);
|
|
|
|
|
if(!ok) return;
|
|
|
|
|
if(s.isEmpty()) return;
|
|
|
|
|
|
|
|
|
|
QDir file("");
|
|
|
|
|
if(!file.rename(Name, s+Suffix)) {
|
|
|
|
|
QMessageBox::critical(this, tr("Error"), tr("Cannot rename file: ")+Name);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
i->setText(0, s+Suffix);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ----------------------------------------------------------
|
|
|
|
|
// for menu that appears if right mouse button is pressed on a file in the "Content" ListView.
|
|
|
|
|
void QucsApp::slotCMenuDelete()
|
|
|
|
|
{
|
|
|
|
|
QListViewItem *item = Content->selectedItem();
|
|
|
|
|
if(item == 0) return;
|
|
|
|
|
|
|
|
|
|
QucsDoc *dc = view->Docs.current();
|
|
|
|
|
for(QucsDoc *d = view->Docs.first(); d!=0; d = view->Docs.next()) { // search, if file is open
|
|
|
|
|
if(d->DocName == QDir::current().path()+"/"+item->text(0)) {
|
|
|
|
|
QMessageBox::critical(this, tr("Error"), tr("Cannot delete an open file!"));
|
|
|
|
|
view->Docs.findRef(dc);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
view->Docs.findRef(dc);
|
|
|
|
|
|
|
|
|
|
int n = QMessageBox::warning(this, tr("Warning"), tr("This will delete the file permanently! Continue ?"),
|
|
|
|
|
tr("No"), tr("Yes"));
|
|
|
|
|
if(n != 1) return;
|
|
|
|
|
|
|
|
|
|
if(!QFile::remove(item->text(0)))
|
|
|
|
|
QMessageBox::critical(this, tr("Error"), tr("Cannot delete schematic: ")+item->text(0));
|
|
|
|
|
|
|
|
|
|
if(ConSchematics == item->parent())
|
|
|
|
|
ConSchematics->takeItem(item);
|
|
|
|
|
else if(ConDisplays == item->parent())
|
|
|
|
|
ConDisplays->takeItem(item);
|
|
|
|
|
else
|
|
|
|
|
ConDatasets->takeItem(item);
|
|
|
|
|
}
|
2003-12-07 15:21:31 +00:00
|
|
|
|
|
|
|
|
|
// ----------------------------------------------------------
|
|
|
|
|
// Checks situation and reads all existing Qucs projects
|
|
|
|
|
void QucsApp::readProjects()
|
|
|
|
|
{
|
|
|
|
|
QDir ProjDir;
|
|
|
|
|
if(!ProjDir.cd(QDir::homeDirPath()+"/.qucs")) // is work directory already existing ?
|
2004-02-21 18:38:50 +00:00
|
|
|
|
if(!ProjDir.mkdir(QDir::homeDirPath()+"/.qucs")) { // no, then create it
|
2003-12-07 15:21:31 +00:00
|
|
|
|
QMessageBox::warning(this, tr("Warning"), tr("Cannot create work directory !"));
|
2004-02-21 18:38:50 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
2003-12-07 15:21:31 +00:00
|
|
|
|
ProjDir.setPath(QDir::homeDirPath()+"/.qucs");
|
|
|
|
|
QDir::setCurrent(QDir::homeDirPath()+"/.qucs");
|
|
|
|
|
|
|
|
|
|
QStringList PrDirs = ProjDir.entryList("*", QDir::Dirs, QDir::Name); // get all directories
|
|
|
|
|
PrDirs.pop_front(); // delete "." from list
|
|
|
|
|
PrDirs.pop_front(); // delete ".." from list
|
|
|
|
|
|
|
|
|
|
Projects->clear();
|
|
|
|
|
QStringList::iterator it;
|
|
|
|
|
for(it = PrDirs.begin(); it != PrDirs.end(); it++) // inserts all project directories
|
|
|
|
|
if ((*it).right(4) == "_prj") { // project directories end with "_prj"
|
|
|
|
|
(*it) = (*it).left((*it).length()-4); // remove "_prj" from project name
|
|
|
|
|
Projects->insertItem(*it);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// #########################################################################
|
|
|
|
|
bool QucsApp::closeAllFiles()
|
|
|
|
|
{
|
|
|
|
|
int Result = 0;
|
|
|
|
|
bool notForAll = true;
|
|
|
|
|
MessageBox *m = new MessageBox(tr("Closing Qucs document"),
|
|
|
|
|
tr("This document contains unsaved changes!\nDo you want to save the changes before closing?"),this);
|
2004-02-21 18:38:50 +00:00
|
|
|
|
|
2003-12-07 15:21:31 +00:00
|
|
|
|
// close all files and ask to save changed ones
|
|
|
|
|
for(QucsDoc *ptr = view->Docs.first(); ptr != 0; ) {
|
|
|
|
|
WorkView->setCurrentTab(WorkView->tabAt(view->Docs.at())); // make next document the current
|
|
|
|
|
view->viewport()->repaint();
|
|
|
|
|
view->drawn = false;
|
|
|
|
|
if(ptr->DocChanged) {
|
2004-04-04 15:56:10 +00:00
|
|
|
|
if(notForAll) Result = m->exec();
|
2003-12-07 15:21:31 +00:00
|
|
|
|
switch(Result) {
|
|
|
|
|
case 1: slotFileSave(); // save button
|
|
|
|
|
break;
|
|
|
|
|
case 2: Result = 1; // save all button
|
|
|
|
|
notForAll = false;
|
|
|
|
|
slotFileSave();
|
|
|
|
|
break;
|
|
|
|
|
case 4: Result = 3; // discard all button
|
|
|
|
|
notForAll = false;
|
|
|
|
|
break;
|
|
|
|
|
case 5: return false; // cancel button
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
view->Docs.remove();
|
|
|
|
|
ptr = view->Docs.current();
|
|
|
|
|
}
|
|
|
|
|
|
2004-04-04 15:56:10 +00:00
|
|
|
|
delete m;
|
2003-12-07 15:21:31 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ###################################################################################
|
|
|
|
|
// Changes to the document "Name" if possible.
|
|
|
|
|
bool QucsApp::gotoPage(const QString& Name)
|
|
|
|
|
{
|
|
|
|
|
QucsDoc *d;
|
|
|
|
|
int cNo, No = view->Docs.at();
|
|
|
|
|
|
|
|
|
|
for(d = view->Docs.first(); d!=0; d = view->Docs.next()) // search, if page is already loaded
|
|
|
|
|
if(d->DocName == Name) break;
|
|
|
|
|
|
|
|
|
|
if(d != 0) { // open page found ?
|
|
|
|
|
view->Docs.current()->reloadGraphs(); // load recent simulation data into displays
|
|
|
|
|
WorkView->setCurrentTab(WorkView->tabAt(view->Docs.at())); // make new document the current
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
d = new QucsDoc(WorkView, Name);
|
|
|
|
|
view->Docs.append(d); // create new page
|
|
|
|
|
|
|
|
|
|
if(!d->load()) { // load document if possible
|
|
|
|
|
view->Docs.remove();
|
|
|
|
|
view->Docs.at(No);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cNo = view->Docs.at();
|
|
|
|
|
view->Docs.at(No); // back to the last current
|
|
|
|
|
WorkView->setCurrentTab(WorkView->tabAt(cNo)); // make new document the current
|
|
|
|
|
// This must be done before the next step, in order to call the change slot !
|
|
|
|
|
|
|
|
|
|
if(view->Docs.count() == 2) // if only an untitled one was open -> close it
|
|
|
|
|
if(view->Docs.getFirst()->DocName.isEmpty())
|
|
|
|
|
if(!view->Docs.getFirst()->DocChanged)
|
|
|
|
|
view->Docs.removeRef(view->Docs.getFirst());
|
|
|
|
|
|
|
|
|
|
view->viewport()->repaint();
|
|
|
|
|
view->drawn = false;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
|
// SLOT IMPLEMENTATION
|
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
void QucsApp::slotFileSettings()
|
|
|
|
|
{
|
|
|
|
|
SettingsDialog *d = new SettingsDialog(view->Docs.current(), this);
|
|
|
|
|
d->exec();
|
|
|
|
|
delete d;
|
|
|
|
|
view->viewport()->repaint();
|
|
|
|
|
view->drawn = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// --------------------------------------------------------------
|
|
|
|
|
void QucsApp::slotFileNew()
|
|
|
|
|
{
|
2003-12-30 14:18:18 +00:00
|
|
|
|
if(!view->movingElements.isEmpty())
|
|
|
|
|
if(activeAction != editPaste) return; // elements are moving ?
|
2003-12-07 15:21:31 +00:00
|
|
|
|
statusBar()->message(tr("Creating new schematic..."));
|
|
|
|
|
|
|
|
|
|
view->Docs.append(new QucsDoc(WorkView, ""));
|
|
|
|
|
WorkView->setCurrentTab(WorkView->tabAt(view->Docs.at())); // make new document the current
|
|
|
|
|
|
|
|
|
|
statusBar()->message(tr("Ready."));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// --------------------------------------------------------------
|
|
|
|
|
void QucsApp::slotFileOpen()
|
|
|
|
|
{
|
2003-12-30 14:18:18 +00:00
|
|
|
|
if(!view->movingElements.isEmpty())
|
|
|
|
|
if(activeAction != editPaste) return; // elements are moving ?
|
2003-12-07 15:21:31 +00:00
|
|
|
|
statusBar()->message(tr("Opening file..."));
|
|
|
|
|
|
|
|
|
|
QString s = QFileDialog::getOpenFileName(".", tr("Schematic (*.sch)"), this,
|
2003-12-26 16:31:25 +00:00
|
|
|
|
"", tr("Enter a Schematic Name"));
|
2003-12-07 15:21:31 +00:00
|
|
|
|
if(!s.isEmpty()) gotoPage(s); //openDocument(s);
|
|
|
|
|
else statusBar()->message(tr("Opening aborted"), 2000);
|
|
|
|
|
|
|
|
|
|
statusBar()->message(tr("Ready."));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ###################################################################################
|
|
|
|
|
void QucsApp::updatePortNumber(int No)
|
|
|
|
|
{
|
|
|
|
|
if(No<0) return;
|
|
|
|
|
QFileInfo Info(view->Docs.current()->DocName);
|
|
|
|
|
QString Name = Info.fileName();
|
|
|
|
|
|
|
|
|
|
for(QListViewItem *p = ConSchematics->firstChild(); p!=0; p = p->nextSibling()) {
|
|
|
|
|
if(p->text(0) == Name) {
|
|
|
|
|
if(No == 0) p->setText(1,"");
|
2003-12-26 16:31:25 +00:00
|
|
|
|
else p->setText(1,QString::number(No)+tr("-port"));
|
2003-12-07 15:21:31 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ###################################################################################
|
|
|
|
|
bool QucsApp::saveCurrentFile()
|
|
|
|
|
{
|
|
|
|
|
if(view->Docs.current()->DocName.isEmpty()) {
|
|
|
|
|
QString s = QFileDialog::getSaveFileName(".", tr("Schematic (*.sch)"), this,
|
|
|
|
|
"", tr("Enter Name to Save Document"));
|
|
|
|
|
if(s.isEmpty()) return false;
|
|
|
|
|
|
|
|
|
|
QFileInfo Info(s);
|
|
|
|
|
if(Info.extension().isEmpty()) s += ".sch";
|
|
|
|
|
view->Docs.current()->setName(s);
|
|
|
|
|
|
|
|
|
|
Info.setFile(s);
|
|
|
|
|
s = Info.fileName(); // remove path from file name
|
|
|
|
|
if(Info.extension(false) == "dpl")
|
|
|
|
|
new QListViewItem(ConDisplays, s); // insert new name in Content ListView
|
|
|
|
|
else
|
|
|
|
|
new QListViewItem(ConSchematics, s); // insert new name in Content ListView
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
view->Docs.current()->PosX = view->contentsX();
|
|
|
|
|
view->Docs.current()->PosY = view->contentsY();
|
|
|
|
|
updatePortNumber(view->Docs.current()->save()); // SAVE
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ###################################################################################
|
|
|
|
|
void QucsApp::slotFileSave()
|
|
|
|
|
{
|
2003-12-30 14:18:18 +00:00
|
|
|
|
if(!view->movingElements.isEmpty())
|
|
|
|
|
if(activeAction != editPaste) return; // elements are moving ?
|
2003-12-07 15:21:31 +00:00
|
|
|
|
statusBar()->message(tr("Saving file..."));
|
|
|
|
|
view->blockSignals(true); // no user interaction during that time
|
|
|
|
|
|
|
|
|
|
if(!saveCurrentFile()) {
|
|
|
|
|
statusBar()->message(tr("Saving aborted"), 2000);
|
|
|
|
|
statusBar()->message(tr("Ready."));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
view->blockSignals(false);
|
|
|
|
|
statusBar()->message(tr("Ready."));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ###################################################################################
|
|
|
|
|
void QucsApp::slotFileSaveAs()
|
|
|
|
|
{
|
2003-12-30 14:18:18 +00:00
|
|
|
|
if(!view->movingElements.isEmpty())
|
|
|
|
|
if(activeAction != editPaste) return; // elements are moving ?
|
2003-12-07 15:21:31 +00:00
|
|
|
|
statusBar()->message(tr("Saving file under new filename..."));
|
|
|
|
|
view->blockSignals(true); // no user interaction during the time
|
|
|
|
|
|
|
|
|
|
QString s = QFileDialog::getSaveFileName(".", tr("Schematic (*.sch)"), this,
|
2003-12-26 16:31:25 +00:00
|
|
|
|
"", tr("Enter a Schematic Name"));
|
2003-12-07 15:21:31 +00:00
|
|
|
|
if(!s.isEmpty()) {
|
|
|
|
|
view->Docs.current()->setName(s);
|
|
|
|
|
|
|
|
|
|
QFileInfo Info(s);
|
|
|
|
|
if(Info.extension().isEmpty()) s += ".sch";
|
|
|
|
|
view->Docs.current()->setName(s);
|
|
|
|
|
|
|
|
|
|
Info.setFile(s);
|
|
|
|
|
s = Info.fileName(); // remove path from file name
|
|
|
|
|
if(Info.extension(false) == "dpl")
|
|
|
|
|
new QListViewItem(ConDisplays, s); // insert new name in Content ListView
|
|
|
|
|
else
|
|
|
|
|
new QListViewItem(ConSchematics, s); // insert new name in Content ListView
|
|
|
|
|
|
|
|
|
|
view->Docs.current()->PosX = view->contentsX();
|
|
|
|
|
view->Docs.current()->PosY = view->contentsY();
|
|
|
|
|
updatePortNumber(view->Docs.current()->save()); // SAVE
|
|
|
|
|
}
|
|
|
|
|
else statusBar()->message(tr("Saving aborted"), 2000);
|
|
|
|
|
|
|
|
|
|
view->blockSignals(false);
|
|
|
|
|
statusBar()->message(tr("Ready."));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ###################################################################################
|
|
|
|
|
void QucsApp::slotFileSaveAll()
|
|
|
|
|
{
|
2003-12-30 14:18:18 +00:00
|
|
|
|
if(!view->movingElements.isEmpty())
|
|
|
|
|
if(activeAction != editPaste) return; // elements are moving ?
|
2003-12-07 15:21:31 +00:00
|
|
|
|
statusBar()->message(tr("Saving all files..."));
|
|
|
|
|
|
|
|
|
|
QucsDoc *tmp = view->Docs.current(); // remember the current
|
|
|
|
|
view->blockSignals(true); // no user interaction during the time
|
|
|
|
|
|
|
|
|
|
for(QucsDoc *ptr = view->Docs.first(); ptr != 0; ptr = view->Docs.next()) {
|
|
|
|
|
if(ptr->DocName.isEmpty())
|
|
|
|
|
WorkView->setCurrentTab(WorkView->tabAt(view->Docs.at())); // make document the current
|
|
|
|
|
saveCurrentFile();
|
|
|
|
|
}
|
2004-03-28 19:51:04 +00:00
|
|
|
|
|
2003-12-07 15:21:31 +00:00
|
|
|
|
view->Docs.findRef(tmp);
|
|
|
|
|
view->blockSignals(false);
|
|
|
|
|
WorkView->setCurrentTab(WorkView->tabAt(view->Docs.at())); // back to the current document
|
|
|
|
|
|
|
|
|
|
statusBar()->message(tr("Ready."));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ###################################################################################
|
|
|
|
|
void QucsApp::slotFileClose()
|
|
|
|
|
{
|
2003-12-30 14:18:18 +00:00
|
|
|
|
if(!view->movingElements.isEmpty())
|
|
|
|
|
if(activeAction != editPaste) return; // elements are moving ?
|
2003-12-07 15:21:31 +00:00
|
|
|
|
statusBar()->message(tr("Closing file..."));
|
|
|
|
|
|
|
|
|
|
if(view->Docs.current()->DocChanged) {
|
|
|
|
|
switch(QMessageBox::warning(this,tr("Closing Qucs document"),
|
|
|
|
|
tr("The document contains unsaved changes!\nDo you want to save the changes before closing?"),
|
|
|
|
|
tr("&Save"), tr("&Discard"), tr("Cancel"), 0, 2)) {
|
|
|
|
|
case 0 : slotFileSave();
|
|
|
|
|
break;
|
|
|
|
|
case 2 : return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
view->Docs.remove();
|
|
|
|
|
WorkView->setCurrentTab(WorkView->tabAt(view->Docs.at())); // make new document the current
|
|
|
|
|
|
|
|
|
|
if(view->Docs.isEmpty()) // if no document left, create an untitled
|
|
|
|
|
view->Docs.append(new QucsDoc(WorkView, ""));
|
|
|
|
|
|
|
|
|
|
QucsDoc *d = view->Docs.current();
|
|
|
|
|
view->resizeContents(int(d->Scale*double(d->ViewX2-d->ViewX1)),
|
|
|
|
|
int(d->Scale*double(d->ViewY2-d->ViewY1)));
|
|
|
|
|
view->setContentsPos(d->PosX, d->PosY); // set view area
|
|
|
|
|
view->viewport()->repaint();
|
|
|
|
|
view->drawn = false;
|
|
|
|
|
|
|
|
|
|
statusBar()->message(tr("Ready."));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ###################################################################################
|
|
|
|
|
void QucsApp::slotFilePrint()
|
|
|
|
|
{
|
2003-12-30 14:18:18 +00:00
|
|
|
|
if(!view->movingElements.isEmpty())
|
|
|
|
|
if(activeAction != editPaste) return; // elements are moving ?
|
2003-12-07 15:21:31 +00:00
|
|
|
|
statusBar()->message(tr("Printing..."));
|
|
|
|
|
|
|
|
|
|
if (Printer.setup(this)) // print dialog
|
|
|
|
|
{
|
|
|
|
|
QPainter painter;
|
|
|
|
|
painter.begin(&Printer);
|
|
|
|
|
view->Docs.current()->paint(&painter);
|
|
|
|
|
painter.end();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
statusBar()->message(tr("Ready."));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------
|
|
|
|
|
// Exits the application.
|
|
|
|
|
void QucsApp::slotFileQuit()
|
|
|
|
|
{
|
2003-12-30 14:18:18 +00:00
|
|
|
|
if(!view->movingElements.isEmpty())
|
|
|
|
|
if(activeAction != editPaste) return; // elements are moving ?
|
2003-12-07 15:21:31 +00:00
|
|
|
|
statusBar()->message(tr("Exiting application..."));
|
|
|
|
|
|
|
|
|
|
int exit=QMessageBox::information(this, tr("Quit..."),
|
|
|
|
|
tr("Do you really want to quit?"),
|
|
|
|
|
QMessageBox::Ok, QMessageBox::Cancel);
|
|
|
|
|
if(exit == 1)
|
2004-02-21 18:38:50 +00:00
|
|
|
|
if(closeAllFiles()) {
|
|
|
|
|
saveSettings();
|
|
|
|
|
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-02-21 18:38:50 +00:00
|
|
|
|
if(closeAllFiles()) {
|
|
|
|
|
saveSettings();
|
|
|
|
|
qApp->quit();
|
|
|
|
|
}
|
2003-12-07 15:21:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------
|
|
|
|
|
/*void QucsApp::slotActivateCopy(bool on)
|
|
|
|
|
{
|
|
|
|
|
editCut->setEnabled(on);
|
|
|
|
|
editCopy->setEnabled(on);
|
|
|
|
|
}*/
|
|
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------
|
|
|
|
|
void QucsApp::slotEditCut()
|
|
|
|
|
{
|
|
|
|
|
if(!view->movingElements.isEmpty()) return; // elements are moving ?
|
|
|
|
|
statusBar()->message(tr("Cutting selection..."));
|
|
|
|
|
|
|
|
|
|
QClipboard *cb = QApplication::clipboard(); // get system clipboard
|
|
|
|
|
QString s = view->Docs.current()->copySelected(true);
|
|
|
|
|
if(!s.isEmpty()) {
|
|
|
|
|
cb->setText(s, QClipboard::Clipboard);
|
|
|
|
|
view->viewport()->repaint();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
statusBar()->message(tr("Ready."));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ###################################################################################
|
|
|
|
|
void QucsApp::slotEditCopy()
|
|
|
|
|
{
|
|
|
|
|
if(!view->movingElements.isEmpty()) return; // elements are moving ?
|
|
|
|
|
statusBar()->message(tr("Copying selection to clipboard..."));
|
|
|
|
|
|
|
|
|
|
QClipboard *cb = QApplication::clipboard(); // get system clipboard
|
|
|
|
|
QString s = view->Docs.current()->copySelected(false);
|
|
|
|
|
if(!s.isEmpty())
|
|
|
|
|
cb->setText(s, QClipboard::Clipboard);
|
|
|
|
|
|
|
|
|
|
statusBar()->message(tr("Ready."));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ###################################################################################
|
|
|
|
|
void QucsApp::slotEditPaste(bool on)
|
|
|
|
|
{
|
|
|
|
|
if(!view->movingElements.isEmpty()) return; // elements are moving ?
|
|
|
|
|
if(!on) {
|
|
|
|
|
view->MouseMoveAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MousePressAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MouseReleaseAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MouseDoubleClickAction = &QucsView::MouseDoNothing;
|
|
|
|
|
activeAction = 0; // no action active
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(!view->pasteElements()) {
|
|
|
|
|
editPaste->blockSignals(true); // do not call toggle slot
|
|
|
|
|
editPaste->setOn(false); // set toolbar button off
|
|
|
|
|
editPaste->blockSignals(false);
|
|
|
|
|
return; // if clipboard empty
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
statusBar()->message(tr("Inserting clipboard contents..."));
|
|
|
|
|
|
|
|
|
|
if(activeAction) {
|
|
|
|
|
activeAction->blockSignals(true); // do not call toggle slot
|
|
|
|
|
activeAction->setOn(false); // set last toolbar button off
|
|
|
|
|
activeAction->blockSignals(false);
|
|
|
|
|
}
|
|
|
|
|
activeAction = editPaste;
|
|
|
|
|
|
|
|
|
|
view->drawn = false;
|
|
|
|
|
view->MouseMoveAction = &QucsView::MMovePaste;
|
|
|
|
|
view->MousePressAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MouseReleaseAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MouseDoubleClickAction = &QucsView::MouseDoNothing;
|
|
|
|
|
|
|
|
|
|
statusBar()->message(tr("Ready."));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ###################################################################################
|
|
|
|
|
// turn Toolbar on or off
|
|
|
|
|
void QucsApp::slotViewToolBar(bool toggle)
|
|
|
|
|
{
|
|
|
|
|
statusBar()->message(tr("Toggle toolbar..."));
|
|
|
|
|
|
|
|
|
|
if (toggle== false) fileToolbar->hide();
|
|
|
|
|
else fileToolbar->show();
|
|
|
|
|
|
|
|
|
|
statusBar()->message(tr("Ready."));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ###################################################################################
|
|
|
|
|
// turn Statusbar on or off
|
|
|
|
|
void QucsApp::slotViewStatusBar(bool toggle)
|
|
|
|
|
{
|
|
|
|
|
statusBar()->message(tr("Toggle statusbar..."));
|
|
|
|
|
|
|
|
|
|
if (toggle == false) statusBar()->hide();
|
|
|
|
|
else statusBar()->show();
|
|
|
|
|
|
|
|
|
|
statusBar()->message(tr("Ready."));
|
|
|
|
|
}
|
|
|
|
|
|
2004-01-18 14:41:45 +00:00
|
|
|
|
// ###################################################################################
|
|
|
|
|
void QucsApp::slotHelpIndex()
|
|
|
|
|
{
|
2004-03-28 19:51:04 +00:00
|
|
|
|
HelpDialog *d = new HelpDialog("index.html");
|
2004-01-18 14:41:45 +00:00
|
|
|
|
d->show();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ###################################################################################
|
|
|
|
|
void QucsApp::slotGettingStarted()
|
|
|
|
|
{
|
2004-03-28 19:51:04 +00:00
|
|
|
|
HelpDialog *d = new HelpDialog("start.html");
|
2004-01-18 14:41:45 +00:00
|
|
|
|
d->show();
|
|
|
|
|
}
|
|
|
|
|
|
2003-12-07 15:21:31 +00:00
|
|
|
|
// ###################################################################################
|
|
|
|
|
void QucsApp::slotHelpAbout()
|
|
|
|
|
{
|
|
|
|
|
QMessageBox::about(this,tr("About..."),
|
2003-12-26 16:31:25 +00:00
|
|
|
|
tr("Qucs Version ")+VERSION+tr("\nQt universal circuit simulator\n")+
|
|
|
|
|
tr("Copyright (C) 2003 by Michael Margraf\nSimulator by Stefan Jahn\n")+
|
|
|
|
|
tr("Special thanks to Jens Flucke"));
|
2003-12-07 15:21:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ###################################################################################
|
|
|
|
|
void QucsApp::slotHelpAboutQt()
|
|
|
|
|
{
|
|
|
|
|
QMessageBox::aboutQt(this,tr("About Qt"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ###################################################################################
|
|
|
|
|
// Is called when the toolbar button is pressed to go into a subcircuit.
|
|
|
|
|
void QucsApp::slotIntoHierarchy()
|
|
|
|
|
{
|
|
|
|
|
QucsDoc *Doc = view->Docs.current();
|
|
|
|
|
Component *pc = view->Docs.current()->searchSelSubcircuit();
|
|
|
|
|
if(pc == 0) return;
|
|
|
|
|
QString s = pc->Props.getFirst()->Value;
|
|
|
|
|
if(s.at(0) != '/') s = QDir::currentDirPath()+"/"+s;
|
|
|
|
|
if(!gotoPage(s)) return;
|
|
|
|
|
|
|
|
|
|
QString *ps = new QString(Doc->DocName);
|
|
|
|
|
HierarchyHistory.append(ps); // remember for the way back
|
|
|
|
|
popH->setEnabled(true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ###################################################################################
|
|
|
|
|
// Is called when the toolbar button is pressed to go back from a subcircuit.
|
|
|
|
|
void QucsApp::slotPopHierarchy()
|
|
|
|
|
{
|
|
|
|
|
if(HierarchyHistory.count() == 0) return;
|
|
|
|
|
|
|
|
|
|
if(!gotoPage( *(HierarchyHistory.last()) )) return;
|
|
|
|
|
|
|
|
|
|
HierarchyHistory.remove();
|
|
|
|
|
if(HierarchyHistory.count() == 0) popH->setEnabled(false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ###################################################################################
|
|
|
|
|
// Is called when another document is selected via the TabBar.
|
|
|
|
|
void QucsApp::slotChangeView(int id)
|
|
|
|
|
{
|
|
|
|
|
QucsDoc *d = view->Docs.current();
|
|
|
|
|
d->PosX = view->contentsX(); // save position for old document
|
|
|
|
|
d->PosY = view->contentsY();
|
|
|
|
|
|
|
|
|
|
d = view->Docs.at(WorkView->indexOf(id)); // new current document
|
|
|
|
|
view->resizeContents(int(d->Scale*double(d->ViewX2-d->ViewX1)),
|
|
|
|
|
int(d->Scale*double(d->ViewY2-d->ViewY1)));
|
|
|
|
|
view->setContentsPos(d->PosX, d->PosY);
|
|
|
|
|
|
|
|
|
|
view->Docs.current()->reloadGraphs(); // load recent simulation data into schematic
|
|
|
|
|
view->viewport()->repaint();
|
|
|
|
|
view->drawn = false;
|
|
|
|
|
|
|
|
|
|
HierarchyHistory.clear(); // no subcircuit history
|
|
|
|
|
popH->setEnabled(false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ###################################################################################
|
|
|
|
|
void QucsApp::slotShowAll()
|
|
|
|
|
{
|
2004-03-28 19:51:04 +00:00
|
|
|
|
int x1 = view->Docs.current()->UsedX1;
|
|
|
|
|
int y1 = view->Docs.current()->UsedY1;
|
|
|
|
|
int x2 = view->Docs.current()->UsedX2;
|
|
|
|
|
int y2 = view->Docs.current()->UsedY2;
|
|
|
|
|
|
2003-12-07 15:21:31 +00:00
|
|
|
|
if(x2==0) if(y2==0) if(x1==0) if(y1==0) return;
|
|
|
|
|
x1 -= 40; y1 -= 40;
|
|
|
|
|
x2 += 40; y2 += 40;
|
2004-03-28 19:51:04 +00:00
|
|
|
|
|
2003-12-07 15:21:31 +00:00
|
|
|
|
double xScale = double(view->visibleWidth()) / double(x2-x1);
|
|
|
|
|
double yScale = double(view->visibleHeight()) / double(y2-y1);
|
|
|
|
|
if(xScale > yScale) xScale = yScale;
|
|
|
|
|
view->Docs.current()->Scale = xScale;
|
|
|
|
|
|
|
|
|
|
view->Docs.current()->ViewX1 = x1;
|
|
|
|
|
view->Docs.current()->ViewY1 = y1;
|
|
|
|
|
view->Docs.current()->ViewX2 = x2;
|
|
|
|
|
view->Docs.current()->ViewY2 = y2;
|
|
|
|
|
view->resizeContents(int(xScale*double(x2-x1)), int(xScale*double(y2-y1)));
|
|
|
|
|
|
|
|
|
|
view->viewport()->repaint();
|
|
|
|
|
view->drawn = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// -----------------------------------------------------------
|
|
|
|
|
// Sets the scale factor to 1.
|
|
|
|
|
void QucsApp::slotShowOne()
|
|
|
|
|
{
|
|
|
|
|
view->Docs.current()->Scale = 1.0;
|
|
|
|
|
|
2004-03-28 19:51:04 +00:00
|
|
|
|
int x1 = view->Docs.current()->UsedX1;
|
|
|
|
|
int y1 = view->Docs.current()->UsedY1;
|
|
|
|
|
int x2 = view->Docs.current()->UsedX2;
|
|
|
|
|
int y2 = view->Docs.current()->UsedY2;
|
|
|
|
|
|
|
|
|
|
// view->Docs.current()->sizeOfAll(x1, y1, x2, y2);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
if(x2==0) if(y2==0) if(x1==0) if(y1==0) x2 = y2 = 800;
|
|
|
|
|
|
|
|
|
|
view->Docs.current()->ViewX1 = x1-40;
|
|
|
|
|
view->Docs.current()->ViewY1 = y1-40;
|
|
|
|
|
view->Docs.current()->ViewX2 = x2+40;
|
|
|
|
|
view->Docs.current()->ViewY2 = y2+40;
|
|
|
|
|
view->resizeContents(x2-x1+80, y2-y1+80);
|
|
|
|
|
view->viewport()->repaint();
|
|
|
|
|
view->drawn = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void QucsApp::slotZoomIn()
|
|
|
|
|
{
|
|
|
|
|
view->Zoom(2.0);
|
|
|
|
|
view->viewport()->repaint();
|
|
|
|
|
view->drawn = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void QucsApp::slotZoomOut()
|
|
|
|
|
{
|
|
|
|
|
view->Zoom(0.5);
|
|
|
|
|
view->viewport()->repaint();
|
|
|
|
|
view->drawn = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------
|
|
|
|
|
// Is called when the simulate toolbar button is pressed.
|
|
|
|
|
void QucsApp::slotSimulate()
|
|
|
|
|
{
|
|
|
|
|
if(view->Docs.current()->DocName.isEmpty()) // if document 'untitled' ...
|
|
|
|
|
if(!saveCurrentFile()) return; // ... save schematic befor simulating
|
|
|
|
|
|
2004-03-28 19:51:04 +00:00
|
|
|
|
SimMessage *sim = new SimMessage(this);
|
|
|
|
|
// disconnect is automatically performed, if one of the involved objects is destroyed !
|
|
|
|
|
connect(sim, SIGNAL(SimulationEnded(int, SimMessage*)), this,
|
|
|
|
|
SLOT(slotAfterSimulation(int, SimMessage*)));
|
|
|
|
|
connect(sim, SIGNAL(displayDataPage()), this, SLOT(slotChangePage()));
|
|
|
|
|
|
|
|
|
|
// sim.ProgText->clear();
|
|
|
|
|
// sim.ErrText->clear();
|
|
|
|
|
sim->show();
|
2003-12-07 15:21:31 +00:00
|
|
|
|
|
|
|
|
|
QDate d = QDate::currentDate(); // get date of today
|
|
|
|
|
QTime t = QTime::currentTime(); // get time
|
2004-03-28 19:51:04 +00:00
|
|
|
|
sim->ProgText->insert(tr("Starting new simulation on ")+d.toString("ddd dd. MMM yyyy"));
|
|
|
|
|
sim->ProgText->insert(tr(" at ")+t.toString("hh:mm:ss")+"\n\n");
|
2003-12-07 15:21:31 +00:00
|
|
|
|
|
2004-03-28 19:51:04 +00:00
|
|
|
|
sim->ProgText->insert(tr("creating netlist ...."));
|
2003-12-07 15:21:31 +00:00
|
|
|
|
QFile NetlistFile("netlist.txt");
|
|
|
|
|
if(!view->Docs.current()->createNetlist(&NetlistFile)) {
|
2004-03-28 19:51:04 +00:00
|
|
|
|
sim->ErrText->insert(tr("ERROR: Cannot create netlist file!\nAborted."));
|
2004-04-04 15:56:10 +00:00
|
|
|
|
sim->errorSimEnded();
|
2003-12-07 15:21:31 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
2004-03-28 19:51:04 +00:00
|
|
|
|
sim->ProgText->insert(tr("done.\n"));
|
2003-12-07 15:21:31 +00:00
|
|
|
|
|
|
|
|
|
QStringList com;
|
2003-12-26 18:38:16 +00:00
|
|
|
|
com << BINARYDIR "qucsator" << "-i" << "netlist.txt";
|
2003-12-07 15:21:31 +00:00
|
|
|
|
com << "-o" << view->Docs.current()->DataSet;
|
2004-03-28 19:51:04 +00:00
|
|
|
|
if(!sim->startProcess(com)) {
|
|
|
|
|
sim->ErrText->insert(tr("ERROR: Cannot start simulator!"));
|
2004-04-04 15:56:10 +00:00
|
|
|
|
sim->errorSimEnded();
|
2003-12-07 15:21:31 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------
|
|
|
|
|
// Is called after the simulation process terminates.
|
2004-03-28 19:51:04 +00:00
|
|
|
|
void QucsApp::slotAfterSimulation(int Status, SimMessage *sim)
|
2003-12-07 15:21:31 +00:00
|
|
|
|
{
|
2004-03-28 19:51:04 +00:00
|
|
|
|
bool shouldClosed = false; // should simulation window close after simualtion
|
2003-12-07 15:21:31 +00:00
|
|
|
|
QDate d = QDate::currentDate(); // get date of today
|
|
|
|
|
QTime t = QTime::currentTime(); // get time
|
|
|
|
|
|
|
|
|
|
if(Status == 0) { // errors ocurred ?
|
2004-03-28 19:51:04 +00:00
|
|
|
|
sim->ProgText->insert(tr("\nSimulation ended on ")+d.toString("ddd dd. MMM yyyy"));
|
|
|
|
|
sim->ProgText->insert(tr(" at ")+t.toString("hh:mm:ss")+"\n");
|
|
|
|
|
sim->ProgText->insert(tr("Ready.\n"));
|
2003-12-07 15:21:31 +00:00
|
|
|
|
|
|
|
|
|
if(view->Docs.current()->SimOpenDpl) {
|
2004-03-28 19:51:04 +00:00
|
|
|
|
shouldClosed = true;
|
2003-12-07 15:21:31 +00:00
|
|
|
|
slotChangePage(); // switch to the corresponding data display page
|
|
|
|
|
view->viewport()->update();
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
view->Docs.current()->reloadGraphs(); // load recent simulation data into schematic
|
|
|
|
|
view->viewport()->update();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// put all dataset files into "Content"-ListView (update)
|
|
|
|
|
/* QStringList Elements = ProjDir.entryList("*.dat", QDir::Files, QDir::Name);
|
|
|
|
|
for(it = Elements.begin(); it != Elements.end(); ++it)
|
|
|
|
|
new QListViewItem(ConDatasets, (*it).ascii());*/
|
|
|
|
|
}
|
|
|
|
|
else {
|
2004-03-28 19:51:04 +00:00
|
|
|
|
sim->ProgText->insert(tr("\nErrors occured during simulation on ")+d.toString("ddd dd. MMM yyyy"));
|
|
|
|
|
sim->ProgText->insert(tr(" at ")+t.toString("hh:mm:ss")+"\n");
|
|
|
|
|
sim->ProgText->insert(tr("Aborted.\n"));
|
2003-12-07 15:21:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-02-21 18:38:50 +00:00
|
|
|
|
|
2003-12-07 15:21:31 +00:00
|
|
|
|
QFile file("log.txt"); // save simulator messages
|
|
|
|
|
if(file.open(IO_WriteOnly)) {
|
|
|
|
|
int z;
|
|
|
|
|
QTextStream stream(&file);
|
2003-12-26 16:31:25 +00:00
|
|
|
|
stream << tr("Output:\n----------\n\n");
|
2004-03-28 19:51:04 +00:00
|
|
|
|
for(z=0; z<=sim->ProgText->paragraphs(); z++)
|
|
|
|
|
stream << sim->ProgText->text(z) << "\n";
|
2003-12-26 16:31:25 +00:00
|
|
|
|
stream << tr("\n\n\nErrors:\n--------\n\n");
|
2004-03-28 19:51:04 +00:00
|
|
|
|
for(z=0; z<sim->ErrText->paragraphs(); z++)
|
|
|
|
|
stream << sim->ErrText->text(z) << "\n";
|
2003-12-07 15:21:31 +00:00
|
|
|
|
file.close();
|
|
|
|
|
}
|
2004-03-28 19:51:04 +00:00
|
|
|
|
|
|
|
|
|
if(shouldClosed) sim->slotClose(); // close and delete simulation window
|
2003-12-07 15:21:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------
|
|
|
|
|
// Is called to show the output messages of the last simulation.
|
|
|
|
|
void QucsApp::slotShowLastMsg()
|
|
|
|
|
{
|
2004-03-28 19:51:04 +00:00
|
|
|
|
FileShowDialog *d = new FileShowDialog("log.txt", this);
|
|
|
|
|
d->show();
|
2003-12-07 15:21:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------
|
|
|
|
|
// Is called to show the netlist of the last simulation.
|
|
|
|
|
void QucsApp::slotShowLastNetlist()
|
|
|
|
|
{
|
2004-03-28 19:51:04 +00:00
|
|
|
|
FileShowDialog *d = new FileShowDialog("netlist.txt", this);
|
|
|
|
|
d->show();
|
2003-12-07 15:21:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------
|
|
|
|
|
// Changes to the corresponding data display page or vice versa.
|
|
|
|
|
void QucsApp::slotChangePage()
|
|
|
|
|
{
|
|
|
|
|
QucsDoc *Doc = view->Docs.current();
|
|
|
|
|
QString Name = Doc->DataDisplay;
|
|
|
|
|
if(Name.isEmpty()) {
|
|
|
|
|
QMessageBox::critical(this, tr("Error"), tr("No page set !"));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QFileInfo Info;
|
|
|
|
|
QucsDoc *d;
|
2004-02-21 18:38:50 +00:00
|
|
|
|
|
2003-12-07 15:21:31 +00:00
|
|
|
|
for(d = view->Docs.first(); d!=0; d = view->Docs.next()) { // search, if page is already loaded
|
|
|
|
|
Info.setFile(d->DocName);
|
|
|
|
|
if(Info.fileName() == Name) break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(d == 0) { // no open page found ?
|
|
|
|
|
Info.setFile(Doc->DocName);
|
|
|
|
|
QFile file(Info.dirPath(true)+"/"+Name);
|
|
|
|
|
if(!file.open(IO_ReadOnly)) // load page
|
|
|
|
|
if(!file.open(IO_ReadWrite)) { // if it doesn't exist, create
|
|
|
|
|
view->Docs.findRef(Doc);
|
|
|
|
|
QMessageBox::critical(this, tr("Error"), tr("Cannot create ")+Info.dirPath(true)+"/"+Name);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
else new QListViewItem(ConDisplays, Name); // insert new name in Content ListView
|
|
|
|
|
file.close();
|
|
|
|
|
|
|
|
|
|
d = new QucsDoc(WorkView, Info.dirPath(true)+"/"+Name);
|
|
|
|
|
view->Docs.append(d); // create new page
|
|
|
|
|
|
|
|
|
|
if(!d->load()) {
|
|
|
|
|
view->Docs.remove();
|
|
|
|
|
view->Docs.findRef(Doc);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int cNo = view->Docs.at();
|
|
|
|
|
view->Docs.findRef(Doc); // back to the last current
|
|
|
|
|
WorkView->setCurrentTab(WorkView->tabAt(cNo)); // make new document the current
|
|
|
|
|
// This must be done before the next step, in order to call the change slot !
|
|
|
|
|
|
|
|
|
|
TabView->setCurrentPage(2); // switch to "Component"-Tab
|
|
|
|
|
if(Name.right(4) == ".dpl") {
|
|
|
|
|
CompChoose->setCurrentItem(COMBO_Diagrams); // switch to diagram selection
|
|
|
|
|
slotSetCompView(COMBO_Diagrams);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// #########################################################################################
|
|
|
|
|
// Is called when a double click is made in the content ListView.
|
|
|
|
|
//void QucsApp::slotOpenContent(QListViewItem *item, const QPoint &, int column) // QT 3.2
|
|
|
|
|
void QucsApp::slotOpenContent(QListViewItem *item)
|
|
|
|
|
{
|
|
|
|
|
if(item == 0) return; // no item was double clicked
|
|
|
|
|
if(item->parent() == 0) return; // no component, but item "schematic", ...
|
|
|
|
|
|
|
|
|
|
gotoPage(QDir::currentDirPath()+"/"+item->text(0));
|
|
|
|
|
|
|
|
|
|
if(item->text(1).isEmpty()) return;
|
|
|
|
|
// switch on the 'select' action
|
|
|
|
|
select->blockSignals(true);
|
|
|
|
|
select->setOn(true);
|
|
|
|
|
select->blockSignals(false);
|
|
|
|
|
slotSelect(true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// #########################################################################################
|
|
|
|
|
// Is called when the open project menu is called.
|
|
|
|
|
void QucsApp::slotMenuOpenProject()
|
|
|
|
|
{
|
|
|
|
|
QFileDialog *d = new QFileDialog(QDir::homeDirPath());
|
2003-12-26 16:31:25 +00:00
|
|
|
|
d->setCaption(tr("Choose Project Directory for Opening"));
|
2003-12-07 15:21:31 +00:00
|
|
|
|
d->setShowHiddenFiles(true);
|
|
|
|
|
d->setMode(QFileDialog::DirectoryOnly);
|
|
|
|
|
if(d->exec() != QDialog::Accepted) return;
|
|
|
|
|
|
|
|
|
|
QString s = d->selectedFile();
|
|
|
|
|
if(s.isEmpty()) return;
|
|
|
|
|
|
|
|
|
|
s = s.left(s.length()-1); // cut off trailing '/'
|
|
|
|
|
int i = s.findRev('/');
|
|
|
|
|
if(i > 0) s = s.mid(i+1); // cut out the last subdirectory
|
|
|
|
|
s.remove("_prj");
|
|
|
|
|
OpenProject(d->selectedFile(), s);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// #########################################################################################
|
|
|
|
|
// Is called when the open project button is pressed.
|
|
|
|
|
void QucsApp::slotOpenProject(QListBoxItem *item)
|
|
|
|
|
{
|
|
|
|
|
OpenProject(QDir::homeDirPath()+"/.qucs/"+item->text()+"_prj", item->text());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// #########################################################################################
|
|
|
|
|
// Checks whether this file is a qucs file and whether it is an subcircuit.
|
|
|
|
|
// It returns the number of subcircuit ports.
|
|
|
|
|
int QucsApp::testFile(const QString& DocName)
|
|
|
|
|
{
|
|
|
|
|
QFile file(DocName);
|
|
|
|
|
if(!file.open(IO_ReadOnly)) {
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString Line;
|
|
|
|
|
QTextStream stream(&file);
|
|
|
|
|
|
|
|
|
|
// read header **************************
|
|
|
|
|
if(stream.atEnd()) {
|
|
|
|
|
file.close();
|
|
|
|
|
return -2;
|
|
|
|
|
}
|
|
|
|
|
Line = stream.readLine();
|
|
|
|
|
if(Line.left(16) != "<Qucs Schematic ") { // wrong file type ?
|
|
|
|
|
file.close();
|
|
|
|
|
return -3;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString s = VERSION;
|
2004-01-18 14:41:45 +00:00
|
|
|
|
s.remove('.');
|
2003-12-07 15:21:31 +00:00
|
|
|
|
Line = Line.mid(16, Line.length()-17);
|
2004-01-18 14:41:45 +00:00
|
|
|
|
Line.remove('.');
|
|
|
|
|
if(Line > s) { // wrong version number ? (only backward compatible)
|
2003-12-07 15:21:31 +00:00
|
|
|
|
file.close();
|
|
|
|
|
return -4;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// read content *************************
|
|
|
|
|
while(!stream.atEnd()) {
|
|
|
|
|
Line = stream.readLine();
|
|
|
|
|
if(Line == "<Components>") break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int z=0;
|
|
|
|
|
while(!stream.atEnd()) {
|
|
|
|
|
Line = stream.readLine();
|
|
|
|
|
if(Line == "</Components>") { file.close(); return z; } // return number of ports
|
|
|
|
|
|
|
|
|
|
Line = Line.stripWhiteSpace();
|
|
|
|
|
s = Line.section(' ',0,0); // component type
|
|
|
|
|
if(s == "<Port") z++;
|
|
|
|
|
}
|
|
|
|
|
return -5; // component field not closed
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// #########################################################################################
|
|
|
|
|
// Opens an existing project.
|
|
|
|
|
void QucsApp::OpenProject(const QString& Path, const QString& Name)
|
|
|
|
|
{
|
|
|
|
|
if(!closeAllFiles()) return; // close files and ask for saving them
|
|
|
|
|
view->Docs.append(new QucsDoc(WorkView, "")); // create 'untitled' file
|
|
|
|
|
view->viewport()->repaint();
|
|
|
|
|
view->drawn = false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(!QDir::setCurrent(Path)) { // change to project directory
|
|
|
|
|
QMessageBox::critical(this, tr("Error"), tr("Cannot access project directory: ")+Path);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
QDir ProjDir(".");
|
|
|
|
|
|
|
|
|
|
Content->setColumnText(0,tr("Content of '")+Name+tr("'")); // column text of Content ListView
|
|
|
|
|
// Content->setColumnWidth(0, Content->width()-5);
|
|
|
|
|
|
|
|
|
|
Content->clear(); // empty content view
|
|
|
|
|
ConDatasets = new QListViewItem(Content, tr("Datasets"));
|
|
|
|
|
ConDisplays = new QListViewItem(Content, tr("Data Displays"));
|
|
|
|
|
ConSchematics = new QListViewItem(Content, tr("Schematics"));
|
|
|
|
|
|
|
|
|
|
int n;
|
|
|
|
|
// put all schematic files into "Content"-ListView
|
|
|
|
|
QStringList Elements = ProjDir.entryList("*.sch", QDir::Files, QDir::Name);
|
|
|
|
|
QStringList::iterator it;
|
|
|
|
|
for(it = Elements.begin(); it != Elements.end(); ++it) {
|
|
|
|
|
n = testFile((*it).ascii());
|
|
|
|
|
if(n >= 0) {
|
2003-12-26 16:31:25 +00:00
|
|
|
|
if(n > 0) new QListViewItem(ConSchematics, (*it).ascii(), QString::number(n)+tr("-port"));
|
2003-12-07 15:21:31 +00:00
|
|
|
|
else new QListViewItem(ConSchematics, (*it).ascii());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// put all data display files into "Content"-ListView
|
|
|
|
|
Elements = ProjDir.entryList("*.dpl", QDir::Files, QDir::Name);
|
|
|
|
|
for(it = Elements.begin(); it != Elements.end(); ++it)
|
|
|
|
|
new QListViewItem(ConDisplays, (*it).ascii());
|
|
|
|
|
|
|
|
|
|
// put all dataset files into "Content"-ListView
|
|
|
|
|
Elements = ProjDir.entryList("*.dat", QDir::Files, QDir::Name);
|
|
|
|
|
for(it = Elements.begin(); it != Elements.end(); ++it)
|
|
|
|
|
new QListViewItem(ConDatasets, (*it).ascii());
|
|
|
|
|
|
|
|
|
|
TabView->setCurrentPage(1); // switch to "Content"-Tab
|
|
|
|
|
Content->firstChild()->setOpen(true); // show schematics
|
|
|
|
|
ProjName = Name; // remember the name of project
|
|
|
|
|
|
|
|
|
|
setCaption("Qucs " VERSION + tr(" - Project: ")+Name); // show name in title of main window
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// #########################################################################################
|
|
|
|
|
// Is called, when "Create New Project"-Button is pressed.
|
|
|
|
|
void QucsApp::slotProjNewButt()
|
|
|
|
|
{
|
|
|
|
|
NewProjDialog *d = new NewProjDialog(this);
|
|
|
|
|
if(d->exec() != QDialog::Accepted) return;
|
|
|
|
|
|
|
|
|
|
QDir *projDir = new QDir();
|
|
|
|
|
projDir->setPath(QDir::homeDirPath()+"/.qucs");
|
|
|
|
|
if(projDir->mkdir(d->ProjName->text()+"_prj")) {
|
|
|
|
|
Projects->insertItem(d->ProjName->text(),0); // new project at first position
|
|
|
|
|
if(d->OpenProj->isChecked()) slotOpenProject(Projects->firstItem());
|
|
|
|
|
}
|
|
|
|
|
else QMessageBox::information(this, tr("Info"), tr("Cannot create project directory !"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// #########################################################################################
|
|
|
|
|
// Whenever the Component Library ComboBox is changed, this slot fills the Component IconView
|
|
|
|
|
// with the appropriat components.
|
|
|
|
|
void QucsApp::slotSetCompView(int index)
|
|
|
|
|
{
|
|
|
|
|
CompComps->clear(); // clear the IconView
|
|
|
|
|
switch(index) {
|
|
|
|
|
case COMBO_passive:
|
2003-12-26 16:31:25 +00:00
|
|
|
|
new QIconViewItem(CompComps, tr("Resistor"), QImage(BITMAPDIR "resistor.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("Resistor US"), QImage(BITMAPDIR "resistor_us.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("Capacitor"), QImage(BITMAPDIR "capacitor.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("Inductor"), QImage(BITMAPDIR "inductor.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("Ground"), QImage(BITMAPDIR "ground.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("Subcircuit Port"), QImage(BITMAPDIR "port.xpm"));
|
2003-12-30 14:18:18 +00:00
|
|
|
|
new QIconViewItem(CompComps, tr("Transformer"), QImage(BITMAPDIR "transformer.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("symmetric Transformer"), QImage(BITMAPDIR "symtrans.xpm"));
|
2003-12-26 16:31:25 +00:00
|
|
|
|
new QIconViewItem(CompComps, tr("dc Block"), QImage(BITMAPDIR "dcblock.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("dc Feed"), QImage(BITMAPDIR "dcfeed.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("Bias T"), QImage(BITMAPDIR "biast.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("Attenuator"), QImage(BITMAPDIR "attenuator.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("Isolator"), QImage(BITMAPDIR "isolator.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("Circulator"), QImage(BITMAPDIR "circulator.xpm"));
|
2003-12-30 14:18:18 +00:00
|
|
|
|
new QIconViewItem(CompComps, tr("Gyrator"), QImage(BITMAPDIR "gyrator.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("Phase Shifter"), QImage(BITMAPDIR "pshifter.xpm"));
|
2004-01-31 21:27:38 +00:00
|
|
|
|
new QIconViewItem(CompComps, tr("Current Probe"), QImage(BITMAPDIR "iprobe.xpm"));
|
2003-12-07 15:21:31 +00:00
|
|
|
|
break;
|
|
|
|
|
case COMBO_Sources:
|
2003-12-26 16:31:25 +00:00
|
|
|
|
new QIconViewItem(CompComps, tr("dc Voltage Source"), QImage(BITMAPDIR "dc_voltage.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("dc Current Source"), QImage(BITMAPDIR "dc_current.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("ac Voltage Source"), QImage(BITMAPDIR "ac_voltage.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("Power Source"), QImage(BITMAPDIR "source.xpm"));
|
2004-01-31 21:27:38 +00:00
|
|
|
|
new QIconViewItem(CompComps, tr("Noise Voltage Source"), QImage(BITMAPDIR "noise_volt.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("Noise Current Source"), QImage(BITMAPDIR "noise_current.xpm"));
|
2003-12-26 16:31:25 +00:00
|
|
|
|
new QIconViewItem(CompComps, tr("Voltage Controlled Current Source"), QImage(BITMAPDIR "vccs.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("Current Controlled Current Source"), QImage(BITMAPDIR "cccs.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("Voltage Controlled Voltage Source"), QImage(BITMAPDIR "vcvs.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("Current Controlled Voltage Source"), QImage(BITMAPDIR "ccvs.xpm"));
|
2003-12-07 15:21:31 +00:00
|
|
|
|
break;
|
|
|
|
|
case COMBO_TLines:
|
2003-12-26 16:31:25 +00:00
|
|
|
|
new QIconViewItem(CompComps, tr("Transmission Line"), QImage(BITMAPDIR "tline.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("Substrate"), QImage(BITMAPDIR "substrate.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("Microstrip Line"), QImage(BITMAPDIR "msline.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("Coupled Microstrip Line"), QImage(BITMAPDIR "mscoupled.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("Microstrip Step"), QImage(BITMAPDIR "msstep.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("Microstrip Corner"), QImage(BITMAPDIR "mscorner.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("Microstrip Tee"), QImage(BITMAPDIR "mstee.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("Microstrip Cross"), QImage(BITMAPDIR "mscross.xpm"));
|
2004-02-08 17:50:55 +00:00
|
|
|
|
new QIconViewItem(CompComps, tr("Microstrip Mitered Bend"), QImage(BITMAPDIR "msmbend.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("Microstrip Open"), QImage(BITMAPDIR "msopen.xpm"));
|
2003-12-26 16:31:25 +00:00
|
|
|
|
new QIconViewItem(CompComps, tr("Coplanar Line"), QImage(BITMAPDIR "coplanar.xpm"));
|
2003-12-07 15:21:31 +00:00
|
|
|
|
break;
|
|
|
|
|
case COMBO_nonlinear:
|
2003-12-26 16:31:25 +00:00
|
|
|
|
new QIconViewItem(CompComps, tr("Diode"), QImage(BITMAPDIR "diode.xpm"));
|
2003-12-07 15:21:31 +00:00
|
|
|
|
break;
|
|
|
|
|
case COMBO_File:
|
2003-12-26 16:31:25 +00:00
|
|
|
|
new QIconViewItem(CompComps, tr("1-port S parameter file"), QImage(BITMAPDIR "spfile1.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("2-port S parameter file"), QImage(BITMAPDIR "spfile2.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("3-port S parameter file"), QImage(BITMAPDIR "spfile3.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("4-port S parameter file"), QImage(BITMAPDIR "spfile4.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("5-port S parameter file"), QImage(BITMAPDIR "spfile5.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("6-port S parameter file"), QImage(BITMAPDIR "spfile6.xpm"));
|
2003-12-07 15:21:31 +00:00
|
|
|
|
break;
|
|
|
|
|
case COMBO_Sims:
|
2003-12-26 16:31:25 +00:00
|
|
|
|
new QIconViewItem(CompComps, tr("dc simulation"), QImage(BITMAPDIR "dc.xpm"));
|
2004-02-28 14:40:49 +00:00
|
|
|
|
new QIconViewItem(CompComps, tr("Transient simulation"), QImage(BITMAPDIR "tran.xpm"));
|
2003-12-26 16:31:25 +00:00
|
|
|
|
new QIconViewItem(CompComps, tr("ac simulation"), QImage(BITMAPDIR "ac.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("S-parameter simulation"), QImage(BITMAPDIR "sparameter.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("Harmonic balance"), QImage(BITMAPDIR "hb.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("Parameter sweep"), QImage(BITMAPDIR "sweep.xpm"));
|
2003-12-07 15:21:31 +00:00
|
|
|
|
break;
|
|
|
|
|
case COMBO_Paints:
|
2003-12-26 16:31:25 +00:00
|
|
|
|
new QIconViewItem(CompComps, tr("Line"), QImage(BITMAPDIR "line.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("Arrow"), QImage(BITMAPDIR "arrow.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("Text"), QImage(BITMAPDIR "text.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("Ellipse"), QImage(BITMAPDIR "ellipse.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("Rectangle"), QImage(BITMAPDIR "rectangle.xpm"));
|
2003-12-07 15:21:31 +00:00
|
|
|
|
break;
|
|
|
|
|
case COMBO_Diagrams:
|
2003-12-26 16:31:25 +00:00
|
|
|
|
new QIconViewItem(CompComps, tr("Cartesian"), QImage(BITMAPDIR "rect.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("Polar"), QImage(BITMAPDIR "polar.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("Tabular"), QImage(BITMAPDIR "tabular.xpm"));
|
|
|
|
|
new QIconViewItem(CompComps, tr("Smith Chart"), QImage(BITMAPDIR "smith.xpm"));
|
2003-12-07 15:21:31 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------
|
|
|
|
|
// Is called when the mouse is clicked within the Component QIconView.
|
|
|
|
|
void QucsApp::slotSelectComponent(QIconViewItem *item)
|
|
|
|
|
{
|
|
|
|
|
if(view->selComp != 0) delete view->selComp; // delete previously selected component
|
|
|
|
|
if(view->selDiag != 0) delete view->selDiag; // delete previously selected diagram
|
|
|
|
|
if(view->selPaint != 0) delete view->selDiag; // delete previously selected painting
|
|
|
|
|
view->selComp = 0; // no component selected
|
|
|
|
|
view->selDiag = 0; // no diagram selected
|
|
|
|
|
view->selPaint = 0; // no painting selected
|
|
|
|
|
|
|
|
|
|
if(item == 0) { // mouse button pressed not over an item ?
|
|
|
|
|
// CompComps->setSelected(CompComps->currentItem(), false); // deselect component in ViewList
|
|
|
|
|
CompComps->clearSelection(); // deselect component in ViewList
|
|
|
|
|
if(view->drawn) view->viewport()->repaint();
|
|
|
|
|
view->drawn = false;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// toggle last toolbar button off
|
|
|
|
|
if(activeAction) {
|
|
|
|
|
activeAction->blockSignals(true); // do not call toggle slot
|
|
|
|
|
activeAction->setOn(false); // set last toolbar button off
|
|
|
|
|
activeAction->blockSignals(false);
|
|
|
|
|
}
|
|
|
|
|
activeAction = 0;
|
|
|
|
|
|
|
|
|
|
switch(CompChoose->currentItem()) {
|
|
|
|
|
case COMBO_passive:
|
|
|
|
|
switch(CompComps->index(item)) {
|
|
|
|
|
case 0: view->selComp = new Resistor();
|
|
|
|
|
break;
|
|
|
|
|
case 1: view->selComp = new ResistorUS();
|
|
|
|
|
break;
|
|
|
|
|
case 2: view->selComp = new Capacitor();
|
|
|
|
|
break;
|
|
|
|
|
case 3: view->selComp = new Inductor();
|
|
|
|
|
break;
|
2003-12-30 14:18:18 +00:00
|
|
|
|
case 4: view->selComp = new Ground();
|
2003-12-07 15:21:31 +00:00
|
|
|
|
break;
|
2003-12-30 14:18:18 +00:00
|
|
|
|
case 5: view->selComp = new SubCirPort();
|
2003-12-07 15:21:31 +00:00
|
|
|
|
break;
|
2003-12-30 14:18:18 +00:00
|
|
|
|
case 6: view->selComp = new Transformer();
|
2003-12-07 15:21:31 +00:00
|
|
|
|
break;
|
2003-12-30 14:18:18 +00:00
|
|
|
|
case 7: view->selComp = new symTrafo();
|
2003-12-07 15:21:31 +00:00
|
|
|
|
break;
|
|
|
|
|
case 8: view->selComp = new dcBlock();
|
|
|
|
|
break;
|
|
|
|
|
case 9: view->selComp = new dcFeed();
|
|
|
|
|
break;
|
|
|
|
|
case 10: view->selComp = new BiasT();
|
|
|
|
|
break;
|
|
|
|
|
case 11: view->selComp = new Attenuator();
|
|
|
|
|
break;
|
|
|
|
|
case 12: view->selComp = new Isolator();
|
|
|
|
|
break;
|
|
|
|
|
case 13: view->selComp = new Circulator();
|
|
|
|
|
break;
|
2003-12-30 14:18:18 +00:00
|
|
|
|
case 14: view->selComp = new Gyrator();
|
|
|
|
|
break;
|
|
|
|
|
case 15: view->selComp = new Phaseshifter();
|
|
|
|
|
break;
|
2004-02-08 17:50:55 +00:00
|
|
|
|
case 16: view->selComp = new iProbe();
|
|
|
|
|
break;
|
2003-12-07 15:21:31 +00:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case COMBO_Sources:
|
|
|
|
|
switch(CompComps->index(item)) {
|
|
|
|
|
case 0: view->selComp = new Volt_dc();
|
|
|
|
|
break;
|
|
|
|
|
case 1: view->selComp = new Ampere_dc();
|
|
|
|
|
break;
|
|
|
|
|
case 2: view->selComp = new Volt_ac();
|
|
|
|
|
break;
|
|
|
|
|
case 3: view->selComp = new Source_ac();
|
|
|
|
|
break;
|
2004-02-08 17:50:55 +00:00
|
|
|
|
case 4: view->selComp = new Volt_noise();
|
|
|
|
|
break;
|
|
|
|
|
case 5: view->selComp = new Ampere_noise();
|
|
|
|
|
break;
|
2004-01-31 21:27:38 +00:00
|
|
|
|
case 6: view->selComp = new VCCS();
|
2003-12-07 15:21:31 +00:00
|
|
|
|
break;
|
2004-01-31 21:27:38 +00:00
|
|
|
|
case 7: view->selComp = new CCCS();
|
2003-12-07 15:21:31 +00:00
|
|
|
|
break;
|
2004-01-31 21:27:38 +00:00
|
|
|
|
case 8: view->selComp = new VCVS();
|
2003-12-07 15:21:31 +00:00
|
|
|
|
break;
|
2004-01-31 21:27:38 +00:00
|
|
|
|
case 9: view->selComp = new CCVS();
|
2003-12-07 15:21:31 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case COMBO_TLines:
|
|
|
|
|
switch(CompComps->index(item)) {
|
2004-02-08 17:50:55 +00:00
|
|
|
|
case 0: view->selComp = new TLine();
|
|
|
|
|
break;
|
|
|
|
|
case 1: view->selComp = new Substrate();
|
|
|
|
|
break;
|
|
|
|
|
case 2: view->selComp = new MSline();
|
|
|
|
|
break;
|
|
|
|
|
case 3: view->selComp = new MScoupled();
|
|
|
|
|
break;
|
|
|
|
|
case 4: view->selComp = new MSstep();
|
|
|
|
|
break;
|
|
|
|
|
case 5: view->selComp = new MScorner();
|
|
|
|
|
break;
|
|
|
|
|
case 6: view->selComp = new MStee();
|
|
|
|
|
break;
|
|
|
|
|
case 7: view->selComp = new MScross();
|
|
|
|
|
break;
|
|
|
|
|
case 8: view->selComp = new MSmbend();
|
|
|
|
|
break;
|
|
|
|
|
case 9: view->selComp = new MSopen();
|
|
|
|
|
break;
|
|
|
|
|
case 10: view->selComp = new Coplanar();
|
|
|
|
|
break;
|
2003-12-07 15:21:31 +00:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case COMBO_nonlinear:
|
|
|
|
|
switch(CompComps->index(item)) {
|
|
|
|
|
case 0: view->selComp = new Diode();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case COMBO_File:
|
|
|
|
|
switch(CompComps->index(item)) {
|
|
|
|
|
case 0: view->selComp = new SParamFile(1);
|
|
|
|
|
break;
|
|
|
|
|
case 1: view->selComp = new SParamFile(2);
|
|
|
|
|
break;
|
|
|
|
|
case 2: view->selComp = new SParamFile(3);
|
|
|
|
|
break;
|
|
|
|
|
case 3: view->selComp = new SParamFile(4);
|
|
|
|
|
break;
|
|
|
|
|
case 4: view->selComp = new SParamFile(5);
|
|
|
|
|
break;
|
|
|
|
|
case 5: view->selComp = new SParamFile(6);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case COMBO_Sims:
|
|
|
|
|
switch(CompComps->index(item)) {
|
|
|
|
|
case 0: view->selComp = new DC_Sim();
|
|
|
|
|
break;
|
|
|
|
|
case 1: view->selComp = new TR_Sim();
|
|
|
|
|
break;
|
|
|
|
|
case 2: view->selComp = new AC_Sim();
|
|
|
|
|
break;
|
|
|
|
|
case 3: view->selComp = new SP_Sim();
|
|
|
|
|
break;
|
|
|
|
|
case 4: view->selComp = new HB_Sim();
|
|
|
|
|
break;
|
|
|
|
|
case 5: view->selComp = new Param_Sweep();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case COMBO_Paints:
|
|
|
|
|
switch(CompComps->index(item)) {
|
|
|
|
|
case 0: view->selPaint = new GraphicLine();
|
|
|
|
|
break;
|
|
|
|
|
case 1: view->selPaint = new Arrow();
|
|
|
|
|
break;
|
|
|
|
|
case 2: view->selPaint = new GraphicText();
|
|
|
|
|
break;
|
|
|
|
|
case 3: view->selPaint = new Ellipse();
|
|
|
|
|
break;
|
|
|
|
|
case 4: view->selPaint = new Rectangle();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if(view->drawn) view->viewport()->repaint();
|
|
|
|
|
view->drawn = false;
|
|
|
|
|
view->MouseMoveAction = &QucsView::MMovePainting;
|
|
|
|
|
view->MousePressAction = &QucsView::MPressPainting;
|
|
|
|
|
view->MouseReleaseAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MouseDoubleClickAction = &QucsView::MouseDoNothing;
|
|
|
|
|
return;
|
|
|
|
|
case COMBO_Diagrams:
|
|
|
|
|
switch(CompComps->index(item)) {
|
|
|
|
|
case 0: view->selDiag = new RectDiagram();
|
|
|
|
|
break;
|
|
|
|
|
case 1: view->selDiag = new PolarDiagram();
|
|
|
|
|
break;
|
|
|
|
|
case 2: view->selDiag = new TabDiagram();
|
|
|
|
|
break;
|
|
|
|
|
case 3: view->selDiag = new SmithDiagram();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(view->drawn) view->viewport()->repaint();
|
|
|
|
|
view->drawn = false;
|
|
|
|
|
view->MouseMoveAction = &QucsView::MMoveDiagram;
|
|
|
|
|
view->MousePressAction = &QucsView::MPressDiagram;
|
|
|
|
|
view->MouseReleaseAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MouseDoubleClickAction = &QucsView::MouseDoNothing;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(view->drawn) view->viewport()->repaint();
|
|
|
|
|
view->drawn = false;
|
|
|
|
|
view->MouseMoveAction = &QucsView::MMoveComponent;
|
|
|
|
|
view->MousePressAction = &QucsView::MPressComponent;
|
|
|
|
|
view->MouseReleaseAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MouseDoubleClickAction = &QucsView::MouseDoNothing;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------
|
|
|
|
|
// Is called when the mouse is clicked within the Content QListView.
|
|
|
|
|
void QucsApp::slotSelectSubcircuit(QListViewItem *item)
|
|
|
|
|
{
|
|
|
|
|
if(item == 0) { // mouse button pressed not over an item ?
|
|
|
|
|
Content->clearSelection(); // deselect component in ListView
|
|
|
|
|
if(view->drawn) view->viewport()->repaint();
|
|
|
|
|
view->drawn = false;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(item->parent() == 0) return;
|
|
|
|
|
if(item->parent()->text(0) != tr("Schematics")) return; // return, if not clicked on schematic
|
|
|
|
|
int n = testFile(item->text(0));
|
|
|
|
|
if(n<=0) return; // return, if not a subcircuit
|
|
|
|
|
|
|
|
|
|
if(view->selComp != 0) delete view->selComp; // delete previously selected component
|
|
|
|
|
if(view->selDiag != 0) delete view->selDiag; // delete previously selected diagram
|
|
|
|
|
view->selComp = 0; // no component selected
|
|
|
|
|
view->selDiag = 0; // no diagram selected
|
|
|
|
|
|
|
|
|
|
// toggle last toolbar button off
|
|
|
|
|
if(activeAction) {
|
|
|
|
|
activeAction->blockSignals(true); // do not call toggle slot
|
|
|
|
|
activeAction->setOn(false); // set last toolbar button off
|
|
|
|
|
activeAction->blockSignals(false);
|
|
|
|
|
}
|
|
|
|
|
activeAction = 0;
|
|
|
|
|
|
|
|
|
|
view->selComp = new Subcircuit(n);
|
|
|
|
|
view->selComp->Props.first()->Value = item->text(0);
|
|
|
|
|
|
|
|
|
|
if(view->drawn) view->viewport()->repaint();
|
|
|
|
|
view->drawn = false;
|
|
|
|
|
view->MouseMoveAction = &QucsView::MMoveComponent;
|
|
|
|
|
view->MousePressAction = &QucsView::MPressComponent;
|
|
|
|
|
view->MouseReleaseAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MouseDoubleClickAction = &QucsView::MouseDoNothing;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------
|
|
|
|
|
void QucsApp::slotInsertLabel(bool on)
|
|
|
|
|
{
|
|
|
|
|
if(!on) {
|
|
|
|
|
view->MouseMoveAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MousePressAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MouseReleaseAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MouseDoubleClickAction = &QucsView::MouseDoNothing;
|
|
|
|
|
activeAction = 0; // no action active
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if(activeAction) {
|
|
|
|
|
activeAction->blockSignals(true); // do not call toggle slot
|
|
|
|
|
activeAction->setOn(false); // set last toolbar button off
|
|
|
|
|
activeAction->blockSignals(false);
|
|
|
|
|
}
|
|
|
|
|
activeAction = insLabel;
|
|
|
|
|
|
|
|
|
|
if(view->drawn) view->viewport()->repaint();
|
|
|
|
|
view->drawn = false;
|
|
|
|
|
view->MouseMoveAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MousePressAction = &QucsView::MPressLabel;
|
|
|
|
|
view->MouseReleaseAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MouseDoubleClickAction = &QucsView::MouseDoNothing;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------
|
|
|
|
|
// Is called when the select toolbar button is pressed.
|
|
|
|
|
void QucsApp::slotSelect(bool on)
|
|
|
|
|
{
|
|
|
|
|
if(!on) {
|
2004-01-18 14:41:45 +00:00
|
|
|
|
if(!view->movingElements.isEmpty()) // elements are moving ?
|
|
|
|
|
view->endElementMoving(); // place them
|
|
|
|
|
else if(view->MouseMoveAction == &QucsView::MMoveSelect) { // do not disturb diagram resize
|
|
|
|
|
activeAction->blockSignals(true); // do not call toggle slot
|
|
|
|
|
activeAction->setOn(true); // set back select on
|
|
|
|
|
activeAction->blockSignals(false);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2003-12-07 15:21:31 +00:00
|
|
|
|
view->MouseMoveAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MousePressAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MouseReleaseAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MouseDoubleClickAction = &QucsView::MouseDoNothing;
|
|
|
|
|
activeAction = 0; // no action active
|
2003-12-30 14:18:18 +00:00
|
|
|
|
|
2003-12-07 15:21:31 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if(activeAction) {
|
|
|
|
|
activeAction->blockSignals(true); // do not call toggle slot
|
|
|
|
|
activeAction->setOn(false); // set last toolbar button off
|
|
|
|
|
activeAction->blockSignals(false);
|
|
|
|
|
}
|
|
|
|
|
activeAction = select;
|
|
|
|
|
|
|
|
|
|
if(view->drawn) view->viewport()->repaint();
|
|
|
|
|
view->drawn = false;
|
|
|
|
|
view->MouseMoveAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MousePressAction = &QucsView::MPressSelect;
|
|
|
|
|
view->MouseReleaseAction = &QucsView::MReleaseSelect;
|
|
|
|
|
view->MouseDoubleClickAction = &QucsView::MDoubleClickSelect;
|
2003-12-30 14:18:18 +00:00
|
|
|
|
view->movingElements.clear(); // delete moving elements
|
2003-12-07 15:21:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------
|
|
|
|
|
// Is called when the select all action is activated.
|
|
|
|
|
void QucsApp::slotSelectAll()
|
|
|
|
|
{
|
2004-03-28 19:51:04 +00:00
|
|
|
|
view->Docs.current()->selectElements(INT_MIN, INT_MIN, INT_MAX, INT_MAX, true);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
view->viewport()->repaint();
|
|
|
|
|
view->drawn = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------
|
|
|
|
|
// Is called when the activate/deactivate toolbar button is pressed.
|
|
|
|
|
void QucsApp::slotEditActivate(bool on)
|
|
|
|
|
{
|
|
|
|
|
if(!on) {
|
|
|
|
|
view->MouseMoveAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MousePressAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MouseReleaseAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MouseDoubleClickAction = &QucsView::MouseDoNothing;
|
|
|
|
|
activeAction = 0; // no action active
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(view->Docs.current()->activateComponents()) {
|
|
|
|
|
editActivate->blockSignals(true);
|
|
|
|
|
editActivate->setOn(false); // release toolbar button
|
|
|
|
|
editActivate->blockSignals(false);
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
if(activeAction) {
|
|
|
|
|
activeAction->blockSignals(true); // do not call toggle slot
|
|
|
|
|
activeAction->setOn(false); // set last toolbar button off
|
|
|
|
|
activeAction->blockSignals(false);
|
|
|
|
|
}
|
|
|
|
|
activeAction = editActivate;
|
|
|
|
|
|
|
|
|
|
view->MouseMoveAction = &QucsView::MouseDoNothing; // if no component is selected, activate
|
|
|
|
|
view->MousePressAction = &QucsView::MPressActivate; // the one that will be clicked
|
|
|
|
|
view->MouseReleaseAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MouseDoubleClickAction = &QucsView::MouseDoNothing;
|
|
|
|
|
}
|
2004-03-28 19:51:04 +00:00
|
|
|
|
|
2003-12-07 15:21:31 +00:00
|
|
|
|
view->viewport()->repaint();
|
|
|
|
|
view->drawn = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------
|
|
|
|
|
// Is called if "Wire"-Button is pressed.
|
|
|
|
|
void QucsApp::slotSetWire(bool on)
|
|
|
|
|
{
|
|
|
|
|
if(!on) {
|
|
|
|
|
view->MouseMoveAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MousePressAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MouseReleaseAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MouseDoubleClickAction = &QucsView::MouseDoNothing;
|
|
|
|
|
activeAction = 0; // no action active
|
|
|
|
|
if(view->drawn) view->viewport()->repaint();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if(activeAction) {
|
|
|
|
|
activeAction->blockSignals(true); // do not call toggle slot
|
|
|
|
|
activeAction->setOn(false); // set last toolbar button off
|
|
|
|
|
activeAction->blockSignals(false);
|
|
|
|
|
}
|
|
|
|
|
activeAction = insWire;
|
|
|
|
|
|
|
|
|
|
if(view->drawn) view->viewport()->repaint();
|
|
|
|
|
view->drawn = false;
|
|
|
|
|
view->MouseMoveAction = &QucsView::MMoveWire1;
|
|
|
|
|
view->MousePressAction = &QucsView::MPressWire1;
|
|
|
|
|
view->MouseReleaseAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MouseDoubleClickAction = &QucsView::MouseDoNothing;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// -------------------------------------------------------------------------------
|
|
|
|
|
// Is called if "Delete"-Button is pressed.
|
|
|
|
|
void QucsApp::slotEditDelete(bool on)
|
|
|
|
|
{
|
|
|
|
|
if(!view->movingElements.isEmpty()) { // elements are moving ?
|
2003-12-30 14:18:18 +00:00
|
|
|
|
if(activeAction != editPaste) {
|
|
|
|
|
editDelete->blockSignals(true);
|
|
|
|
|
editDelete->setOn(false); // release toolbar button
|
|
|
|
|
editDelete->blockSignals(false);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
// view->movingElements.clear(); // delete elements, if not paste
|
2003-12-07 15:21:31 +00:00
|
|
|
|
}
|
|
|
|
|
if(!on) {
|
|
|
|
|
view->MouseMoveAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MousePressAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MouseReleaseAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MouseDoubleClickAction = &QucsView::MouseDoNothing;
|
|
|
|
|
activeAction = 0; // no action active
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(view->Docs.current()->deleteElements()) {
|
|
|
|
|
editDelete->blockSignals(true);
|
|
|
|
|
editDelete->setOn(false); // release toolbar button
|
|
|
|
|
editDelete->blockSignals(false);
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
if(activeAction) {
|
|
|
|
|
activeAction->blockSignals(true); // do not call toggle slot
|
|
|
|
|
activeAction->setOn(false); // set last toolbar button off
|
|
|
|
|
activeAction->blockSignals(false);
|
2003-12-30 14:18:18 +00:00
|
|
|
|
view->movingElements.clear(); // delete elements
|
2003-12-07 15:21:31 +00:00
|
|
|
|
}
|
|
|
|
|
activeAction = editDelete;
|
|
|
|
|
|
|
|
|
|
view->MouseMoveAction = &QucsView::MouseDoNothing; // if no component is selected, delete the one
|
|
|
|
|
view->MousePressAction = &QucsView::MPressDelete; // that will be clicked
|
|
|
|
|
view->MouseReleaseAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MouseDoubleClickAction = &QucsView::MouseDoNothing;
|
|
|
|
|
}
|
|
|
|
|
view->viewport()->repaint();
|
|
|
|
|
view->drawn = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// #########################################################################################
|
|
|
|
|
// Is called when the mouse is clicked upon the equation toolbar button.
|
|
|
|
|
void QucsApp::slotInsertEquation(bool on)
|
|
|
|
|
{
|
|
|
|
|
if(!on) {
|
|
|
|
|
view->MouseMoveAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MousePressAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MouseReleaseAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MouseDoubleClickAction = &QucsView::MouseDoNothing;
|
|
|
|
|
activeAction = 0; // no action active
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if(activeAction) {
|
|
|
|
|
activeAction->blockSignals(true); // do not call toggle slot
|
|
|
|
|
activeAction->setOn(false); // set last toolbar button off
|
|
|
|
|
activeAction->blockSignals(false);
|
|
|
|
|
}
|
|
|
|
|
activeAction = insEquation;
|
|
|
|
|
|
|
|
|
|
if(view->selComp != 0)
|
|
|
|
|
delete view->selComp; // delete previously selected component
|
|
|
|
|
|
|
|
|
|
view->selComp = new Equation();
|
|
|
|
|
|
|
|
|
|
if(view->drawn) view->viewport()->repaint();
|
|
|
|
|
view->drawn = false;
|
|
|
|
|
view->MouseMoveAction = &QucsView::MMoveComponent;
|
|
|
|
|
view->MousePressAction = &QucsView::MPressComponent;
|
|
|
|
|
view->MouseReleaseAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MouseDoubleClickAction = &QucsView::MouseDoNothing;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// #########################################################################################
|
|
|
|
|
// Is called when the mouse is clicked upon the ground toolbar button.
|
|
|
|
|
void QucsApp::slotInsertGround(bool on)
|
|
|
|
|
{
|
|
|
|
|
if(!on) {
|
|
|
|
|
view->MouseMoveAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MousePressAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MouseReleaseAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MouseDoubleClickAction = &QucsView::MouseDoNothing;
|
|
|
|
|
activeAction = 0; // no action active
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if(activeAction) {
|
|
|
|
|
activeAction->blockSignals(true); // do not call toggle slot
|
|
|
|
|
activeAction->setOn(false); // set last toolbar button off
|
|
|
|
|
activeAction->blockSignals(false);
|
|
|
|
|
}
|
|
|
|
|
activeAction = insGround;
|
|
|
|
|
|
|
|
|
|
if(view->selComp != 0)
|
|
|
|
|
delete view->selComp; // delete previously selected component
|
|
|
|
|
|
|
|
|
|
view->selComp = new Ground();
|
|
|
|
|
|
|
|
|
|
if(view->drawn) view->viewport()->repaint();
|
|
|
|
|
view->drawn = false;
|
|
|
|
|
view->MouseMoveAction = &QucsView::MMoveComponent;
|
|
|
|
|
view->MousePressAction = &QucsView::MPressComponent;
|
|
|
|
|
view->MouseReleaseAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MouseDoubleClickAction = &QucsView::MouseDoNothing;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// #########################################################################################
|
|
|
|
|
// Is called when the mouse is clicked upon the port toolbar button.
|
|
|
|
|
void QucsApp::slotInsertPort(bool on)
|
|
|
|
|
{
|
|
|
|
|
if(!on) {
|
|
|
|
|
view->MouseMoveAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MousePressAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MouseReleaseAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MouseDoubleClickAction = &QucsView::MouseDoNothing;
|
|
|
|
|
activeAction = 0; // no action active
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if(activeAction) {
|
|
|
|
|
activeAction->blockSignals(true); // do not call toggle slot
|
|
|
|
|
activeAction->setOn(false); // set last toolbar button off
|
|
|
|
|
activeAction->blockSignals(false);
|
|
|
|
|
}
|
|
|
|
|
activeAction = insPort;
|
|
|
|
|
|
|
|
|
|
if(view->selComp != 0)
|
|
|
|
|
delete view->selComp; // delete previously selected component
|
|
|
|
|
|
|
|
|
|
view->selComp = new SubCirPort();
|
|
|
|
|
|
|
|
|
|
if(view->drawn) view->viewport()->repaint();
|
|
|
|
|
view->drawn = false;
|
|
|
|
|
view->MouseMoveAction = &QucsView::MMoveComponent;
|
|
|
|
|
view->MousePressAction = &QucsView::MPressComponent;
|
|
|
|
|
view->MouseReleaseAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MouseDoubleClickAction = &QucsView::MouseDoNothing;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ###################################################################################
|
|
|
|
|
// Is called when the rotate toolbar button is pressed.
|
|
|
|
|
void QucsApp::slotEditRotate(bool on)
|
|
|
|
|
{
|
|
|
|
|
if(!on) {
|
|
|
|
|
view->MouseMoveAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MousePressAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MouseReleaseAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MouseDoubleClickAction = &QucsView::MouseDoNothing;
|
|
|
|
|
activeAction = 0; // no action active
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(view->Docs.current()->rotateElements()) {
|
|
|
|
|
editRotate->blockSignals(true);
|
|
|
|
|
editRotate->setOn(false); // release toolbar button
|
|
|
|
|
editRotate->blockSignals(false);
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
if(activeAction) {
|
|
|
|
|
activeAction->blockSignals(true); // do not call toggle slot
|
|
|
|
|
activeAction->setOn(false); // set last toolbar button off
|
|
|
|
|
activeAction->blockSignals(false);
|
|
|
|
|
}
|
|
|
|
|
activeAction = editRotate;
|
|
|
|
|
|
|
|
|
|
view->MouseMoveAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MousePressAction = &QucsView::MPressRotate;
|
|
|
|
|
view->MouseReleaseAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MouseDoubleClickAction = &QucsView::MouseDoNothing;
|
|
|
|
|
}
|
|
|
|
|
view->viewport()->repaint();
|
|
|
|
|
view->drawn = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// #########################################################################################
|
|
|
|
|
// Is called when the mirror toolbar button is pressed.
|
|
|
|
|
void QucsApp::slotEditMirrorX(bool on)
|
|
|
|
|
{
|
|
|
|
|
if(!on) {
|
|
|
|
|
view->MouseMoveAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MousePressAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MouseReleaseAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MouseDoubleClickAction = &QucsView::MouseDoNothing;
|
|
|
|
|
activeAction = 0; // no action active
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(view->Docs.current()->mirrorXComponents()) {
|
|
|
|
|
editMirror->blockSignals(true);
|
|
|
|
|
editMirror->setOn(false); // release toolbar button
|
|
|
|
|
editMirror->blockSignals(false);
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
if(activeAction) {
|
|
|
|
|
activeAction->blockSignals(true); // do not call toggle slot
|
|
|
|
|
activeAction->setOn(false); // set last toolbar button off
|
|
|
|
|
activeAction->blockSignals(false);
|
|
|
|
|
}
|
|
|
|
|
activeAction = editMirror;
|
|
|
|
|
|
|
|
|
|
view->MouseMoveAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MousePressAction = &QucsView::MPressMirrorX;
|
|
|
|
|
view->MouseReleaseAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MouseDoubleClickAction = &QucsView::MouseDoNothing;
|
|
|
|
|
}
|
|
|
|
|
view->viewport()->repaint();
|
|
|
|
|
view->drawn = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// #########################################################################################
|
|
|
|
|
// Is called when the mirror toolbar button is pressed.
|
|
|
|
|
void QucsApp::slotEditMirrorY(bool on)
|
|
|
|
|
{
|
|
|
|
|
if(!on) {
|
|
|
|
|
view->MouseMoveAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MousePressAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MouseReleaseAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MouseDoubleClickAction = &QucsView::MouseDoNothing;
|
|
|
|
|
activeAction = 0; // no action active
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(view->Docs.current()->mirrorYComponents()) {
|
|
|
|
|
editMirrorY->blockSignals(true);
|
|
|
|
|
editMirrorY->setOn(false); // release toolbar button
|
|
|
|
|
editMirrorY->blockSignals(false);
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
if(activeAction) {
|
|
|
|
|
activeAction->blockSignals(true); // do not call toggle slot
|
|
|
|
|
activeAction->setOn(false); // set last toolbar button off
|
|
|
|
|
activeAction->blockSignals(false);
|
|
|
|
|
}
|
|
|
|
|
activeAction = editMirrorY;
|
|
|
|
|
|
|
|
|
|
view->MouseMoveAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MousePressAction = &QucsView::MPressMirrorY;
|
|
|
|
|
view->MouseReleaseAction = &QucsView::MouseDoNothing;
|
|
|
|
|
view->MouseDoubleClickAction = &QucsView::MouseDoNothing;
|
|
|
|
|
}
|
|
|
|
|
view->viewport()->repaint();
|
|
|
|
|
view->drawn = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// #########################################################################################
|
|
|
|
|
// Is called, when "Open Project"-Button is pressed.
|
|
|
|
|
void QucsApp::slotProjOpenButt()
|
|
|
|
|
{
|
|
|
|
|
QListBoxItem *item = Projects->selectedItem();
|
|
|
|
|
if(item) slotOpenProject(item);
|
|
|
|
|
else QMessageBox::information(this, tr("Info"), tr("No project is selected !"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// #########################################################################################
|
|
|
|
|
bool QucsApp::DeleteProject(const QString& Path, const QString& Name)
|
|
|
|
|
{
|
|
|
|
|
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\nfiles permanently !\nGo on ?"),tr("&Yes"),tr("&No"),0,1,1)) return false;
|
|
|
|
|
|
|
|
|
|
QDir *projDir = new QDir();
|
|
|
|
|
projDir->setPath(Path);
|
|
|
|
|
QStringList ProjFiles = projDir->entryList("*", QDir::Files); // get all files
|
|
|
|
|
|
|
|
|
|
// removes every file, remove("*") does not work
|
|
|
|
|
QStringList::iterator it;
|
|
|
|
|
for(it = ProjFiles.begin(); it != ProjFiles.end(); it++) {
|
|
|
|
|
if(!projDir->remove(*it)) {
|
|
|
|
|
QMessageBox::information(this, tr("Info"), tr("Cannot remove project file: ")+(*it));
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
projDir->cdUp(); // leave project directory for deleting
|
|
|
|
|
if(!projDir->rmdir(Name+"_prj")) {
|
|
|
|
|
QMessageBox::information(this, tr("Info"), tr("Cannot remove project directory !"));
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// #########################################################################################
|
|
|
|
|
// Is called, when "Delete Project"-menu is pressed.
|
|
|
|
|
void QucsApp::slotMenuDelProject()
|
|
|
|
|
{
|
|
|
|
|
QFileDialog *d = new QFileDialog(QDir::homeDirPath());
|
|
|
|
|
d->setCaption(tr("Choose Project Directory for Deleting"));
|
|
|
|
|
d->setShowHiddenFiles(true);
|
|
|
|
|
d->setMode(QFileDialog::DirectoryOnly);
|
|
|
|
|
if(d->exec() != QDialog::Accepted) return;
|
|
|
|
|
|
|
|
|
|
QString s = d->selectedFile();
|
|
|
|
|
if(s.isEmpty()) return;
|
|
|
|
|
|
|
|
|
|
s = s.left(s.length()-1); // cut off trailing '/'
|
|
|
|
|
int i = s.findRev('/');
|
|
|
|
|
if(i > 0) s = s.mid(i+1); // cut out the last subdirectory
|
|
|
|
|
s.remove("_prj");
|
|
|
|
|
DeleteProject(d->selectedFile(), s);
|
|
|
|
|
readProjects(); // re-reads all projects and inserts them into the ListBox
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// #########################################################################################
|
|
|
|
|
// Is called, when "Delete Project"-Button is pressed.
|
|
|
|
|
void QucsApp::slotProjDelButt()
|
|
|
|
|
{
|
|
|
|
|
QListBoxItem *item = Projects->selectedItem();
|
|
|
|
|
if(!item) {
|
|
|
|
|
QMessageBox::information(this, tr("Info"), tr("No project is selected !"));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(!DeleteProject(QDir::homeDirPath()+"/.qucs/"+item->text()+"_prj", item->text())) return;
|
|
|
|
|
Projects->removeItem(Projects->currentItem()); // remove from project list
|
|
|
|
|
}
|