2003-12-07 15:21:31 +00:00
|
|
|
/***************************************************************************
|
2005-09-12 12:01:40 +00:00
|
|
|
qucs.cpp
|
|
|
|
----------
|
2006-01-09 07:17:15 +00:00
|
|
|
begin : Thu Aug 28 2003
|
|
|
|
copyright : (C) 2003, 2004, 2005, 2006 by Michael Margraf
|
2004-06-12 12:35:04 +00:00
|
|
|
email : michael.margraf@alumni.tu-berlin.de
|
2003-12-07 15:21:31 +00:00
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU General Public License as published by *
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
|
|
* (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
|
|
|
|
2014-12-10 23:47:50 +08:00
|
|
|
#include <QModelIndex>
|
2014-12-10 16:18:25 +08:00
|
|
|
#include <QAction>
|
|
|
|
#include <QTreeWidget>
|
|
|
|
#include <QTreeWidgetItem>
|
|
|
|
#include <QDockWidget>
|
|
|
|
#include <QLineEdit>
|
|
|
|
#include <QPushButton>
|
|
|
|
#include <QListWidget>
|
|
|
|
#include <QComboBox>
|
|
|
|
#include <QMenu>
|
|
|
|
#include <QMessageBox>
|
|
|
|
#include <QFileDialog>
|
|
|
|
#include <QStatusBar>
|
|
|
|
#include <QShortcut>
|
|
|
|
#include <QApplication>
|
|
|
|
#include <QClipboard>
|
|
|
|
#include <QInputDialog>
|
|
|
|
#include <QDesktopServices>
|
2014-12-10 23:15:34 +08:00
|
|
|
#include <QFileSystemModel>
|
2014-12-10 16:18:25 +08:00
|
|
|
#include <QUrl>
|
|
|
|
#include <QSettings>
|
2016-07-17 16:21:41 +02:00
|
|
|
#include <QVariant>
|
2014-12-10 16:18:25 +08:00
|
|
|
#include <QDebug>
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2005-03-01 08:50:13 +00:00
|
|
|
#include "main.h"
|
|
|
|
#include "qucs.h"
|
2006-03-28 06:10:52 +00:00
|
|
|
#include "qucsdoc.h"
|
|
|
|
#include "textdoc.h"
|
|
|
|
#include "schematic.h"
|
|
|
|
#include "mouseactions.h"
|
2014-03-11 23:31:29 +01:00
|
|
|
#include "messagedock.h"
|
2005-03-01 08:50:13 +00:00
|
|
|
#include "wire.h"
|
2009-11-08 16:33:19 +00:00
|
|
|
#include "module.h"
|
2014-12-20 02:49:31 +08:00
|
|
|
#include "projectView.h"
|
2005-03-01 08:50:13 +00:00
|
|
|
#include "components/components.h"
|
|
|
|
#include "paintings/paintings.h"
|
|
|
|
#include "diagrams/diagrams.h"
|
2006-12-25 17:30:03 +00:00
|
|
|
#include "dialogs/savedialog.h"
|
2005-03-01 08:50:13 +00:00
|
|
|
#include "dialogs/newprojdialog.h"
|
|
|
|
#include "dialogs/settingsdialog.h"
|
2006-04-10 06:12:35 +00:00
|
|
|
#include "dialogs/digisettingsdialog.h"
|
2009-10-27 20:36:29 +00:00
|
|
|
#include "dialogs/vasettingsdialog.h"
|
2005-03-01 08:50:13 +00:00
|
|
|
#include "dialogs/qucssettingsdialog.h"
|
2006-04-10 06:12:35 +00:00
|
|
|
#include "dialogs/searchdialog.h"
|
2005-08-15 06:04:52 +00:00
|
|
|
#include "dialogs/sweepdialog.h"
|
2006-03-28 06:10:52 +00:00
|
|
|
#include "dialogs/labeldialog.h"
|
|
|
|
#include "dialogs/matchdialog.h"
|
2006-04-10 06:12:35 +00:00
|
|
|
#include "dialogs/simmessage.h"
|
2013-12-15 13:57:19 +04:00
|
|
|
#include "dialogs/exportdialog.h"
|
2014-11-07 10:38:35 +04:00
|
|
|
//#include "dialogs/vtabwidget.h"
|
|
|
|
//#include "dialogs/vtabbeddockwidget.h"
|
2015-01-14 19:30:27 +03:00
|
|
|
#include "extsimkernels/externsimdialog.h"
|
2011-03-03 18:09:11 +00:00
|
|
|
#include "octave_window.h"
|
2014-11-24 21:28:23 +08:00
|
|
|
#include "printerwriter.h"
|
2014-11-24 21:57:56 +08:00
|
|
|
#include "imagewriter.h"
|
2014-01-31 16:59:40 +00:00
|
|
|
#include "../qucs-lib/qucslib_common.h"
|
2014-11-12 03:42:14 +08:00
|
|
|
#include "misc.h"
|
2015-07-19 14:33:42 +03:00
|
|
|
#include "extsimkernels/verilogawriter.h"
|
2016-01-07 17:41:51 +03:00
|
|
|
#include "extsimkernels/simsettingsdialog.h"
|
2016-09-26 13:29:06 +03:00
|
|
|
#include "extsimkernels/codemodelgen.h"
|
2014-01-31 16:59:40 +00:00
|
|
|
|
2014-11-20 20:41:27 +08:00
|
|
|
// icon for unsaved files (diskette)
|
|
|
|
const char *smallsave_xpm[] = {
|
|
|
|
"16 17 66 1", " c None",
|
|
|
|
". c #595963","+ c #E6E6F1","@ c #465460","# c #FEFEFF",
|
|
|
|
"$ c #DEDEEE","% c #43535F","& c #D1D1E6","* c #5E5E66",
|
|
|
|
"= c #FFFFFF","- c #C5C5DF","; c #FCF8F9","> c #BDBDDA",
|
|
|
|
", c #BFBFDC","' c #C4C4DF",") c #FBF7F7","! c #D6D6E9",
|
|
|
|
"~ c #CBCBE3","{ c #B5B5D6","] c #BCBCDA","^ c #C6C6E0",
|
|
|
|
"/ c #CFCFE5","( c #CEC9DC","_ c #D8D8EA",": c #DADAEB",
|
|
|
|
"< c #313134","[ c #807FB3","} c #AEAED1","| c #B7B7D7",
|
|
|
|
"1 c #E2E2EF","2 c #9393C0","3 c #E3E3F0","4 c #DDD5E1",
|
|
|
|
"5 c #E8E8F3","6 c #2F2F31","7 c #7B7BAF","8 c #8383B5",
|
|
|
|
"9 c #151518","0 c #000000","a c #C0C0DC","b c #8E8FBD",
|
|
|
|
"c c #8989BA","d c #E7EEF6","e c #282829","f c #6867A1",
|
|
|
|
"g c #7373A9","h c #A7A7CD","i c #8080B3","j c #7B7CB0",
|
|
|
|
"k c #7070A8","l c #6D6DA5","m c #6E6EA6","n c #6969A2",
|
|
|
|
"o c #7A79AF","p c #DCDCEC","q c #60609A","r c #7777AC",
|
|
|
|
"s c #5D5D98","t c #7676AB","u c #484785","v c #575793",
|
|
|
|
"w c #50506A","x c #8787B8","y c #53536E","z c #07070E",
|
|
|
|
"A c #666688",
|
|
|
|
" . ",
|
|
|
|
" .+. ",
|
|
|
|
" .+@#. ",
|
|
|
|
" .$%###. ",
|
|
|
|
" .&*####=. ",
|
|
|
|
" .-.#;#####. ",
|
|
|
|
" .>,'.#)!!!!~. ",
|
|
|
|
" .{].'^./(!_:<[.",
|
|
|
|
".}|.1./2.3456789",
|
|
|
|
"0a.$11.bc.defg9 ",
|
|
|
|
" 011h11.ij9kl9 ",
|
|
|
|
" 0_1h1h.mno9 ",
|
|
|
|
" 0p12h9qr9 ",
|
|
|
|
" 0hh9st9 ",
|
|
|
|
" 09uv9w ",
|
|
|
|
" 0x9y ",
|
|
|
|
" zA "};
|
|
|
|
|
|
|
|
const char *empty_xpm[] = { // provides same height than "smallsave_xpm"
|
|
|
|
"1 17 1 1", " c None", " ", " ", " ", " ", " ",
|
|
|
|
" ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " ", " "};
|
|
|
|
|
2016-07-17 16:21:41 +02:00
|
|
|
struct iconCompInfoStruct
|
|
|
|
{
|
|
|
|
int catIdx; // index of the component Category
|
|
|
|
int compIdx; // index of the component itself in the Category
|
|
|
|
};
|
|
|
|
|
|
|
|
Q_DECLARE_METATYPE(iconCompInfoStruct)
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2004-05-29 13:05:04 +00:00
|
|
|
QucsApp::QucsApp()
|
2003-12-07 15:21:31 +00:00
|
|
|
{
|
2016-06-25 14:56:20 +03:00
|
|
|
setWindowTitle(QUCS_NAME " " PACKAGE_VERSION);
|
2004-02-21 18:38:50 +00:00
|
|
|
|
2022-02-21 23:12:02 +01:00
|
|
|
QucsSettings.hasDarkTheme = misc::isDarkTheme();
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
QucsFileFilter =
|
2014-02-07 15:04:12 +00:00
|
|
|
tr("Schematic") + " (*.sch);;" +
|
|
|
|
tr("Data Display") + " (*.dpl);;" +
|
|
|
|
tr("Qucs Documents") + " (*.sch *.dpl);;" +
|
|
|
|
tr("VHDL Sources") + " (*.vhdl *.vhd);;" +
|
|
|
|
tr("Verilog Sources") + " (*.v);;" +
|
|
|
|
tr("Verilog-A Sources") + " (*.va);;" +
|
|
|
|
tr("Octave Scripts") + " (*.m *.oct);;" +
|
2015-07-28 20:31:50 +02:00
|
|
|
tr("Spice Files") + QString(" (") + QucsSettings.spiceExtensions.join(" ") + QString(");;") +
|
2006-03-28 06:10:52 +00:00
|
|
|
tr("Any File")+" (*)";
|
2004-05-07 17:31:21 +00:00
|
|
|
|
2013-09-08 03:01:59 +01:00
|
|
|
updateSchNameHash();
|
2014-01-29 13:36:50 +00:00
|
|
|
updateSpiceNameHash();
|
2013-09-08 03:01:59 +01:00
|
|
|
|
2004-05-29 13:05:04 +00:00
|
|
|
move (QucsSettings.x, QucsSettings.y);
|
|
|
|
resize(QucsSettings.dx, QucsSettings.dy);
|
2004-02-21 18:38:50 +00:00
|
|
|
|
2011-03-09 21:17:51 +00:00
|
|
|
MouseMoveAction = 0;
|
|
|
|
MousePressAction = 0;
|
|
|
|
MouseReleaseAction = 0;
|
|
|
|
MouseDoubleClickAction = 0;
|
|
|
|
|
2004-04-24 11:52:43 +00:00
|
|
|
initView();
|
2006-03-28 06:10:52 +00:00
|
|
|
initActions();
|
|
|
|
initMenuBar();
|
|
|
|
initToolBar();
|
|
|
|
initStatusBar();
|
2014-11-23 12:24:05 +01:00
|
|
|
viewToolBar->setChecked(true);
|
|
|
|
viewStatusBar->setChecked(true);
|
|
|
|
viewBrowseDock->setChecked(true);
|
2011-03-03 18:09:11 +00:00
|
|
|
slotViewOctaveDock(false);
|
2015-01-11 22:36:06 +08:00
|
|
|
slotUpdateRecentFiles();
|
2004-02-21 18:38:50 +00:00
|
|
|
initCursorMenu();
|
2022-02-16 17:07:27 +01:00
|
|
|
Module::registerModules ();
|
2005-01-16 14:21:24 +00:00
|
|
|
|
2014-08-03 01:35:18 +02:00
|
|
|
// instance of small text search dialog
|
2006-04-10 06:12:35 +00:00
|
|
|
SearchDia = new SearchDialog(this);
|
2004-02-21 18:38:50 +00:00
|
|
|
|
2004-06-21 08:22:13 +00:00
|
|
|
// creates a document called "untitled"
|
2014-11-20 22:55:36 +08:00
|
|
|
Schematic *d = new Schematic(this, "");
|
|
|
|
int i = DocumentTab->addTab(d, QPixmap(empty_xpm), QObject::tr("untitled"));
|
|
|
|
DocumentTab->setCurrentIndex(i);
|
2006-03-28 06:10:52 +00:00
|
|
|
|
2014-11-23 12:24:05 +01:00
|
|
|
select->setChecked(true); // switch on the 'select' action
|
2006-04-10 06:12:35 +00:00
|
|
|
switchSchematicDoc(true); // "untitled" document is schematic
|
2004-10-31 17:55:57 +00:00
|
|
|
|
2013-11-24 12:01:47 +04:00
|
|
|
lastExportFilename = QDir::homePath() + QDir::separator() + "export.png";
|
|
|
|
|
2004-10-31 17:55:57 +00:00
|
|
|
// load documents given as command line arguments
|
2022-02-14 15:37:11 +01:00
|
|
|
for(int z=1; z<qApp->arguments().size(); z++) {
|
|
|
|
QString arg = qApp->arguments()[z];
|
|
|
|
QByteArray ba = arg.toLatin1();
|
|
|
|
const char *c_arg = ba.data();
|
|
|
|
if(*(c_arg) != '-') {
|
2015-01-10 22:12:42 +08:00
|
|
|
QFileInfo Info(arg);
|
|
|
|
QucsSettings.QucsWorkDir.setPath(Info.absoluteDir().absolutePath());
|
|
|
|
arg = QucsSettings.QucsWorkDir.filePath(Info.fileName());
|
|
|
|
gotoPage(arg);
|
2007-06-11 21:30:56 +00:00
|
|
|
}
|
|
|
|
}
|
2016-01-14 16:45:27 +03:00
|
|
|
|
|
|
|
if (QucsSettings.DefaultSimulator == spicecompat::simNotSpecified) {
|
|
|
|
QMessageBox::information(this,tr("Qucs"),tr("Default simulator is not specified yet.\n"
|
|
|
|
"Please setup it in the next dialog window.\n"
|
|
|
|
"If you have no simulators except Qucs installed\n"
|
|
|
|
"in your system leave default Qucsator setting\n"
|
|
|
|
"and simple press Apply button"));
|
|
|
|
slotSimSettings();
|
|
|
|
}
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QucsApp::~QucsApp()
|
|
|
|
{
|
2009-11-08 16:33:19 +00:00
|
|
|
Module::unregisterModules ();
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// #######################################################################
|
|
|
|
// ########## ##########
|
|
|
|
// ########## Creates the working area (QTabWidget etc.) ##########
|
|
|
|
// ########## ##########
|
|
|
|
// #######################################################################
|
2014-08-03 01:35:18 +02:00
|
|
|
/**
|
|
|
|
* @brief QucsApp::initView Setup the layour of all widgets
|
|
|
|
*/
|
2003-12-07 15:21:31 +00:00
|
|
|
void QucsApp::initView()
|
|
|
|
{
|
2013-07-01 23:43:49 +02:00
|
|
|
|
|
|
|
|
2005-02-28 09:30:41 +00:00
|
|
|
// set application icon
|
2014-08-23 01:49:20 +02:00
|
|
|
// APPLE sets the QApplication icon with Info.plist
|
|
|
|
#ifndef __APPLE__
|
|
|
|
setWindowIcon (QPixmap(":/bitmaps/big.qucs.xpm"));
|
|
|
|
#endif
|
2006-03-28 06:10:52 +00:00
|
|
|
|
2006-07-17 06:02:57 +00:00
|
|
|
DocumentTab = new QTabWidget(this);
|
|
|
|
setCentralWidget(DocumentTab);
|
2013-01-07 09:56:23 +01:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
connect(DocumentTab,
|
2022-02-15 21:26:33 +01:00
|
|
|
SIGNAL(currentChanged(int)), SLOT(slotChangeView()));
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2013-01-07 09:56:23 +01:00
|
|
|
// Give every tab a close button, and connect the button's signal to
|
|
|
|
// slotFileClose
|
|
|
|
DocumentTab->setTabsClosable(true);
|
|
|
|
connect(DocumentTab,
|
|
|
|
SIGNAL(tabCloseRequested(int)), SLOT(slotFileClose(int)));
|
2014-02-17 13:09:52 +00:00
|
|
|
#ifdef HAVE_QTABWIDGET_SETMOVABLE
|
|
|
|
// make tabs draggable if supported
|
|
|
|
DocumentTab->setMovable (true);
|
|
|
|
#endif
|
2013-01-07 09:56:23 +01:00
|
|
|
|
2015-05-27 22:06:11 +02:00
|
|
|
dock = new QDockWidget(tr("Main Dock"),this);
|
2014-08-03 01:35:18 +02:00
|
|
|
TabView = new QTabWidget(dock);
|
2013-03-19 18:49:17 +01:00
|
|
|
TabView->setTabPosition(QTabWidget::West);
|
2013-09-09 01:45:17 +01:00
|
|
|
|
2006-07-17 06:02:57 +00:00
|
|
|
connect(dock, SIGNAL(visibilityChanged(bool)), SLOT(slotToggleDock(bool)));
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2014-02-07 15:04:12 +00:00
|
|
|
view = new MouseActions(this);
|
2006-03-28 06:10:52 +00:00
|
|
|
|
|
|
|
editText = new QLineEdit(this); // for editing component properties
|
|
|
|
editText->setFrame(false);
|
|
|
|
editText->setHidden(true);
|
2015-06-24 20:30:33 +02:00
|
|
|
|
|
|
|
QPalette p = palette();
|
|
|
|
p.setColor(backgroundRole(), QucsSettings.BGColor);
|
|
|
|
editText->setPalette(p);
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
connect(editText, SIGNAL(returnPressed()), SLOT(slotApplyCompText()));
|
2006-05-08 06:13:04 +00:00
|
|
|
connect(editText, SIGNAL(textChanged(const QString&)),
|
|
|
|
SLOT(slotResizePropEdit(const QString&)));
|
2022-02-15 21:26:33 +01:00
|
|
|
connect(editText, SIGNAL(editingFinished()), SLOT(slotHideEdit()));
|
2006-03-28 06:10:52 +00:00
|
|
|
|
2003-12-07 15:21:31 +00:00
|
|
|
// ----------------------------------------------------------
|
|
|
|
// "Project Tab" of the left QTabWidget
|
2013-03-06 20:46:08 +01:00
|
|
|
QWidget *ProjGroup = new QWidget();
|
|
|
|
QVBoxLayout *ProjGroupLayout = new QVBoxLayout();
|
|
|
|
QWidget *ProjButts = new QWidget();
|
|
|
|
QPushButton *ProjNew = new QPushButton(tr("New"));
|
2014-12-10 23:34:01 +08:00
|
|
|
connect(ProjNew, SIGNAL(clicked()), SLOT(slotButtonProjNew()));
|
2013-03-06 20:46:08 +01:00
|
|
|
QPushButton *ProjOpen = new QPushButton(tr("Open"));
|
2014-12-10 23:34:01 +08:00
|
|
|
connect(ProjOpen, SIGNAL(clicked()), SLOT(slotButtonProjOpen()));
|
2013-03-06 20:46:08 +01:00
|
|
|
QPushButton *ProjDel = new QPushButton(tr("Delete"));
|
2014-12-10 23:34:01 +08:00
|
|
|
connect(ProjDel, SIGNAL(clicked()), SLOT(slotButtonProjDel()));
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2013-03-06 20:46:08 +01:00
|
|
|
QHBoxLayout *ProjButtsLayout = new QHBoxLayout();
|
|
|
|
ProjButtsLayout->addWidget(ProjNew);
|
|
|
|
ProjButtsLayout->addWidget(ProjOpen);
|
|
|
|
ProjButtsLayout->addWidget(ProjDel);
|
|
|
|
ProjButts->setLayout(ProjButtsLayout);
|
|
|
|
|
|
|
|
ProjGroupLayout->addWidget(ProjButts);
|
|
|
|
|
2014-12-10 23:15:34 +08:00
|
|
|
Projects = new QListView();
|
2013-03-06 20:46:08 +01:00
|
|
|
|
|
|
|
ProjGroupLayout->addWidget(Projects);
|
|
|
|
ProjGroup->setLayout(ProjGroupLayout);
|
|
|
|
|
2013-03-03 20:07:27 +01:00
|
|
|
TabView->addTab(ProjGroup, tr("Projects"));
|
2013-03-06 20:46:08 +01:00
|
|
|
TabView->setTabToolTip(TabView->indexOf(ProjGroup), tr("content of project directory"));
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2014-12-10 23:47:50 +08:00
|
|
|
connect(Projects, SIGNAL(doubleClicked(const QModelIndex &)),
|
|
|
|
this, SLOT(slotListProjOpen(const QModelIndex &)));
|
|
|
|
|
2003-12-07 15:21:31 +00:00
|
|
|
// ----------------------------------------------------------
|
2014-01-31 16:59:40 +00:00
|
|
|
// "Content" Tab of the left QTabWidget
|
2015-01-08 04:33:46 +08:00
|
|
|
Content = new ProjectView(this);
|
2013-03-19 19:34:28 +01:00
|
|
|
Content->setContextMenuPolicy(Qt::CustomContextMenu);
|
|
|
|
|
2015-01-08 04:33:46 +08:00
|
|
|
TabView->addTab(Content, tr("Content"));
|
2013-03-06 20:46:08 +01:00
|
|
|
TabView->setTabToolTip(TabView->indexOf(Content), tr("content of current project"));
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2015-01-08 04:33:46 +08:00
|
|
|
connect(Content, SIGNAL(clicked(const QModelIndex &)),
|
|
|
|
SLOT(slotSelectSubcircuit(const QModelIndex &)));
|
2014-12-19 20:25:25 +08:00
|
|
|
|
2015-01-08 04:33:46 +08:00
|
|
|
connect(Content, SIGNAL(doubleClicked(const QModelIndex &)),
|
|
|
|
SLOT(slotOpenContent(const QModelIndex &)));
|
2014-12-19 19:59:51 +08:00
|
|
|
|
2003-12-07 15:21:31 +00:00
|
|
|
// ----------------------------------------------------------
|
2014-01-31 16:59:40 +00:00
|
|
|
// "Component" Tab of the left QTabWidget
|
2013-03-06 20:46:08 +01:00
|
|
|
QWidget *CompGroup = new QWidget();
|
|
|
|
QVBoxLayout *CompGroupLayout = new QVBoxLayout();
|
2014-11-03 22:43:04 +08:00
|
|
|
QHBoxLayout *CompSearchLayout = new QHBoxLayout();
|
2013-03-06 20:46:08 +01:00
|
|
|
|
|
|
|
CompChoose = new QComboBox(this);
|
|
|
|
CompComps = new QListWidget(this);
|
|
|
|
CompComps->setViewMode(QListView::IconMode);
|
2013-03-19 19:05:02 +01:00
|
|
|
CompComps->setGridSize(QSize(110,90));
|
2014-10-28 00:33:01 +08:00
|
|
|
CompSearch = new QLineEdit(this);
|
2015-01-06 21:05:52 +08:00
|
|
|
CompSearch->setPlaceholderText(tr("Search Components"));
|
2014-11-03 22:43:04 +08:00
|
|
|
CompSearchClear = new QPushButton(tr("Clear"));
|
2013-03-06 20:46:08 +01:00
|
|
|
|
2015-01-06 21:05:52 +08:00
|
|
|
CompGroupLayout->setSpacing(5);
|
2013-03-06 20:46:08 +01:00
|
|
|
CompGroupLayout->addWidget(CompChoose);
|
|
|
|
CompGroupLayout->addWidget(CompComps);
|
2014-11-03 22:43:04 +08:00
|
|
|
CompGroupLayout->addLayout(CompSearchLayout);
|
|
|
|
CompSearchLayout->addWidget(CompSearch);
|
|
|
|
CompSearchLayout->addWidget(CompSearchClear);
|
2013-03-06 20:46:08 +01:00
|
|
|
CompGroup->setLayout(CompGroupLayout);
|
|
|
|
|
2013-03-03 20:07:27 +01:00
|
|
|
TabView->addTab(CompGroup,tr("Components"));
|
2013-03-06 20:46:08 +01:00
|
|
|
TabView->setTabToolTip(TabView->indexOf(CompGroup), tr("components and diagrams"));
|
2004-09-11 16:55:12 +00:00
|
|
|
fillComboBox(true);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
|
|
|
slotSetCompView(0);
|
|
|
|
connect(CompChoose, SIGNAL(activated(int)), SLOT(slotSetCompView(int)));
|
2013-03-06 20:46:08 +01:00
|
|
|
connect(CompComps, SIGNAL(itemActivated(QListWidgetItem*)), SLOT(slotSelectComponent(QListWidgetItem*)));
|
2013-06-16 20:52:21 +02:00
|
|
|
connect(CompComps, SIGNAL(itemPressed(QListWidgetItem*)), SLOT(slotSelectComponent(QListWidgetItem*)));
|
2014-11-03 22:43:04 +08:00
|
|
|
connect(CompSearch, SIGNAL(textEdited(const QString &)), SLOT(slotSearchComponent(const QString &)));
|
|
|
|
connect(CompSearchClear, SIGNAL(clicked()), SLOT(slotSearchClear()));
|
2013-03-03 20:07:27 +01:00
|
|
|
|
2014-01-31 16:59:40 +00:00
|
|
|
// ----------------------------------------------------------
|
|
|
|
// "Libraries" Tab of the left QTabWidget
|
|
|
|
|
|
|
|
QWidget *LibGroup = new QWidget ();
|
|
|
|
QVBoxLayout *LibGroupLayout = new QVBoxLayout ();
|
|
|
|
QWidget *LibButts = new QWidget ();
|
|
|
|
QPushButton *LibManage = new QPushButton (tr ("Manage Libraries"));
|
|
|
|
connect(LibManage, SIGNAL(clicked()), SLOT(slotCallLibrary()));
|
|
|
|
|
|
|
|
QHBoxLayout *LibButtsLayout = new QHBoxLayout();
|
|
|
|
LibButtsLayout->addWidget (LibManage);
|
|
|
|
LibButts->setLayout(LibButtsLayout);
|
|
|
|
|
|
|
|
LibGroupLayout->addWidget(LibButts);
|
|
|
|
|
|
|
|
|
|
|
|
libTreeWidget = new QTreeWidget (this);
|
|
|
|
libTreeWidget->setColumnCount (1);
|
2015-01-08 04:33:46 +08:00
|
|
|
QStringList headers;
|
2014-01-31 16:59:40 +00:00
|
|
|
headers.clear ();
|
|
|
|
headers << tr ("Libraries");
|
|
|
|
libTreeWidget->setHeaderLabels (headers);
|
|
|
|
|
|
|
|
LibGroupLayout->addWidget (libTreeWidget);
|
|
|
|
LibGroup->setLayout (LibGroupLayout);
|
|
|
|
|
|
|
|
fillLibrariesTreeView ();
|
|
|
|
|
|
|
|
TabView->addTab (LibGroup, tr("Libraries"));
|
|
|
|
TabView->setTabToolTip (TabView->indexOf (CompGroup), tr ("system and user component libraries"));
|
|
|
|
|
|
|
|
connect(libTreeWidget, SIGNAL(itemPressed (QTreeWidgetItem*, int)),
|
|
|
|
SLOT(slotSelectLibComponent (QTreeWidgetItem*)));
|
|
|
|
|
|
|
|
// ----------------------------------------------------------
|
|
|
|
// put the tab widget in the dock
|
2006-07-26 08:03:35 +00:00
|
|
|
dock->setWidget(TabView);
|
2013-03-03 20:07:27 +01:00
|
|
|
dock->setAllowedAreas(Qt::LeftDockWidgetArea);
|
|
|
|
this->addDockWidget(Qt::LeftDockWidgetArea, dock);
|
2015-06-24 20:30:33 +02:00
|
|
|
TabView->setCurrentIndex(0);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2011-03-03 18:09:11 +00:00
|
|
|
// ----------------------------------------------------------
|
|
|
|
// Octave docking window
|
2015-05-27 22:06:11 +02:00
|
|
|
octDock = new QDockWidget(tr("Octave Dock"));
|
2013-09-09 01:45:17 +01:00
|
|
|
|
2011-03-03 18:09:11 +00:00
|
|
|
connect(octDock, SIGNAL(visibilityChanged(bool)), SLOT(slotToggleOctave(bool)));
|
|
|
|
octave = new OctaveWindow(octDock);
|
2013-03-06 20:46:08 +01:00
|
|
|
this->addDockWidget(Qt::BottomDockWidgetArea, octDock);
|
|
|
|
this->setCorner(Qt::BottomLeftCorner , Qt::LeftDockWidgetArea);
|
2014-03-11 23:31:29 +01:00
|
|
|
|
|
|
|
// ............................................
|
|
|
|
|
|
|
|
messageDock = new MessageDock(this);
|
|
|
|
|
2014-12-10 23:15:34 +08:00
|
|
|
// initial home directory model
|
|
|
|
m_homeDirModel = new QFileSystemModel(this);
|
2015-01-07 01:01:16 +08:00
|
|
|
QStringList filters;
|
|
|
|
filters << "*_prj";
|
2014-12-10 23:15:34 +08:00
|
|
|
m_homeDirModel->setNameFilters(filters);
|
2015-01-07 01:01:16 +08:00
|
|
|
m_homeDirModel->setNameFilterDisables(false);
|
|
|
|
m_homeDirModel->setFilter(QDir::Dirs | QDir::NoDotAndDotDot);
|
2014-12-10 23:15:34 +08:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// ............................................
|
|
|
|
readProjects(); // reads all projects and inserts them into the ListBox
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
2014-01-31 16:59:40 +00:00
|
|
|
// Put all available libraries into ComboBox.
|
|
|
|
void QucsApp::fillLibrariesTreeView ()
|
|
|
|
{
|
|
|
|
QStringList LibFiles;
|
|
|
|
QStringList::iterator it;
|
|
|
|
QList<QTreeWidgetItem *> topitems;
|
|
|
|
|
|
|
|
libTreeWidget->clear();
|
|
|
|
|
|
|
|
// make the system libraries section header
|
|
|
|
QTreeWidgetItem* newitem = new QTreeWidgetItem((QTreeWidget*)0, QStringList("System Libraries"));
|
|
|
|
newitem->setChildIndicatorPolicy (QTreeWidgetItem::DontShowIndicator);
|
|
|
|
QFont sectionFont = newitem->font(0);
|
|
|
|
sectionFont.setItalic (true);
|
|
|
|
sectionFont.setBold (true);
|
|
|
|
newitem->setFont (0, sectionFont);
|
|
|
|
// newitem->setBackground
|
|
|
|
topitems.append (newitem);
|
|
|
|
|
|
|
|
QDir LibDir(QucsSettings.LibDir);
|
|
|
|
LibFiles = LibDir.entryList(QStringList("*.lib"), QDir::Files, QDir::Name);
|
2016-05-06 18:00:23 +03:00
|
|
|
QStringList blacklist = getBlacklistedLibraries(QucsSettings.LibDir);
|
|
|
|
foreach(QString ss, blacklist) { // exclude blacklisted files
|
|
|
|
LibFiles.removeAll(ss);
|
|
|
|
}
|
2014-01-31 16:59:40 +00:00
|
|
|
|
2016-11-19 07:44:05 +01:00
|
|
|
// create top level library items, base on the library names
|
2014-01-31 16:59:40 +00:00
|
|
|
for(it = LibFiles.begin(); it != LibFiles.end(); it++)
|
|
|
|
{
|
2016-11-19 07:44:05 +01:00
|
|
|
QString libPath(*it);
|
|
|
|
libPath.chop(4); // remove extension
|
|
|
|
|
2014-01-31 16:59:40 +00:00
|
|
|
ComponentLibrary parsedlibrary;
|
|
|
|
|
2016-11-19 07:44:05 +01:00
|
|
|
int result = parseComponentLibrary (libPath , parsedlibrary);
|
2014-01-31 16:59:40 +00:00
|
|
|
QStringList nameAndFileName;
|
|
|
|
nameAndFileName.append (parsedlibrary.name);
|
|
|
|
nameAndFileName.append (QucsSettings.LibDir + *it);
|
|
|
|
|
|
|
|
QTreeWidgetItem* newlibitem = new QTreeWidgetItem((QTreeWidget*)0, nameAndFileName);
|
|
|
|
|
|
|
|
switch (result)
|
|
|
|
{
|
|
|
|
case QUCS_COMP_LIB_IO_ERROR:
|
2016-11-19 07:44:05 +01:00
|
|
|
{
|
|
|
|
QString filename = getLibAbsPath(libPath);
|
|
|
|
QMessageBox::critical(0, tr ("Error"), tr("Cannot open \"%1\".").arg (filename));
|
2014-01-31 16:59:40 +00:00
|
|
|
return;
|
2016-11-19 07:44:05 +01:00
|
|
|
}
|
2014-01-31 16:59:40 +00:00
|
|
|
case QUCS_COMP_LIB_CORRUPT:
|
|
|
|
QMessageBox::critical(0, tr("Error"), tr("Library is corrupt."));
|
|
|
|
return;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < parsedlibrary.components.count (); i++)
|
|
|
|
{
|
|
|
|
QStringList compNameAndDefinition;
|
|
|
|
|
|
|
|
compNameAndDefinition.append (parsedlibrary.components[i].name);
|
|
|
|
|
|
|
|
QString s = "<Qucs Schematic " PACKAGE_VERSION ">\n";
|
|
|
|
|
|
|
|
s += "<Components>\n " +
|
|
|
|
parsedlibrary.components[i].modelString + "\n" +
|
|
|
|
"</Components>\n";
|
|
|
|
|
|
|
|
compNameAndDefinition.append (s);
|
2015-01-20 11:29:37 +01:00
|
|
|
|
2014-01-31 16:59:40 +00:00
|
|
|
QTreeWidgetItem* newcompitem = new QTreeWidgetItem(newlibitem, compNameAndDefinition);
|
2015-01-20 11:29:37 +01:00
|
|
|
|
|
|
|
// Silence warning from the compiler about unused variable newcompitem
|
|
|
|
// we pass the pointer to the parent item in the constructor
|
|
|
|
Q_UNUSED( newcompitem )
|
2014-01-31 16:59:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
topitems.append (newlibitem);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// make the user libraries section header
|
|
|
|
newitem = new QTreeWidgetItem((QTreeWidget*)0, QStringList("User Libraries"));
|
|
|
|
newitem->setChildIndicatorPolicy (QTreeWidgetItem::DontShowIndicator);
|
|
|
|
newitem->setFont (0, sectionFont);
|
|
|
|
topitems.append (newitem);
|
|
|
|
|
2014-02-19 10:48:34 +01:00
|
|
|
QDir UserLibDir = QDir (QucsSettings.QucsHomeDir.canonicalPath () + "/user_lib/");
|
2014-01-31 16:59:40 +00:00
|
|
|
|
2016-11-19 07:44:05 +01:00
|
|
|
LibFiles = UserLibDir.entryList(QStringList("*.lib"), QDir::Files, QDir::Name);
|
2016-11-30 10:35:14 +03:00
|
|
|
QDir UsrLibDir(UserLibDir);
|
|
|
|
LibFiles = UsrLibDir.entryList(QStringList("*.lib"), QDir::Files, QDir::Name);
|
|
|
|
blacklist = getBlacklistedLibraries(QucsSettings.LibDir);
|
|
|
|
foreach(QString ss, blacklist) { // exclude blacklisted files
|
|
|
|
LibFiles.removeAll(ss);
|
|
|
|
}
|
2016-11-19 07:44:05 +01:00
|
|
|
int UserLibCount = LibFiles.count();
|
2016-05-06 18:00:23 +03:00
|
|
|
|
2016-11-19 07:44:05 +01:00
|
|
|
if (UserLibCount > 0) // there are user libraries
|
2014-01-31 16:59:40 +00:00
|
|
|
{
|
|
|
|
|
2016-11-19 07:44:05 +01:00
|
|
|
// create top level library itmes, base on the library names
|
|
|
|
for(it = LibFiles.begin(); it != LibFiles.end(); it++)
|
2014-01-31 16:59:40 +00:00
|
|
|
{
|
2016-11-19 07:44:05 +01:00
|
|
|
QString libPath(UserLibDir.absoluteFilePath(*it));
|
|
|
|
libPath.chop(4); // remove extension
|
2014-01-31 16:59:40 +00:00
|
|
|
|
2016-11-19 07:44:05 +01:00
|
|
|
ComponentLibrary parsedlibrary;
|
2014-01-31 16:59:40 +00:00
|
|
|
|
2016-11-19 07:44:05 +01:00
|
|
|
int result = parseComponentLibrary (libPath, parsedlibrary);
|
|
|
|
QStringList nameAndFileName;
|
|
|
|
nameAndFileName.append (parsedlibrary.name);
|
|
|
|
nameAndFileName.append (UserLibDir.absolutePath() +"/"+ *it);
|
2014-01-31 16:59:40 +00:00
|
|
|
|
2016-11-19 07:44:05 +01:00
|
|
|
QTreeWidgetItem* newlibitem = new QTreeWidgetItem((QTreeWidget*)0, nameAndFileName);
|
2014-01-31 16:59:40 +00:00
|
|
|
|
2016-11-19 07:44:05 +01:00
|
|
|
switch (result)
|
|
|
|
{
|
|
|
|
case QUCS_COMP_LIB_IO_ERROR:
|
2014-01-31 16:59:40 +00:00
|
|
|
{
|
2016-11-19 07:44:05 +01:00
|
|
|
QString filename = getLibAbsPath(libPath);
|
|
|
|
QMessageBox::critical(0, tr ("Error"), tr("Cannot open \"%1\".").arg (filename));
|
|
|
|
return;
|
2014-01-31 16:59:40 +00:00
|
|
|
}
|
2016-11-19 07:44:05 +01:00
|
|
|
case QUCS_COMP_LIB_CORRUPT:
|
|
|
|
QMessageBox::critical(0, tr("Error"), tr("Library is corrupt."));
|
|
|
|
return;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2014-01-31 16:59:40 +00:00
|
|
|
|
2016-11-19 07:44:05 +01:00
|
|
|
for (int i = 0; i < parsedlibrary.components.count (); i++)
|
|
|
|
{
|
|
|
|
QStringList compNameAndDefinition;
|
2014-01-31 16:59:40 +00:00
|
|
|
|
2016-11-19 07:44:05 +01:00
|
|
|
compNameAndDefinition.append (parsedlibrary.components[i].name);
|
2014-01-31 16:59:40 +00:00
|
|
|
|
2016-11-19 07:44:05 +01:00
|
|
|
QString s = "<Qucs Schematic " PACKAGE_VERSION ">\n";
|
2014-01-31 16:59:40 +00:00
|
|
|
|
2016-11-19 07:44:05 +01:00
|
|
|
s += "<Components>\n " +
|
|
|
|
parsedlibrary.components[i].modelString + "\n" +
|
|
|
|
"</Components>\n";
|
2015-01-20 11:29:37 +01:00
|
|
|
|
2016-11-19 07:44:05 +01:00
|
|
|
compNameAndDefinition.append (s);
|
2015-01-20 11:29:37 +01:00
|
|
|
|
|
|
|
|
2016-11-19 07:44:05 +01:00
|
|
|
QTreeWidgetItem* newcompitem = new QTreeWidgetItem(newlibitem, compNameAndDefinition);
|
2014-01-31 16:59:40 +00:00
|
|
|
|
2016-11-19 07:44:05 +01:00
|
|
|
// Silence warning from the compiler about unused variable newcompitem
|
|
|
|
// we pass the pointer to the parent item in the constructor
|
|
|
|
Q_UNUSED( newcompitem )
|
2014-01-31 16:59:40 +00:00
|
|
|
}
|
2016-11-19 07:44:05 +01:00
|
|
|
|
|
|
|
topitems.append (newlibitem);
|
2014-01-31 16:59:40 +00:00
|
|
|
}
|
2016-11-19 07:44:05 +01:00
|
|
|
libTreeWidget->insertTopLevelItems(0, topitems);
|
2014-01-31 16:59:40 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// make the user libraries section header
|
|
|
|
newitem = new QTreeWidgetItem((QTreeWidget*)0, QStringList("No User Libraries"));
|
|
|
|
sectionFont.setBold (false);
|
|
|
|
newitem->setFont (0, sectionFont);
|
|
|
|
topitems.append (newitem);
|
|
|
|
}
|
|
|
|
|
|
|
|
libTreeWidget->insertTopLevelItems(0, topitems);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// ---------------------------------------------------------------
|
|
|
|
// Returns a pointer to the QucsDoc object whose number is "No".
|
|
|
|
// If No < 0 then a pointer to the current document is returned.
|
|
|
|
QucsDoc* QucsApp::getDoc(int No)
|
2004-09-11 16:55:12 +00:00
|
|
|
{
|
2006-03-28 06:10:52 +00:00
|
|
|
QWidget *w;
|
|
|
|
if(No < 0)
|
2015-06-24 20:30:33 +02:00
|
|
|
w = DocumentTab->currentWidget();
|
2006-03-28 06:10:52 +00:00
|
|
|
else
|
2015-06-24 20:30:33 +02:00
|
|
|
w = DocumentTab->widget(No);
|
2006-03-28 06:10:52 +00:00
|
|
|
|
|
|
|
if(w) {
|
2009-10-19 16:34:25 +00:00
|
|
|
if(isTextDocument (w))
|
2006-03-28 06:10:52 +00:00
|
|
|
return (QucsDoc*) ((TextDoc*)w);
|
2009-10-19 16:34:25 +00:00
|
|
|
else
|
|
|
|
return (QucsDoc*) ((Schematic*)w);
|
2004-09-11 16:55:12 +00:00
|
|
|
}
|
2006-03-28 06:10:52 +00:00
|
|
|
|
|
|
|
return 0;
|
2004-09-11 16:55:12 +00:00
|
|
|
}
|
|
|
|
|
2009-10-19 16:34:25 +00:00
|
|
|
// ---------------------------------------------------------------
|
|
|
|
// Returns a pointer to the QucsDoc object whose file name is "Name".
|
|
|
|
QucsDoc * QucsApp::findDoc (QString File, int * Pos)
|
|
|
|
{
|
|
|
|
QucsDoc * d;
|
|
|
|
int No = 0;
|
2022-02-14 15:37:11 +01:00
|
|
|
File = QDir::toNativeSeparators (File);
|
2009-10-19 16:34:25 +00:00
|
|
|
while ((d = getDoc (No++)) != 0)
|
2022-02-14 15:37:11 +01:00
|
|
|
if (QDir::toNativeSeparators (d->DocName) == File) {
|
2009-10-19 16:34:25 +00:00
|
|
|
if (Pos) *Pos = No - 1;
|
|
|
|
return d;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// ---------------------------------------------------------------
|
|
|
|
// Put the component groups into the ComboBox. It is possible to
|
|
|
|
// only put the paintings in it, because of "symbol painting mode".
|
2014-02-26 21:29:09 +01:00
|
|
|
|
|
|
|
// if setAll, add all categories to combobox
|
|
|
|
// if not, set just paintings (symbol painting mode)
|
2009-11-08 16:33:19 +00:00
|
|
|
void QucsApp::fillComboBox (bool setAll)
|
2006-03-28 06:10:52 +00:00
|
|
|
{
|
2014-02-26 21:29:09 +01:00
|
|
|
//CompChoose->setMaxVisibleItems (13); // Increase this if you add items below.
|
2009-11-08 16:33:19 +00:00
|
|
|
CompChoose->clear ();
|
2016-07-22 18:40:13 +02:00
|
|
|
CompSearch->clear(); // clear the search box, in case search was active...
|
2009-11-08 16:33:19 +00:00
|
|
|
|
2014-10-28 16:34:00 +08:00
|
|
|
if (!setAll) {
|
2015-06-24 20:30:33 +02:00
|
|
|
CompChoose->insertItem(CompChoose->count(), QObject::tr("paintings"));
|
2014-10-28 16:34:00 +08:00
|
|
|
} else {
|
|
|
|
QStringList cats = Category::getCategories ();
|
|
|
|
foreach (QString it, cats) {
|
2015-06-24 20:30:33 +02:00
|
|
|
CompChoose->insertItem(CompChoose->count(), it);
|
2014-10-28 16:34:00 +08:00
|
|
|
}
|
2006-03-28 06:10:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------
|
2006-02-27 07:10:33 +00:00
|
|
|
// Whenever the Component Library ComboBox is changed, this slot fills the
|
2013-09-08 03:01:59 +01:00
|
|
|
// Component IconView with the appropriate components.
|
2009-11-08 16:33:19 +00:00
|
|
|
void QucsApp::slotSetCompView (int index)
|
2006-02-27 07:10:33 +00:00
|
|
|
{
|
2015-06-30 19:17:25 +02:00
|
|
|
//qDebug() << "QucsApp::slotSetCompView(" << index << ")";
|
2014-02-26 21:29:09 +01:00
|
|
|
|
2009-11-08 16:33:19 +00:00
|
|
|
editText->setHidden (true); // disable text edit of component property
|
2006-02-27 07:10:33 +00:00
|
|
|
|
2014-11-06 00:29:04 +08:00
|
|
|
QList<Module *> Comps;
|
2009-11-08 16:33:19 +00:00
|
|
|
if (CompChoose->count () <= 0) return;
|
2014-01-10 13:29:56 +00:00
|
|
|
|
2015-06-30 19:17:25 +02:00
|
|
|
// was in "search mode" ?
|
|
|
|
if (CompChoose->itemText(0) == tr("Search results")) {
|
|
|
|
if (index == 0) // user selected "Search results" item
|
|
|
|
return;
|
|
|
|
CompChoose->removeItem(0);
|
2016-07-21 22:26:58 +02:00
|
|
|
CompSearch->clear(); // clear the search box
|
2015-06-30 19:17:25 +02:00
|
|
|
--index; // adjust requested index since item 0 was removed
|
|
|
|
}
|
2016-07-21 22:26:58 +02:00
|
|
|
CompComps->clear (); // clear the IconView
|
2015-06-30 19:17:25 +02:00
|
|
|
|
|
|
|
// make sure the right index is selected
|
|
|
|
// (might have been called by a cleared search and not by user action)
|
|
|
|
CompChoose->setCurrentIndex(index);
|
2016-07-17 21:11:41 +02:00
|
|
|
int compIdx;
|
|
|
|
iconCompInfoStruct iconCompInfo;
|
|
|
|
QVariant v;
|
2015-06-24 20:30:33 +02:00
|
|
|
QString item = CompChoose->itemText (index);
|
2016-12-05 19:07:49 +01:00
|
|
|
int catIdx = Category::getModulesNr(item);
|
2014-02-26 21:29:09 +01:00
|
|
|
|
2014-10-28 16:39:52 +08:00
|
|
|
Comps = Category::getModules(item);
|
2009-11-08 16:33:19 +00:00
|
|
|
QString Name;
|
2016-07-17 21:11:41 +02:00
|
|
|
pInfoFunc Infos = 0;
|
2014-02-26 21:29:09 +01:00
|
|
|
|
2022-07-05 07:08:28 -04:00
|
|
|
// if something was registered dynamically, get and draw icons into dock
|
2014-02-26 21:29:09 +01:00
|
|
|
if (item == QObject::tr("verilog-a user devices")) {
|
|
|
|
|
2016-07-17 21:11:41 +02:00
|
|
|
compIdx = 0;
|
2014-02-26 21:29:09 +01:00
|
|
|
QMapIterator<QString, QString> i(Module::vaComponents);
|
|
|
|
while (i.hasNext()) {
|
|
|
|
i.next();
|
|
|
|
|
2022-07-05 07:08:28 -04:00
|
|
|
// default icon initially matches the module name
|
2014-03-02 22:50:12 +01:00
|
|
|
//Name = i.key();
|
|
|
|
|
|
|
|
// Just need path to bitmap, do not create an object
|
|
|
|
QString Name, vaBitmap;
|
|
|
|
Component * c = (Component *)
|
|
|
|
vacomponent::info (Name, vaBitmap, false, i.value());
|
|
|
|
if (c) delete c;
|
|
|
|
|
|
|
|
// check if icon exists, fall back to default
|
2014-03-05 15:33:06 +01:00
|
|
|
QString iconPath = QucsSettings.QucsWorkDir.filePath(vaBitmap+".png");
|
2014-03-02 22:50:12 +01:00
|
|
|
|
|
|
|
QFile iconFile(iconPath);
|
|
|
|
QPixmap vaIcon;
|
|
|
|
|
|
|
|
if(iconFile.exists())
|
|
|
|
{
|
|
|
|
// load bitmap defined on the JSON symbol file
|
|
|
|
vaIcon = QPixmap(iconPath);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
QMessageBox::information(this, tr("Info"),
|
|
|
|
tr("Default icon not found:\n %1.png").arg(vaBitmap));
|
|
|
|
// default icon
|
|
|
|
vaIcon = QPixmap(":/bitmaps/editdelete.png");
|
|
|
|
}
|
2016-07-17 21:11:41 +02:00
|
|
|
QListWidgetItem *icon = new QListWidgetItem(vaIcon, Name);
|
2014-02-26 21:29:09 +01:00
|
|
|
icon->setToolTip(Name);
|
2016-07-17 21:11:41 +02:00
|
|
|
iconCompInfo = iconCompInfoStruct{catIdx, compIdx};
|
|
|
|
v.setValue(iconCompInfo);
|
|
|
|
icon->setData(Qt::UserRole, v);
|
2014-02-26 21:29:09 +01:00
|
|
|
CompComps->addItem(icon);
|
2016-07-17 21:11:41 +02:00
|
|
|
compIdx++;
|
2014-02-26 21:29:09 +01:00
|
|
|
}
|
2016-07-17 21:11:41 +02:00
|
|
|
} else {
|
|
|
|
// static components
|
2014-02-26 21:29:09 +01:00
|
|
|
char * File;
|
|
|
|
// Populate list of component bitmaps
|
2016-07-17 21:11:41 +02:00
|
|
|
compIdx = 0;
|
2014-11-06 00:29:04 +08:00
|
|
|
QList<Module *>::const_iterator it;
|
|
|
|
for (it = Comps.constBegin(); it != Comps.constEnd(); it++) {
|
2016-07-17 21:11:41 +02:00
|
|
|
Infos = (*it)->info;
|
|
|
|
if (Infos) {
|
2015-01-20 12:29:29 +01:00
|
|
|
/// \todo warning: expression result unused, can we rewrite this?
|
2015-06-23 11:05:51 +02:00
|
|
|
(void) *((*it)->info) (Name, File, false);
|
2022-03-12 16:22:13 +01:00
|
|
|
QString icon_path = misc::getIconPath(QString (File) + ".png", qucs::compIcons);
|
2022-02-21 23:12:02 +01:00
|
|
|
QListWidgetItem *icon = new QListWidgetItem(QPixmap(icon_path), Name);
|
2014-02-26 21:29:09 +01:00
|
|
|
icon->setToolTip(Name);
|
2016-07-17 21:11:41 +02:00
|
|
|
iconCompInfo = iconCompInfoStruct{catIdx, compIdx};
|
|
|
|
v.setValue(iconCompInfo);
|
|
|
|
icon->setData(Qt::UserRole, v);
|
2014-02-26 21:29:09 +01:00
|
|
|
CompComps->addItem(icon);
|
|
|
|
}
|
2016-07-17 21:11:41 +02:00
|
|
|
compIdx++;
|
2009-11-08 16:33:19 +00:00
|
|
|
}
|
2006-02-27 07:10:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-02 01:52:17 +08:00
|
|
|
// ------------------------------------------------------------------
|
|
|
|
// When CompSearch is being edited, create a temp page show the
|
|
|
|
// search result
|
|
|
|
void QucsApp::slotSearchComponent(const QString &searchText)
|
|
|
|
{
|
|
|
|
qDebug() << "User search: " << searchText;
|
|
|
|
CompComps->clear (); // clear the IconView
|
2015-06-30 19:17:25 +02:00
|
|
|
|
|
|
|
// not already in "search mode"
|
|
|
|
if (CompChoose->itemText(0) != tr("Search results")) {
|
|
|
|
ccCurIdx = CompChoose->currentIndex(); // remember current panel
|
|
|
|
// insert "Search results" at the beginning, so that it is visible
|
|
|
|
CompChoose->insertItem(-1, tr("Search results"));
|
|
|
|
CompChoose->setCurrentIndex(0);
|
|
|
|
}
|
|
|
|
|
2014-11-02 10:30:09 +08:00
|
|
|
if (searchText.isEmpty()) {
|
|
|
|
slotSetCompView(CompChoose->currentIndex());
|
|
|
|
} else {
|
2016-07-22 18:45:52 +02:00
|
|
|
CompChoose->setCurrentIndex(0); // make sure the "Search results" category is selected
|
2014-11-02 01:52:17 +08:00
|
|
|
editText->setHidden (true); // disable text edit of component property
|
|
|
|
|
|
|
|
//traverse all component and match searchText with name
|
|
|
|
QString Name;
|
|
|
|
char * File;
|
|
|
|
QList<Module *> Comps;
|
2016-07-17 16:21:41 +02:00
|
|
|
iconCompInfoStruct iconCompInfo;
|
|
|
|
QVariant v;
|
2014-11-02 01:52:17 +08:00
|
|
|
|
|
|
|
QStringList cats = Category::getCategories ();
|
2016-07-17 16:21:41 +02:00
|
|
|
int catIdx = 0;
|
2014-11-02 01:52:17 +08:00
|
|
|
foreach(QString it, cats) {
|
2016-07-17 16:21:41 +02:00
|
|
|
// this will go also over the "verilog-a user devices" category, if present
|
|
|
|
// but since modules there have no 'info' function it won't handle them
|
2014-11-02 01:52:17 +08:00
|
|
|
Comps = Category::getModules(it);
|
|
|
|
QList<Module *>::const_iterator modit;
|
2016-07-17 16:21:41 +02:00
|
|
|
int compIdx = 0;
|
2014-11-02 01:52:17 +08:00
|
|
|
for (modit = Comps.constBegin(); modit != Comps.constEnd(); modit++) {
|
|
|
|
if ((*modit)->info) {
|
2015-01-20 12:29:29 +01:00
|
|
|
/// \todo warning: expression result unused, can we rewrite this?
|
2015-06-23 11:05:51 +02:00
|
|
|
(void) *((*modit)->info) (Name, File, false);
|
2014-11-02 01:52:17 +08:00
|
|
|
|
|
|
|
if((Name.indexOf(searchText, 0, Qt::CaseInsensitive)) != -1) {
|
|
|
|
//match
|
2022-03-12 16:22:13 +01:00
|
|
|
QString icon_path = misc::getIconPath(QString (File) + ".png", qucs::compIcons);
|
2022-02-21 23:12:02 +01:00
|
|
|
QListWidgetItem *icon = new QListWidgetItem(QPixmap(icon_path), Name);
|
2014-11-26 16:29:45 +08:00
|
|
|
icon->setToolTip(it + ": " + Name);
|
2016-07-17 16:21:41 +02:00
|
|
|
// add component category and module indexes to the icon
|
|
|
|
iconCompInfo = iconCompInfoStruct{catIdx, compIdx};
|
|
|
|
v.setValue(iconCompInfo);
|
|
|
|
icon->setData(Qt::UserRole, v);
|
2014-11-02 01:52:17 +08:00
|
|
|
CompComps->addItem(icon);
|
|
|
|
}
|
|
|
|
}
|
2016-07-17 16:21:41 +02:00
|
|
|
compIdx++;
|
2014-11-02 01:52:17 +08:00
|
|
|
}
|
2016-07-17 16:21:41 +02:00
|
|
|
catIdx++;
|
2014-11-02 01:52:17 +08:00
|
|
|
}
|
2016-07-17 16:21:41 +02:00
|
|
|
// the "verilog-a user devices" is the last category, if present
|
2014-11-26 12:07:28 +08:00
|
|
|
QMapIterator<QString, QString> i(Module::vaComponents);
|
2016-07-17 16:21:41 +02:00
|
|
|
int compIdx = 0;
|
2014-11-26 12:07:28 +08:00
|
|
|
while (i.hasNext()) {
|
|
|
|
i.next();
|
|
|
|
// Just need path to bitmap, do not create an object
|
|
|
|
QString Name, vaBitmap;
|
|
|
|
vacomponent::info (Name, vaBitmap, false, i.value());
|
|
|
|
|
|
|
|
if((Name.indexOf(searchText, 0, Qt::CaseInsensitive)) != -1) {
|
|
|
|
//match
|
|
|
|
|
|
|
|
// check if icon exists, fall back to default
|
|
|
|
QString iconPath = QucsSettings.QucsWorkDir.filePath(vaBitmap+".png");
|
|
|
|
|
|
|
|
QFile iconFile(iconPath);
|
|
|
|
QPixmap vaIcon;
|
|
|
|
|
|
|
|
if(iconFile.exists())
|
|
|
|
{
|
|
|
|
// load bitmap defined on the JSON symbol file
|
|
|
|
vaIcon = QPixmap(iconPath);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// default icon
|
|
|
|
vaIcon = QPixmap(":/bitmaps/editdelete.png");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add icon an name tag to dock
|
|
|
|
QListWidgetItem *icon = new QListWidgetItem(vaIcon, Name);
|
2015-06-30 19:20:45 +02:00
|
|
|
icon->setToolTip(tr("verilog-a user devices") + ": " + Name);
|
2016-07-17 16:21:41 +02:00
|
|
|
// Verilog-A is the last category
|
|
|
|
iconCompInfo = iconCompInfoStruct{catIdx-1, compIdx};
|
|
|
|
v.setValue(iconCompInfo);
|
|
|
|
icon->setData(Qt::UserRole, v);
|
2014-11-26 12:07:28 +08:00
|
|
|
CompComps->addItem(icon);
|
|
|
|
}
|
2016-07-17 16:21:41 +02:00
|
|
|
compIdx++;
|
2014-11-26 12:07:28 +08:00
|
|
|
}
|
2014-11-02 01:52:17 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-03 22:43:04 +08:00
|
|
|
// ------------------------------------------------------------------
|
|
|
|
void QucsApp::slotSearchClear()
|
|
|
|
{
|
2015-06-30 19:17:25 +02:00
|
|
|
// was in "search mode" ?
|
|
|
|
if (CompChoose->itemText(0) == tr("Search results")) {
|
|
|
|
CompChoose->removeItem(0); // remove the added "Search results" item
|
|
|
|
CompSearch->clear();
|
|
|
|
// go back to the panel selected before search started
|
|
|
|
slotSetCompView(ccCurIdx);
|
|
|
|
// the added "Search results" panel text will be removed by slotSetCompView()
|
|
|
|
}
|
2014-11-03 22:43:04 +08:00
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// ------------------------------------------------------------------
|
2006-02-27 07:10:33 +00:00
|
|
|
// Is called when the mouse is clicked within the Component QIconView.
|
2013-03-06 20:46:08 +01:00
|
|
|
void QucsApp::slotSelectComponent(QListWidgetItem *item)
|
2006-02-27 07:10:33 +00:00
|
|
|
{
|
2015-01-28 00:14:17 +08:00
|
|
|
slotHideEdit(); // disable text edit of component property
|
2006-02-27 07:10:33 +00:00
|
|
|
|
|
|
|
// delete previously selected elements
|
|
|
|
if(view->selElem != 0) delete view->selElem;
|
|
|
|
view->selElem = 0; // no component/diagram/painting selected
|
|
|
|
|
|
|
|
if(item == 0) { // mouse button pressed not over an item ?
|
|
|
|
CompComps->clearSelection(); // deselect component in ViewList
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
if(view->drawn)
|
2015-06-24 20:30:33 +02:00
|
|
|
((Q3ScrollView*)DocumentTab->currentWidget())->viewport()->update();
|
2006-03-28 06:10:52 +00:00
|
|
|
view->drawn = false;
|
|
|
|
|
2006-02-27 07:10:33 +00:00
|
|
|
// toggle last toolbar button off
|
|
|
|
if(activeAction) {
|
|
|
|
activeAction->blockSignals(true); // do not call toggle slot
|
2014-11-23 12:24:05 +01:00
|
|
|
activeAction->setChecked(false); // set last toolbar button off
|
2006-02-27 07:10:33 +00:00
|
|
|
activeAction->blockSignals(false);
|
|
|
|
}
|
|
|
|
activeAction = 0;
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
MouseMoveAction = &MouseActions::MMoveElement;
|
|
|
|
MousePressAction = &MouseActions::MPressElement;
|
|
|
|
MouseReleaseAction = 0;
|
|
|
|
MouseDoubleClickAction = 0;
|
2006-02-27 07:10:33 +00:00
|
|
|
|
|
|
|
pInfoFunc Infos = 0;
|
2014-02-26 21:29:09 +01:00
|
|
|
pInfoVAFunc InfosVA = 0;
|
|
|
|
|
2013-03-06 20:46:08 +01:00
|
|
|
int i = CompComps->row(item);
|
2014-11-06 00:29:04 +08:00
|
|
|
QList<Module *> Comps;
|
2014-02-26 21:29:09 +01:00
|
|
|
|
|
|
|
// if symbol mode, only paintings are enabled.
|
2014-10-28 16:39:52 +08:00
|
|
|
Comps = Category::getModules(CompChoose->currentText());
|
2014-02-26 21:29:09 +01:00
|
|
|
|
2014-11-26 16:29:45 +08:00
|
|
|
QString name = CompComps->item(i)->text();
|
2014-11-02 01:52:17 +08:00
|
|
|
QString CompName;
|
|
|
|
QString CompFile_qstr;
|
|
|
|
char *CompFile_cptr;
|
2014-02-26 21:29:09 +01:00
|
|
|
|
2016-07-17 21:11:41 +02:00
|
|
|
qDebug() << "pressed CompComps id" << i << name;
|
|
|
|
QVariant v = CompComps->item(i)->data(Qt::UserRole);
|
|
|
|
iconCompInfoStruct iconCompInfo = v.value<iconCompInfoStruct>();
|
|
|
|
qDebug() << "slotSelectComponent()" << iconCompInfo.catIdx << iconCompInfo.compIdx;
|
|
|
|
|
|
|
|
Category* cat = Category::Categories.at(iconCompInfo.catIdx);
|
|
|
|
Module *mod = cat->Content.at(iconCompInfo.compIdx);
|
|
|
|
qDebug() << "mod->info" << mod->info;
|
|
|
|
qDebug() << "mod->infoVA" << mod->infoVA;
|
|
|
|
Infos = mod->info;
|
|
|
|
if (Infos) {
|
|
|
|
// static component
|
|
|
|
view->selElem = (*mod->info) (CompName, CompFile_cptr, true);
|
2014-12-06 00:44:39 +08:00
|
|
|
} else {
|
2016-07-17 21:11:41 +02:00
|
|
|
// Verilog-A component
|
|
|
|
InfosVA = mod->infoVA;
|
|
|
|
// get JSON file out of item name on widgetitem
|
|
|
|
QString filename = Module::vaComponents[name];
|
|
|
|
if (InfosVA) {
|
|
|
|
view->selElem = (*InfosVA) (CompName, CompFile_qstr, true, filename);
|
2014-11-02 10:30:09 +08:00
|
|
|
}
|
2014-02-26 21:29:09 +01:00
|
|
|
}
|
2016-11-06 09:57:16 +01:00
|
|
|
|
|
|
|
// in "search mode" ?
|
|
|
|
if (CompChoose->itemText(0) == tr("Search results")) {
|
|
|
|
if (Infos || InfosVA) {
|
|
|
|
// change currently selected category, so the user will
|
|
|
|
// see where the component comes from
|
|
|
|
CompChoose->setCurrentIndex(iconCompInfo.catIdx+1); // +1 due to the added "Search Results" item
|
|
|
|
ccCurIdx = iconCompInfo.catIdx; // remember the category to select when exiting search
|
|
|
|
//!! comment out the above two lines if you would like that the search
|
|
|
|
//!! returns back to the last selected category instead
|
|
|
|
}
|
2016-07-17 21:11:41 +02:00
|
|
|
}
|
2006-02-27 07:10:33 +00:00
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// ####################################################################
|
2013-03-10 16:37:08 +01:00
|
|
|
// ##### Functions for the menu that appears when right-clicking #####
|
2006-03-28 06:10:52 +00:00
|
|
|
// ##### on a file in the "Content" ListView. #####
|
|
|
|
// ####################################################################
|
|
|
|
|
2004-02-21 18:38:50 +00:00
|
|
|
void QucsApp::initCursorMenu()
|
|
|
|
{
|
2013-03-10 16:37:08 +01:00
|
|
|
ContentMenu = new QMenu(this);
|
2014-12-22 02:56:49 +08:00
|
|
|
#define APPEND_MENU(action, slot, text) \
|
|
|
|
{ \
|
2015-01-08 04:33:46 +08:00
|
|
|
action = new QAction(tr(text), ContentMenu); \
|
2014-12-22 02:56:49 +08:00
|
|
|
connect(action, SIGNAL(triggered()), SLOT(slot())); \
|
2015-01-08 04:33:46 +08:00
|
|
|
ContentMenu->addAction(action); \
|
2014-12-22 02:56:49 +08:00
|
|
|
}
|
|
|
|
|
2015-01-08 04:33:46 +08:00
|
|
|
APPEND_MENU(ActionCMenuOpen, slotCMenuOpen, "Open")
|
|
|
|
APPEND_MENU(ActionCMenuCopy, slotCMenuCopy, "Duplicate")
|
|
|
|
APPEND_MENU(ActionCMenuRename, slotCMenuRename, "Rename")
|
|
|
|
APPEND_MENU(ActionCMenuDelete, slotCMenuDelete, "Delete")
|
|
|
|
APPEND_MENU(ActionCMenuInsert, slotCMenuInsert, "Insert")
|
2013-06-16 20:52:21 +02:00
|
|
|
|
2014-12-22 02:56:49 +08:00
|
|
|
#undef APPEND_MENU
|
2013-03-19 19:34:28 +01:00
|
|
|
connect(Content, SIGNAL(customContextMenuRequested(const QPoint&)), SLOT(slotShowContentMenu(const QPoint&)));
|
|
|
|
}
|
2014-12-22 02:56:49 +08:00
|
|
|
|
|
|
|
// ----------------------------------------------------------
|
|
|
|
// Shows the menu.
|
2015-01-08 04:33:46 +08:00
|
|
|
void QucsApp::slotShowContentMenu(const QPoint& pos)
|
2004-02-21 18:38:50 +00:00
|
|
|
{
|
2015-01-08 04:33:46 +08:00
|
|
|
QModelIndex idx = Content->indexAt(pos);
|
2014-12-22 02:56:49 +08:00
|
|
|
if (idx.isValid() && idx.parent().isValid()) {
|
2015-01-08 04:33:46 +08:00
|
|
|
ActionCMenuInsert->setVisible(
|
2014-12-22 02:56:49 +08:00
|
|
|
idx.sibling(idx.row(), 1).data().toString().contains(tr("-port"))
|
|
|
|
);
|
2015-01-08 04:33:46 +08:00
|
|
|
ContentMenu->popup(Content->mapToGlobal(pos));
|
2014-12-22 02:56:49 +08:00
|
|
|
}
|
2004-02-21 18:38:50 +00:00
|
|
|
}
|
2014-12-22 02:56:49 +08:00
|
|
|
|
2004-09-25 12:10:08 +00:00
|
|
|
// ----------------------------------------------------------
|
2009-10-24 15:17:21 +00:00
|
|
|
QString QucsApp::fileType (const QString& Ext)
|
|
|
|
{
|
|
|
|
QString Type = tr("unknown");
|
|
|
|
if (Ext == "v")
|
|
|
|
Type = tr("Verilog source");
|
2009-10-24 20:41:13 +00:00
|
|
|
else if (Ext == "va")
|
|
|
|
Type = tr("Verilog-A source");
|
2009-10-24 15:17:21 +00:00
|
|
|
else if (Ext == "vhd" || Ext == "vhdl")
|
|
|
|
Type = tr("VHDL source");
|
|
|
|
else if (Ext == "dat")
|
|
|
|
Type = tr("data file");
|
|
|
|
else if (Ext == "dpl")
|
|
|
|
Type = tr("data display");
|
|
|
|
else if (Ext == "sch")
|
|
|
|
Type = tr("schematic");
|
|
|
|
else if (Ext == "sym")
|
|
|
|
Type = tr("symbol");
|
2014-01-09 13:29:00 +00:00
|
|
|
else if (Ext == "vhdl.cfg" || Ext == "vhd.cfg")
|
2009-10-24 15:17:21 +00:00
|
|
|
Type = tr("VHDL configuration");
|
|
|
|
else if (Ext == "cfg")
|
|
|
|
Type = tr("configuration");
|
|
|
|
return Type;
|
|
|
|
}
|
2004-09-25 12:10:08 +00:00
|
|
|
|
2015-01-08 04:33:46 +08:00
|
|
|
void QucsApp::slotCMenuOpen()
|
2014-12-22 02:56:49 +08:00
|
|
|
{
|
2015-01-08 04:33:46 +08:00
|
|
|
slotOpenContent(Content->currentIndex());
|
2014-12-22 02:56:49 +08:00
|
|
|
}
|
2006-03-28 06:10:52 +00:00
|
|
|
|
2015-01-08 04:33:46 +08:00
|
|
|
void QucsApp::slotCMenuCopy()
|
2014-12-22 02:56:49 +08:00
|
|
|
{
|
2015-01-08 04:33:46 +08:00
|
|
|
QModelIndex idx = Content->currentIndex();
|
2014-12-22 11:28:07 +08:00
|
|
|
|
|
|
|
//test the item is valid
|
|
|
|
if (!idx.isValid() || !idx.parent().isValid()) { return; }
|
|
|
|
|
|
|
|
QString filename = idx.sibling(idx.row(), 0).data().toString();
|
|
|
|
QDir dir(QucsSettings.QucsWorkDir);
|
|
|
|
QString file(dir.filePath(filename));
|
|
|
|
QFileInfo fileinfo(file);
|
|
|
|
|
|
|
|
//check changed file save
|
|
|
|
int z = 0; //search if the doc is loaded
|
|
|
|
QucsDoc *d = findDoc(file, &z);
|
|
|
|
if (d != NULL && d->DocChanged) {
|
2015-06-24 20:30:33 +02:00
|
|
|
DocumentTab->setCurrentIndex(z);
|
2014-12-22 11:28:07 +08:00
|
|
|
int ret = QMessageBox::question(this, tr("Copying Qucs document"),
|
|
|
|
tr("The document contains unsaved changes!\n") +
|
|
|
|
tr("Do you want to save the changes before copying?"),
|
|
|
|
tr("&Ignore"), tr("&Save"), 0, 1);
|
|
|
|
if (ret == 1) {
|
|
|
|
d->save();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-26 09:01:23 +08:00
|
|
|
QString suffix = fileinfo.suffix();
|
|
|
|
QString base = fileinfo.completeBaseName();
|
2014-12-22 11:28:07 +08:00
|
|
|
if(base.isEmpty()) {
|
|
|
|
base = filename;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool exists = true; //generate unique name
|
|
|
|
int i = 0;
|
|
|
|
QString defaultName;
|
|
|
|
while (exists) {
|
|
|
|
++i;
|
|
|
|
defaultName = base + "_copy" + QString::number(i) + "." + suffix;
|
|
|
|
exists = QFile::exists(dir.filePath(defaultName));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ok;
|
2015-06-24 20:30:33 +02:00
|
|
|
QString s = QInputDialog::getText(this, tr("Copy file"), tr("Enter new name:"), QLineEdit::Normal, defaultName, &ok);
|
|
|
|
|
2014-12-22 11:28:07 +08:00
|
|
|
if(ok && !s.isEmpty()) {
|
|
|
|
if (!s.endsWith(suffix)) {
|
|
|
|
s += QString(".") + suffix;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (QFile::exists(dir.filePath(s))) { //check New Name exists
|
|
|
|
QMessageBox::critical(this, tr("error"), tr("Cannot copy file to identical name: %1").arg(filename));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!QFile::copy(dir.filePath(filename), dir.filePath(s))) {
|
|
|
|
QMessageBox::critical(this, tr("Error"), tr("Cannot copy schematic: %1").arg(filename));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
//TODO: maybe require disable edit here
|
|
|
|
|
|
|
|
// refresh the schematic file path
|
|
|
|
this->updateSchNameHash();
|
|
|
|
this->updateSpiceNameHash();
|
|
|
|
|
2014-12-22 20:28:30 +08:00
|
|
|
slotUpdateTreeview();
|
2014-12-22 11:28:07 +08:00
|
|
|
}
|
2014-12-22 02:56:49 +08:00
|
|
|
}
|
2014-12-22 11:14:22 +08:00
|
|
|
|
2015-01-08 04:33:46 +08:00
|
|
|
void QucsApp::slotCMenuRename()
|
2014-12-22 02:56:49 +08:00
|
|
|
{
|
2015-01-08 04:33:46 +08:00
|
|
|
QModelIndex idx = Content->currentIndex();
|
2014-12-22 11:14:22 +08:00
|
|
|
|
|
|
|
//test the item is valid
|
2014-12-22 11:28:07 +08:00
|
|
|
if (!idx.isValid() || !idx.parent().isValid()) { return; }
|
2014-12-22 11:14:22 +08:00
|
|
|
|
|
|
|
QString filename = idx.sibling(idx.row(), 0).data().toString();
|
|
|
|
QString file(QucsSettings.QucsWorkDir.filePath(filename));
|
|
|
|
QFileInfo fileinfo(file);
|
|
|
|
|
|
|
|
if (findDoc(file)) {
|
|
|
|
QMessageBox::critical(this, tr("Error"),
|
|
|
|
tr("Cannot rename an open file!"));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-04-26 09:01:23 +08:00
|
|
|
QString suffix = fileinfo.suffix();
|
|
|
|
QString base = fileinfo.completeBaseName();
|
2014-12-22 11:14:22 +08:00
|
|
|
if(base.isEmpty()) {
|
|
|
|
base = filename;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ok;
|
2015-06-24 20:30:33 +02:00
|
|
|
QString s = QInputDialog::getText(this, tr("Rename file"), tr("Enter new filename:"), QLineEdit::Normal, base, &ok);
|
|
|
|
|
2014-12-22 11:14:22 +08:00
|
|
|
if(ok && !s.isEmpty()) {
|
|
|
|
if (!s.endsWith(suffix)) {
|
|
|
|
s += QString(".") + suffix;
|
|
|
|
}
|
|
|
|
QDir dir(QucsSettings.QucsWorkDir.path());
|
|
|
|
if(!dir.rename(filename, s)) {
|
2014-12-22 11:28:07 +08:00
|
|
|
QMessageBox::critical(this, tr("Error"), tr("Cannot rename file: %1").arg(filename));
|
2014-12-22 11:14:22 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-12-22 20:28:30 +08:00
|
|
|
slotUpdateTreeview();
|
2014-12-22 11:14:22 +08:00
|
|
|
}
|
2014-12-22 02:56:49 +08:00
|
|
|
}
|
2014-12-22 11:14:22 +08:00
|
|
|
|
2015-01-08 04:33:46 +08:00
|
|
|
void QucsApp::slotCMenuDelete()
|
2014-12-22 02:56:49 +08:00
|
|
|
{
|
2015-01-08 04:33:46 +08:00
|
|
|
QModelIndex idx = Content->currentIndex();
|
2014-12-22 11:28:07 +08:00
|
|
|
|
|
|
|
//test the item is valid
|
|
|
|
if (!idx.isValid() || !idx.parent().isValid()) { return; }
|
|
|
|
|
|
|
|
QString filename = idx.sibling(idx.row(), 0).data().toString();
|
|
|
|
QString file(QucsSettings.QucsWorkDir.filePath(filename));
|
|
|
|
|
|
|
|
if (findDoc (file)) {
|
|
|
|
QMessageBox::critical(this, tr("Error"), tr("Cannot delete an open file!"));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int No;
|
|
|
|
No = QMessageBox::warning(this, tr("Warning"),
|
|
|
|
tr("This will delete the file permanently! Continue ?"),
|
|
|
|
tr("No"), tr("Yes"));
|
|
|
|
if(No == 1) {
|
|
|
|
if(!QFile::remove(file)) {
|
|
|
|
QMessageBox::critical(this, tr("Error"),
|
|
|
|
tr("Cannot delete file: %1").arg(filename));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-22 20:28:30 +08:00
|
|
|
slotUpdateTreeview();
|
2014-12-22 02:56:49 +08:00
|
|
|
}
|
2014-12-22 11:28:07 +08:00
|
|
|
|
2015-01-08 04:33:46 +08:00
|
|
|
void QucsApp::slotCMenuInsert()
|
2013-06-16 20:52:21 +02:00
|
|
|
{
|
2015-01-08 04:33:46 +08:00
|
|
|
slotSelectSubcircuit(Content->currentIndex());
|
2013-06-16 20:52:21 +02:00
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// ################################################################
|
|
|
|
// ##### Functions that handle the project operations. #####
|
|
|
|
// ################################################################
|
|
|
|
|
|
|
|
// Checks for qucs directory and reads all existing Qucs projects.
|
2003-12-07 15:21:31 +00:00
|
|
|
void QucsApp::readProjects()
|
|
|
|
{
|
2014-12-10 23:15:34 +08:00
|
|
|
QString path = QucsSettings.QucsHomeDir.absolutePath();
|
|
|
|
QDir ProjDir(path);
|
|
|
|
|
|
|
|
// create home dir if not exist
|
|
|
|
if(!ProjDir.exists()) {
|
|
|
|
if(!ProjDir.mkdir(path)) {
|
2004-05-07 17:31:21 +00:00
|
|
|
QMessageBox::warning(this, tr("Warning"),
|
2014-12-10 23:15:34 +08:00
|
|
|
tr("Cannot create work directory !"));
|
2004-02-21 18:38:50 +00:00
|
|
|
return;
|
|
|
|
}
|
2006-06-06 06:14:17 +00:00
|
|
|
}
|
2014-12-10 23:15:34 +08:00
|
|
|
m_homeDirModel->setRootPath(path);
|
|
|
|
Projects->setModel(m_homeDirModel);
|
|
|
|
Projects->setRootIndex(m_homeDirModel->index(path));
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// ----------------------------------------------------------
|
|
|
|
// Is called, when "Create New Project" button is pressed.
|
2014-12-10 23:34:01 +08:00
|
|
|
void QucsApp::slotButtonProjNew()
|
2003-12-07 15:21:31 +00:00
|
|
|
{
|
2015-01-28 00:14:17 +08:00
|
|
|
slotHideEdit(); // disable text edit of component property
|
2004-02-21 18:38:50 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
NewProjDialog *d = new NewProjDialog(this);
|
|
|
|
if(d->exec() != QDialog::Accepted) return;
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2014-12-10 23:20:06 +08:00
|
|
|
QDir projDir(QucsSettings.QucsHomeDir.path());
|
|
|
|
QString name = d->ProjName->text();
|
|
|
|
bool open = d->OpenProj->isChecked();
|
|
|
|
|
|
|
|
if (!name.endsWith("_prj")) {
|
|
|
|
name += "_prj";
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!projDir.mkdir(name)) {
|
|
|
|
QMessageBox::information(this, tr("Info"),
|
|
|
|
tr("Cannot create project directory !"));
|
|
|
|
}
|
|
|
|
if(open) {
|
2014-12-10 23:47:50 +08:00
|
|
|
openProject(QucsSettings.QucsHomeDir.filePath(name));
|
2014-12-10 23:20:06 +08:00
|
|
|
}
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// ----------------------------------------------------------
|
|
|
|
// Opens an existing project.
|
2014-12-10 23:47:50 +08:00
|
|
|
void QucsApp::openProject(const QString& Path)
|
2003-12-07 15:21:31 +00:00
|
|
|
{
|
2015-01-28 00:14:17 +08:00
|
|
|
slotHideEdit(); // disable text edit of component property
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2016-02-23 22:29:48 +01:00
|
|
|
QDir ProjDir(QDir::cleanPath(Path)); // the full path
|
|
|
|
QString openProjName = ProjDir.dirName(); // only the project directory name
|
|
|
|
|
|
|
|
if(!ProjDir.exists() || !ProjDir.isReadable()) { // check project directory
|
|
|
|
QMessageBox::critical(this, tr("Error"),
|
|
|
|
tr("Cannot access project directory: %1").arg(Path));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!openProjName.endsWith("_prj")) { // should not happen
|
|
|
|
QMessageBox::critical(this, tr("Error"),
|
|
|
|
tr("Project directory name does not end in '_prj'(%1)").arg(openProjName));
|
|
|
|
return;
|
2014-12-11 00:09:39 +08:00
|
|
|
}
|
2014-12-10 23:47:50 +08:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
if(!closeAllFiles()) return; // close files and ask for saving them
|
2014-11-20 22:55:36 +08:00
|
|
|
Schematic *d = new Schematic(this, "");
|
2016-02-23 22:29:48 +01:00
|
|
|
int i = DocumentTab->addTab(d, QPixmap(empty_xpm), QObject::tr("untitled"));
|
2014-11-20 22:55:36 +08:00
|
|
|
DocumentTab->setCurrentIndex(i);
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
view->drawn = false;
|
2004-06-16 17:41:33 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
slotResetWarnings();
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2013-07-01 23:43:49 +02:00
|
|
|
QucsSettings.QucsWorkDir.setPath(ProjDir.path());
|
2011-03-04 17:05:16 +00:00
|
|
|
octave->adjustDirectory();
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2015-01-08 04:33:46 +08:00
|
|
|
Content->setProjPath(QucsSettings.QucsWorkDir.absolutePath());
|
2014-12-19 19:59:51 +08:00
|
|
|
|
2015-06-24 20:30:33 +02:00
|
|
|
TabView->setCurrentIndex(1); // switch to "Content"-Tab
|
2016-02-23 22:29:48 +01:00
|
|
|
|
|
|
|
openProjName.chop(4); // remove "_prj" from name
|
|
|
|
ProjName = openProjName; // remember the name of project
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// show name in title of main window
|
2016-02-23 22:29:48 +01:00
|
|
|
setWindowTitle("Qucs " PACKAGE_VERSION + tr(" - Project: ")+ProjName);
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// ----------------------------------------------------------
|
|
|
|
// Is called when the open project menu is called.
|
2014-12-10 23:34:01 +08:00
|
|
|
void QucsApp::slotMenuProjOpen()
|
2004-06-22 16:49:55 +00:00
|
|
|
{
|
2014-12-10 23:47:50 +08:00
|
|
|
QString d = QFileDialog::getExistingDirectory(
|
|
|
|
this, tr("Choose Project Directory for Opening"),
|
|
|
|
QucsSettings.QucsHomeDir.path(),
|
|
|
|
QFileDialog::ShowDirsOnly | QFileDialog::DontResolveSymlinks);
|
|
|
|
if(d.isEmpty()) return;
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2014-12-10 23:47:50 +08:00
|
|
|
openProject(d);
|
2006-03-28 06:10:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------
|
|
|
|
// Is called, when "Open Project" button is pressed.
|
2014-12-10 23:34:01 +08:00
|
|
|
void QucsApp::slotButtonProjOpen()
|
2003-12-07 15:21:31 +00:00
|
|
|
{
|
2014-12-10 23:47:50 +08:00
|
|
|
slotHideEdit();
|
2005-04-19 06:33:22 +00:00
|
|
|
|
2014-12-10 23:47:50 +08:00
|
|
|
QModelIndex idx = Projects->currentIndex();
|
|
|
|
if (!idx.isValid()) {
|
|
|
|
QMessageBox::information(this, tr("Info"),
|
|
|
|
tr("No project is selected !"));
|
|
|
|
} else {
|
|
|
|
slotListProjOpen(idx);
|
|
|
|
}
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// ----------------------------------------------------------
|
|
|
|
// Is called when project is double-clicked to open it.
|
2014-12-10 23:47:50 +08:00
|
|
|
void QucsApp::slotListProjOpen(const QModelIndex &idx)
|
2004-05-25 19:10:00 +00:00
|
|
|
{
|
2014-12-10 23:47:50 +08:00
|
|
|
openProject(QucsSettings.QucsHomeDir.filePath(
|
|
|
|
idx.data().toString()));
|
2006-03-28 06:10:52 +00:00
|
|
|
}
|
2005-04-19 06:33:22 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// ----------------------------------------------------------
|
|
|
|
// Is called when the close project menu is called.
|
2014-12-10 23:34:01 +08:00
|
|
|
void QucsApp::slotMenuProjClose()
|
2006-03-28 06:10:52 +00:00
|
|
|
{
|
2015-01-28 00:14:17 +08:00
|
|
|
slotHideEdit(); // disable text edit of component property
|
2006-03-28 06:10:52 +00:00
|
|
|
|
|
|
|
if(!closeAllFiles()) return; // close files and ask for saving them
|
2014-11-20 22:55:36 +08:00
|
|
|
Schematic *d = new Schematic(this, "");
|
|
|
|
int i = DocumentTab->addTab(d, QPixmap(empty_xpm), QObject::tr("untitled"));
|
|
|
|
DocumentTab->setCurrentIndex(i);
|
2014-11-21 00:08:11 +08:00
|
|
|
|
2004-05-25 19:10:00 +00:00
|
|
|
view->drawn = false;
|
2006-03-28 06:10:52 +00:00
|
|
|
|
|
|
|
slotResetWarnings();
|
2014-11-23 12:24:05 +01:00
|
|
|
setWindowTitle("Qucs " PACKAGE_VERSION + tr(" - Project: "));
|
2022-02-14 15:37:11 +01:00
|
|
|
QucsSettings.QucsWorkDir.setPath(QDir::homePath()+QDir::toNativeSeparators ("/.qucs"));
|
2011-03-04 17:05:16 +00:00
|
|
|
octave->adjustDirectory();
|
2006-03-28 06:10:52 +00:00
|
|
|
|
2015-01-08 04:43:58 +08:00
|
|
|
Content->setProjPath("");
|
2006-03-28 06:10:52 +00:00
|
|
|
|
2015-06-24 20:30:33 +02:00
|
|
|
TabView->setCurrentIndex(0); // switch to "Projects"-Tab
|
2006-03-28 06:10:52 +00:00
|
|
|
ProjName = "";
|
2004-05-25 19:10:00 +00:00
|
|
|
}
|
|
|
|
|
2014-12-11 01:31:38 +08:00
|
|
|
// remove a directory recursively
|
2014-12-11 13:28:36 +08:00
|
|
|
bool QucsApp::recurRemove(const QString &Path)
|
2006-07-03 06:02:08 +00:00
|
|
|
{
|
2014-12-11 01:31:38 +08:00
|
|
|
bool result = true;
|
|
|
|
QDir projDir = QDir(Path);
|
2006-07-03 06:02:08 +00:00
|
|
|
|
2014-12-11 01:31:38 +08:00
|
|
|
if (projDir.exists(Path)) {
|
|
|
|
Q_FOREACH(QFileInfo info,
|
|
|
|
projDir.entryInfoList(
|
|
|
|
QDir::AllDirs | QDir::NoDotAndDotDot | QDir::Hidden | QDir::AllEntries, QDir::DirsFirst)) {
|
|
|
|
if (info.isDir()) {
|
2014-12-11 13:28:36 +08:00
|
|
|
result = recurRemove(info.absoluteFilePath());
|
2014-12-11 01:31:38 +08:00
|
|
|
if (!result) {
|
|
|
|
QMessageBox::information(this, tr("Info"),
|
|
|
|
tr("Cannot remove directory: %1").arg(Path));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(info.isFile()) {
|
|
|
|
result = QFile::remove(info.absoluteFilePath());
|
|
|
|
if (!result) {
|
|
|
|
QMessageBox::information(this, tr("Info"),
|
|
|
|
tr("Cannot delete file: %1").arg(info.fileName()));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2006-07-03 06:02:08 +00:00
|
|
|
}
|
2014-12-11 01:31:38 +08:00
|
|
|
result = projDir.rmdir(Path);
|
2006-07-03 06:02:08 +00:00
|
|
|
}
|
2014-12-11 01:31:38 +08:00
|
|
|
return result;
|
2006-07-03 06:02:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------
|
2014-12-11 00:09:39 +08:00
|
|
|
bool QucsApp::deleteProject(const QString& Path)
|
2006-03-28 06:10:52 +00:00
|
|
|
{
|
2014-12-11 00:09:39 +08:00
|
|
|
slotHideEdit();
|
|
|
|
|
2016-02-23 22:34:09 +01:00
|
|
|
if(Path.isEmpty()) return false;
|
2014-12-11 00:09:39 +08:00
|
|
|
|
2016-02-23 22:34:09 +01:00
|
|
|
QString delProjName = QDir(Path).dirName(); // only project directory name
|
2014-12-11 00:09:39 +08:00
|
|
|
|
2016-02-23 22:34:09 +01:00
|
|
|
if (!delProjName.endsWith("_prj")) { // should not happen
|
|
|
|
QMessageBox::critical(this, tr("Error"),
|
|
|
|
tr("Project directory name does not end in '_prj' (%1)").arg(delProjName));
|
|
|
|
return false;
|
2014-12-11 00:09:39 +08:00
|
|
|
}
|
2006-03-28 06:10:52 +00:00
|
|
|
|
2016-02-23 22:34:09 +01:00
|
|
|
delProjName.chop(4); // remove "_prj" from name
|
|
|
|
|
|
|
|
if(delProjName == ProjName) {
|
2006-03-28 06:10:52 +00:00
|
|
|
QMessageBox::information(this, tr("Info"),
|
2014-12-11 00:09:39 +08:00
|
|
|
tr("Cannot delete an open project !"));
|
2006-03-28 06:10:52 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// first ask, if really delete project ?
|
|
|
|
if(QMessageBox::warning(this, tr("Warning"),
|
2014-12-11 00:09:39 +08:00
|
|
|
tr("This will destroy all the project files permanently ! Continue ?"),
|
|
|
|
tr("&Yes"), tr("&No"), 0,1,1)) return false;
|
2006-03-28 06:10:52 +00:00
|
|
|
|
2014-12-11 13:28:36 +08:00
|
|
|
if (!recurRemove(Path)) {
|
2006-03-28 06:10:52 +00:00
|
|
|
QMessageBox::information(this, tr("Info"),
|
2014-12-11 01:31:38 +08:00
|
|
|
tr("Cannot remove project directory!"));
|
2006-03-28 06:10:52 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------
|
|
|
|
// Is called, when "Delete Project" menu is activated.
|
2014-12-11 00:09:39 +08:00
|
|
|
void QucsApp::slotMenuProjDel()
|
2006-03-28 06:10:52 +00:00
|
|
|
{
|
2014-12-11 00:09:39 +08:00
|
|
|
QString d = QFileDialog::getExistingDirectory(
|
|
|
|
this, tr("Choose Project Directory for Deleting"),
|
|
|
|
QucsSettings.QucsHomeDir.path(),
|
|
|
|
QFileDialog::ShowDirsOnly
|
|
|
|
| QFileDialog::DontResolveSymlinks);
|
2006-03-28 06:10:52 +00:00
|
|
|
|
2014-12-11 00:09:39 +08:00
|
|
|
deleteProject(d);
|
2006-03-28 06:10:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ----------------------------------------------------------
|
|
|
|
// Is called, when "Delete Project" button is pressed.
|
2014-12-10 23:34:01 +08:00
|
|
|
void QucsApp::slotButtonProjDel()
|
2006-03-28 06:10:52 +00:00
|
|
|
{
|
2014-12-11 00:09:39 +08:00
|
|
|
QModelIndex idx = Projects->currentIndex();
|
|
|
|
if(!idx.isValid()) {
|
|
|
|
QMessageBox::information(this, tr("Info"),
|
|
|
|
tr("No project is selected!"));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
deleteProject(QucsSettings.QucsHomeDir.filePath(idx.data().toString()));
|
2006-03-28 06:10:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ################################################################
|
|
|
|
// ##### Functions that handle the file operations for the #####
|
|
|
|
// ##### documents. #####
|
|
|
|
// ################################################################
|
|
|
|
|
2003-12-07 15:21:31 +00:00
|
|
|
void QucsApp::slotFileNew()
|
|
|
|
{
|
2015-06-24 20:30:33 +02:00
|
|
|
statusBar()->showMessage(tr("Creating new schematic..."));
|
2015-01-28 00:14:17 +08:00
|
|
|
slotHideEdit(); // disable text edit of component property
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2014-11-20 22:55:36 +08:00
|
|
|
Schematic *d = new Schematic(this, "");
|
|
|
|
int i = DocumentTab->addTab(d, QPixmap(empty_xpm), QObject::tr("untitled"));
|
|
|
|
DocumentTab->setCurrentIndex(i);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2015-06-24 20:30:33 +02:00
|
|
|
statusBar()->showMessage(tr("Ready."));
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// --------------------------------------------------------------
|
|
|
|
void QucsApp::slotTextNew()
|
|
|
|
{
|
2015-06-24 20:30:33 +02:00
|
|
|
statusBar()->showMessage(tr("Creating new text editor..."));
|
2015-01-28 00:14:17 +08:00
|
|
|
slotHideEdit(); // disable text edit of component property
|
2014-11-20 22:55:36 +08:00
|
|
|
TextDoc *d = new TextDoc(this, "");
|
|
|
|
int i = DocumentTab->addTab(d, QPixmap(empty_xpm), QObject::tr("untitled"));
|
|
|
|
DocumentTab->setCurrentIndex(i);
|
2006-03-28 06:10:52 +00:00
|
|
|
|
2015-06-24 20:30:33 +02:00
|
|
|
statusBar()->showMessage(tr("Ready."));
|
2006-03-28 06:10:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------
|
|
|
|
// Changes to the document "Name". If already open then it goes to it
|
|
|
|
// directly, otherwise it loads it.
|
|
|
|
bool QucsApp::gotoPage(const QString& Name)
|
|
|
|
{
|
2015-06-24 20:30:33 +02:00
|
|
|
int No = DocumentTab->currentIndex();
|
2006-03-28 06:10:52 +00:00
|
|
|
|
2009-10-19 16:34:25 +00:00
|
|
|
int i = 0;
|
|
|
|
QucsDoc * d = findDoc (Name, &i); // search, if page is already loaded
|
2006-03-28 06:10:52 +00:00
|
|
|
|
|
|
|
if(d) { // open page found ?
|
|
|
|
d->becomeCurrent(true);
|
2015-06-24 20:30:33 +02:00
|
|
|
DocumentTab->setCurrentIndex(i); // make new document the current
|
2006-03-28 06:10:52 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
QFileInfo Info(Name);
|
2015-06-24 20:30:33 +02:00
|
|
|
if(Info.suffix() == "sch" || Info.suffix() == "dpl" ||
|
|
|
|
Info.suffix() == "sym") {
|
2006-03-28 06:10:52 +00:00
|
|
|
d = new Schematic(this, Name);
|
2014-11-20 22:55:36 +08:00
|
|
|
i = DocumentTab->addTab((Schematic *)d, QPixmap(empty_xpm), Info.fileName());
|
|
|
|
}
|
|
|
|
else {
|
2006-04-21 05:58:21 +00:00
|
|
|
d = new TextDoc(this, Name);
|
2014-11-20 22:55:36 +08:00
|
|
|
i = DocumentTab->addTab((TextDoc *)d, QPixmap(empty_xpm), Info.fileName());
|
|
|
|
}
|
|
|
|
DocumentTab->setCurrentIndex(i);
|
2006-03-28 06:10:52 +00:00
|
|
|
|
|
|
|
if(!d->load()) { // load document if possible
|
|
|
|
delete d;
|
2015-06-24 20:30:33 +02:00
|
|
|
DocumentTab->setCurrentIndex(No);
|
2006-03-28 06:10:52 +00:00
|
|
|
view->drawn = false;
|
|
|
|
return false;
|
|
|
|
}
|
2022-02-15 21:26:33 +01:00
|
|
|
slotChangeView();
|
2006-03-28 06:10:52 +00:00
|
|
|
|
|
|
|
// if only an untitled document was open -> close it
|
2006-07-31 06:04:54 +00:00
|
|
|
if(getDoc(0)->DocName.isEmpty())
|
|
|
|
if(!getDoc(0)->DocChanged)
|
2015-06-24 20:30:33 +02:00
|
|
|
delete DocumentTab->widget(0);
|
2006-03-28 06:10:52 +00:00
|
|
|
|
|
|
|
view->drawn = false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-05-05 16:50:01 +00:00
|
|
|
QString lastDirOpenSave; // to remember last directory and file
|
|
|
|
|
2003-12-07 15:21:31 +00:00
|
|
|
// --------------------------------------------------------------
|
|
|
|
void QucsApp::slotFileOpen()
|
|
|
|
{
|
2015-01-28 00:14:17 +08:00
|
|
|
slotHideEdit(); // disable text edit of component property
|
2005-04-04 17:26:45 +00:00
|
|
|
|
2015-06-24 20:30:33 +02:00
|
|
|
statusBar()->showMessage(tr("Opening file..."));
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2013-09-09 01:45:17 +01:00
|
|
|
QString s = QFileDialog::getOpenFileName(this, tr("Enter a Schematic Name"),
|
2013-03-15 18:14:06 +01:00
|
|
|
lastDirOpenSave.isEmpty() ? QString(".") : lastDirOpenSave, QucsFileFilter);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2005-04-04 17:26:45 +00:00
|
|
|
if(s.isEmpty())
|
2015-06-24 20:30:33 +02:00
|
|
|
statusBar()->showMessage(tr("Opening aborted"), 2000);
|
2005-04-04 17:26:45 +00:00
|
|
|
else {
|
2013-11-10 14:45:04 +04:00
|
|
|
updateRecentFilesList(s);
|
2013-11-08 15:26:22 +04:00
|
|
|
|
2005-04-04 17:26:45 +00:00
|
|
|
gotoPage(s);
|
2008-05-05 16:50:01 +00:00
|
|
|
lastDirOpenSave = s; // remember last directory and file
|
2013-11-08 15:26:22 +04:00
|
|
|
|
2015-06-24 20:30:33 +02:00
|
|
|
statusBar()->showMessage(tr("Ready."));
|
2005-04-04 17:26:45 +00:00
|
|
|
}
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// --------------------------------------------------------------
|
|
|
|
bool QucsApp::saveFile(QucsDoc *Doc)
|
2003-12-07 15:21:31 +00:00
|
|
|
{
|
2006-03-28 06:10:52 +00:00
|
|
|
if(!Doc)
|
|
|
|
Doc = getDoc();
|
2004-08-07 10:48:45 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
if(Doc->DocName.isEmpty())
|
2004-05-07 17:31:21 +00:00
|
|
|
return saveAs();
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
int Result = Doc->save();
|
2004-12-19 16:06:24 +00:00
|
|
|
if(Result < 0) return false;
|
|
|
|
|
2006-05-05 06:00:05 +00:00
|
|
|
updatePortNumber(Doc, Result);
|
2014-12-22 20:28:30 +08:00
|
|
|
slotUpdateTreeview();
|
2003-12-07 15:21:31 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// --------------------------------------------------------------
|
2003-12-07 15:21:31 +00:00
|
|
|
void QucsApp::slotFileSave()
|
|
|
|
{
|
2015-06-24 20:30:33 +02:00
|
|
|
statusBar()->showMessage(tr("Saving file..."));
|
2006-03-28 06:10:52 +00:00
|
|
|
DocumentTab->blockSignals(true); // no user interaction during that time
|
2015-01-28 00:14:17 +08:00
|
|
|
slotHideEdit(); // disable text edit of component property
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
if(!saveFile()) {
|
|
|
|
DocumentTab->blockSignals(false);
|
2015-06-24 20:30:33 +02:00
|
|
|
statusBar()->showMessage(tr("Saving aborted"), 2000);
|
|
|
|
statusBar()->showMessage(tr("Ready."));
|
2003-12-07 15:21:31 +00:00
|
|
|
return;
|
|
|
|
}
|
2004-05-07 17:31:21 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
DocumentTab->blockSignals(false);
|
2015-06-24 20:30:33 +02:00
|
|
|
statusBar()->showMessage(tr("Ready."));
|
2013-09-26 22:48:48 +02:00
|
|
|
|
|
|
|
if(!ProjName.isEmpty())
|
2015-01-08 04:43:58 +08:00
|
|
|
slotUpdateTreeview();
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// --------------------------------------------------------------
|
2004-05-07 17:31:21 +00:00
|
|
|
bool QucsApp::saveAs()
|
2003-12-07 15:21:31 +00:00
|
|
|
{
|
2015-06-24 20:30:33 +02:00
|
|
|
QWidget *w = DocumentTab->currentWidget();
|
2006-03-28 06:10:52 +00:00
|
|
|
QucsDoc *Doc = getDoc();
|
2005-04-04 17:26:45 +00:00
|
|
|
|
2004-05-07 17:31:21 +00:00
|
|
|
int n = -1;
|
2004-08-14 06:40:55 +00:00
|
|
|
QString s, Filter;
|
2004-05-07 17:31:21 +00:00
|
|
|
QFileInfo Info;
|
|
|
|
while(true) {
|
2006-03-28 06:10:52 +00:00
|
|
|
s = Doc->DocName;
|
2005-04-04 17:26:45 +00:00
|
|
|
Info.setFile(s);
|
|
|
|
if(s.isEmpty()) { // which is default directory ?
|
|
|
|
if(ProjName.isEmpty()) {
|
2022-04-13 17:30:16 +02:00
|
|
|
if(lastDirOpenSave.isEmpty()) s = QDir::homePath();
|
2008-05-05 16:50:01 +00:00
|
|
|
else s = lastDirOpenSave;
|
2005-04-04 17:26:45 +00:00
|
|
|
}
|
2013-07-01 23:43:49 +02:00
|
|
|
else s = QucsSettings.QucsWorkDir.path();
|
2005-04-04 17:26:45 +00:00
|
|
|
}
|
|
|
|
|
2010-04-14 16:26:35 +00:00
|
|
|
// list of known file extensions
|
2014-01-29 13:36:50 +00:00
|
|
|
QString ext = "vhdl;vhd;v;va;sch;dpl;m;oct;net;qnet;txt";
|
2015-06-24 20:30:33 +02:00
|
|
|
QStringList extlist = ext.split (';');
|
2010-04-14 16:26:35 +00:00
|
|
|
|
2009-10-19 16:34:25 +00:00
|
|
|
if(isTextDocument (w))
|
2009-10-22 18:39:38 +00:00
|
|
|
Filter = tr("VHDL Sources")+" (*.vhdl *.vhd);;" +
|
|
|
|
tr("Verilog Sources")+" (*.v);;"+
|
2009-10-24 20:41:13 +00:00
|
|
|
tr("Verilog-A Sources")+" (*.va);;"+
|
2011-03-06 11:40:43 +00:00
|
|
|
tr("Octave Scripts")+" (*.m *.oct);;"+
|
2014-01-29 13:36:50 +00:00
|
|
|
tr("Qucs Netlist")+" (*.net *.qnet);;"+
|
|
|
|
tr("Plain Text")+" (*.txt);;"+
|
2009-10-22 18:39:38 +00:00
|
|
|
tr("Any File")+" (*)";
|
2006-03-28 06:10:52 +00:00
|
|
|
else
|
|
|
|
Filter = QucsFileFilter;
|
2014-01-29 13:36:50 +00:00
|
|
|
|
|
|
|
s = QFileDialog::getSaveFileName(this, tr("Enter a Document Name"),
|
2022-04-13 17:30:16 +02:00
|
|
|
s, Filter);
|
2004-05-07 17:31:21 +00:00
|
|
|
if(s.isEmpty()) return false;
|
2010-04-14 16:26:35 +00:00
|
|
|
Info.setFile(s); // try to guess the best extension ...
|
2015-06-24 20:30:33 +02:00
|
|
|
ext = Info.suffix();
|
2014-01-29 13:36:50 +00:00
|
|
|
|
|
|
|
if(ext.isEmpty() || !extlist.contains(ext))
|
|
|
|
{
|
|
|
|
// if no extension was specified or is unknown
|
|
|
|
if (!isTextDocument (w))
|
|
|
|
{
|
|
|
|
// assume it is a schematic
|
2006-03-28 06:10:52 +00:00
|
|
|
s += ".sch";
|
2014-01-29 13:36:50 +00:00
|
|
|
}
|
2006-03-28 06:10:52 +00:00
|
|
|
}
|
2004-04-17 09:11:48 +00:00
|
|
|
|
2004-05-07 17:31:21 +00:00
|
|
|
Info.setFile(s);
|
|
|
|
if(QFile::exists(s)) {
|
|
|
|
n = QMessageBox::warning(this, tr("Warning"),
|
|
|
|
tr("The file '")+Info.fileName()+tr("' already exists!\n")+
|
|
|
|
tr("Saving will overwrite the old one! Continue?"),
|
|
|
|
tr("No"), tr("Yes"), tr("Cancel"));
|
|
|
|
if(n == 2) return false; // cancel
|
|
|
|
if(n == 0) continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// search, if document is open
|
2009-10-19 16:34:25 +00:00
|
|
|
QucsDoc * d = findDoc (s);
|
2004-05-07 17:31:21 +00:00
|
|
|
if(d) {
|
|
|
|
QMessageBox::information(this, tr("Info"),
|
|
|
|
tr("Cannot overwrite an open document"));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
2006-03-28 06:10:52 +00:00
|
|
|
Doc->setName(s);
|
2015-04-21 11:33:38 +08:00
|
|
|
DocumentTab->setTabText(DocumentTab->indexOf(w), misc::properFileName(s));
|
2015-06-24 20:30:33 +02:00
|
|
|
lastDirOpenSave = Info.absolutePath(); // remember last directory and file
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
n = Doc->save(); // SAVE
|
2004-12-19 16:06:24 +00:00
|
|
|
if(n < 0) return false;
|
|
|
|
|
2006-05-05 06:00:05 +00:00
|
|
|
updatePortNumber(Doc, n);
|
2014-12-22 20:28:30 +08:00
|
|
|
slotUpdateTreeview();
|
2016-02-05 13:06:18 +03:00
|
|
|
updateRecentFilesList(s);
|
2004-05-07 17:31:21 +00:00
|
|
|
return true;
|
|
|
|
}
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// --------------------------------------------------------------
|
2004-05-07 17:31:21 +00:00
|
|
|
void QucsApp::slotFileSaveAs()
|
|
|
|
{
|
2015-06-24 20:30:33 +02:00
|
|
|
statusBar()->showMessage(tr("Saving file under new filename..."));
|
2006-03-28 06:10:52 +00:00
|
|
|
DocumentTab->blockSignals(true); // no user interaction during the time
|
2015-01-28 00:14:17 +08:00
|
|
|
slotHideEdit(); // disable text edit of component property
|
2004-05-07 17:31:21 +00:00
|
|
|
|
|
|
|
if(!saveAs()) {
|
2006-03-28 06:10:52 +00:00
|
|
|
DocumentTab->blockSignals(false);
|
2015-06-24 20:30:33 +02:00
|
|
|
statusBar()->showMessage(tr("Saving aborted"), 3000);
|
|
|
|
statusBar()->showMessage(tr("Ready."));
|
2004-05-07 17:31:21 +00:00
|
|
|
return;
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
DocumentTab->blockSignals(false);
|
2015-06-24 20:30:33 +02:00
|
|
|
statusBar()->showMessage(tr("Ready."));
|
2013-09-08 03:01:59 +01:00
|
|
|
|
|
|
|
// refresh the schematic file path
|
2015-01-10 23:22:32 +08:00
|
|
|
slotRefreshSchPath();
|
2013-09-26 22:48:48 +02:00
|
|
|
|
|
|
|
if(!ProjName.isEmpty())
|
2015-01-08 04:43:58 +08:00
|
|
|
slotUpdateTreeview();
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// --------------------------------------------------------------
|
2003-12-07 15:21:31 +00:00
|
|
|
void QucsApp::slotFileSaveAll()
|
|
|
|
{
|
2015-06-24 20:30:33 +02:00
|
|
|
statusBar()->showMessage(tr("Saving all files..."));
|
2015-01-28 00:14:17 +08:00
|
|
|
slotHideEdit(); // disable text edit of component property
|
2006-03-28 06:10:52 +00:00
|
|
|
DocumentTab->blockSignals(true); // no user interaction during the time
|
|
|
|
|
|
|
|
int No=0;
|
|
|
|
QucsDoc *Doc; // search, if page is already loaded
|
|
|
|
while((Doc=getDoc(No++)) != 0) {
|
|
|
|
if(Doc->DocName.isEmpty()) // make document the current ?
|
2015-06-24 20:30:33 +02:00
|
|
|
DocumentTab->setCurrentIndex(No-1);
|
2015-09-17 20:09:40 +03:00
|
|
|
if (saveFile(Doc)) { // Hack! TODO: Maybe it's better to let slotFileChanged()
|
|
|
|
DocumentTab->setTabIcon(No-1,QPixmap(empty_xpm)); // know about Tab number?
|
|
|
|
}
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
2004-03-28 19:51:04 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
DocumentTab->blockSignals(false);
|
2013-10-08 23:12:14 +02:00
|
|
|
// Call update() to update subcircuit symbols in current Schematic document.
|
|
|
|
// TextDoc has no viewport, it needs no update.
|
2015-06-24 20:30:33 +02:00
|
|
|
QString tabType = DocumentTab->currentWidget()->metaObject()->className();
|
|
|
|
|
2013-10-08 23:12:14 +02:00
|
|
|
if (tabType == "Schematic") {
|
2015-06-24 20:30:33 +02:00
|
|
|
((Q3ScrollView*)DocumentTab->currentWidget())->viewport()->update();
|
2013-10-08 23:12:14 +02:00
|
|
|
}
|
2006-05-05 06:00:05 +00:00
|
|
|
view->drawn = false;
|
2015-06-24 20:30:33 +02:00
|
|
|
statusBar()->showMessage(tr("Ready."));
|
2013-09-08 03:01:59 +01:00
|
|
|
|
|
|
|
// refresh the schematic file path
|
2015-01-10 23:22:32 +08:00
|
|
|
slotRefreshSchPath();
|
2014-12-22 20:28:30 +08:00
|
|
|
slotUpdateTreeview();
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// --------------------------------------------------------------
|
2013-01-07 09:56:23 +01:00
|
|
|
// Close the currently active file tab
|
2003-12-07 15:21:31 +00:00
|
|
|
void QucsApp::slotFileClose()
|
|
|
|
{
|
2013-01-07 09:56:23 +01:00
|
|
|
// Using file index -1 closes the currently active file window
|
|
|
|
closeFile(-1);
|
|
|
|
}
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2013-01-07 09:56:23 +01:00
|
|
|
// --------------------------------------------------------------
|
|
|
|
// Close the file tab specified by its index
|
|
|
|
void QucsApp::slotFileClose(int index)
|
|
|
|
{
|
|
|
|
// Call closeFile with a specific tab index
|
|
|
|
closeFile(index);
|
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------
|
|
|
|
// Common function to close a file tab specified by its index
|
|
|
|
// checking for changes in the file before doing so. If called
|
|
|
|
// index == -1, the active document will be closed
|
|
|
|
void QucsApp::closeFile(int index)
|
|
|
|
{
|
2015-06-24 20:30:33 +02:00
|
|
|
statusBar()->showMessage(tr("Closing file..."));
|
fix crash when close file with editText focus
The repeat steps:
1. Open a schematic file.
2. Focus on a component property, show the property edit
3. Close the file
4. The program will crash
The source:
This bug is appeared since commit eadd7b
The cause:
When click on property edit, this line
qucs_action.cpp:1221, editText->reparent(...
will change the editText to child of the open document
At this time, if the document is closed, the editText will
be deleted by Qt
After that, qucs try to access to editText will access to invalid
memory.
The fix:
To be general, now editText will child of main app every time the
slotHideEdit() called, it's a little overhead, but guarantee safe.
function slotHideEdit() {
...
editText->setParent(this, 0);
}
2015-04-26 09:23:22 +08:00
|
|
|
|
2015-01-28 00:14:17 +08:00
|
|
|
slotHideEdit(); // disable text edit of component property
|
2013-01-07 09:56:23 +01:00
|
|
|
|
|
|
|
QucsDoc *Doc = getDoc(index);
|
|
|
|
if(Doc->DocChanged) {
|
|
|
|
switch(QMessageBox::warning(this,tr("Closing Qucs document"),
|
|
|
|
tr("The document contains unsaved changes!\n")+
|
|
|
|
tr("Do you want to save the changes before closing?"),
|
|
|
|
tr("&Save"), tr("&Discard"), tr("Cancel"), 0, 2)) {
|
|
|
|
case 0 : slotFileSave();
|
|
|
|
break;
|
|
|
|
case 2 : return;
|
|
|
|
}
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
2014-11-21 00:34:18 +08:00
|
|
|
DocumentTab->removeTab(index);
|
2015-04-16 10:25:05 +08:00
|
|
|
delete Doc;
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2014-11-20 22:55:36 +08:00
|
|
|
if(DocumentTab->count() < 1) { // if no document left, create an untitled
|
|
|
|
Schematic *d = new Schematic(this, "");
|
|
|
|
DocumentTab->addTab(d, QPixmap(empty_xpm), QObject::tr("untitled"));
|
|
|
|
DocumentTab->setCurrentIndex(0);
|
|
|
|
}
|
2004-09-25 12:10:08 +00:00
|
|
|
|
2015-06-24 20:30:33 +02:00
|
|
|
statusBar()->showMessage(tr("Ready."));
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
2012-10-31 11:11:56 +01:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// --------------------------------------------------------------
|
|
|
|
bool QucsApp::closeAllFiles()
|
2003-12-07 15:21:31 +00:00
|
|
|
{
|
2007-02-19 07:07:50 +00:00
|
|
|
SaveDialog *sd = new SaveDialog(this);
|
|
|
|
sd->setApp(this);
|
|
|
|
for(int i=0; i < DocumentTab->count(); ++i) {
|
|
|
|
QucsDoc *doc = getDoc(i);
|
|
|
|
if(doc->DocChanged)
|
|
|
|
sd->addUnsavedDoc(doc);
|
|
|
|
}
|
|
|
|
int Result = SaveDialog::DontSave;
|
|
|
|
if(!sd->isEmpty())
|
|
|
|
Result = sd->exec();
|
|
|
|
delete sd;
|
|
|
|
if(Result == SaveDialog::AbortClosing)
|
|
|
|
return false;
|
|
|
|
QucsDoc *doc = 0;
|
|
|
|
while((doc = getDoc()) != 0)
|
2012-10-31 11:11:56 +01:00
|
|
|
delete doc;
|
2013-09-09 01:45:17 +01:00
|
|
|
|
2007-02-19 07:07:50 +00:00
|
|
|
|
|
|
|
switchEditMode(true); // set schematic edit mode
|
|
|
|
return true;
|
2013-09-09 01:45:17 +01:00
|
|
|
}
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2013-05-21 21:25:08 +02:00
|
|
|
|
2013-05-21 16:39:04 +02:00
|
|
|
void QucsApp::slotFileExamples()
|
|
|
|
{
|
2015-06-24 20:30:33 +02:00
|
|
|
statusBar()->showMessage(tr("Open examples directory..."));
|
2016-11-26 14:05:01 +01:00
|
|
|
// pass the QUrl representation of a local file
|
|
|
|
QDesktopServices::openUrl(QUrl::fromLocalFile(QucsSettings.ExamplesDir));
|
2015-06-24 20:30:33 +02:00
|
|
|
statusBar()->showMessage(tr("Ready."));
|
2013-05-21 16:39:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void QucsApp::slotHelpTutorial()
|
|
|
|
{
|
2016-11-26 14:05:01 +01:00
|
|
|
// pass the QUrl representation of a local file
|
|
|
|
QUrl url = QUrl::fromLocalFile(QDir::cleanPath(QucsSettings.DocDir + "/tutorial/" + QObject::sender()->objectName()));
|
2013-05-21 21:25:08 +02:00
|
|
|
QDesktopServices::openUrl(url);
|
2013-05-21 16:39:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void QucsApp::slotHelpTechnical()
|
|
|
|
{
|
2016-11-26 14:05:01 +01:00
|
|
|
// pass the QUrl representation of a local file
|
|
|
|
QUrl url = QUrl::fromLocalFile(QDir::cleanPath(QucsSettings.DocDir + "/technical/" + QObject::sender()->objectName()));
|
2013-05-21 21:25:08 +02:00
|
|
|
QDesktopServices::openUrl(url);
|
2013-05-21 16:39:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void QucsApp::slotHelpReport()
|
|
|
|
{
|
2016-11-26 14:05:01 +01:00
|
|
|
// pass the QUrl representation of a local file
|
|
|
|
QUrl url = QUrl::fromLocalFile(QDir::cleanPath(QucsSettings.DocDir + "/report/" + QObject::sender()->objectName()));
|
2013-05-21 21:25:08 +02:00
|
|
|
QDesktopServices::openUrl(url);
|
2013-05-21 16:39:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// --------------------------------------------------------------
|
|
|
|
// Is called when another document is selected via the TabBar.
|
2022-02-15 21:26:33 +01:00
|
|
|
void QucsApp::slotChangeView()
|
2004-08-25 19:46:13 +00:00
|
|
|
{
|
2013-04-06 19:06:49 +02:00
|
|
|
|
2022-02-15 21:26:33 +01:00
|
|
|
QWidget *w = DocumentTab->currentWidget();
|
2009-10-19 16:34:25 +00:00
|
|
|
editText->setHidden (true); // disable text edit of component property
|
|
|
|
QucsDoc * Doc;
|
2012-11-01 09:18:26 +01:00
|
|
|
if(w==NULL)return;
|
2009-10-19 16:34:25 +00:00
|
|
|
// for text documents
|
|
|
|
if (isTextDocument (w)) {
|
2006-04-10 06:12:35 +00:00
|
|
|
TextDoc *d = (TextDoc*)w;
|
|
|
|
Doc = (QucsDoc*)d;
|
2022-07-05 07:08:28 -04:00
|
|
|
// update menu entries, etc. if necessary
|
2013-04-06 19:06:49 +02:00
|
|
|
magAll->setDisabled(true);
|
2013-03-15 17:57:32 +01:00
|
|
|
if(cursorLeft->isEnabled())
|
2009-10-19 16:34:25 +00:00
|
|
|
switchSchematicDoc (false);
|
2006-04-10 06:12:35 +00:00
|
|
|
}
|
2009-10-19 16:34:25 +00:00
|
|
|
// for schematic documents
|
2006-04-10 06:12:35 +00:00
|
|
|
else {
|
2006-03-28 06:10:52 +00:00
|
|
|
Schematic *d = (Schematic*)w;
|
|
|
|
Doc = (QucsDoc*)d;
|
2013-04-06 19:06:49 +02:00
|
|
|
magAll->setDisabled(false);
|
2009-10-19 16:34:25 +00:00
|
|
|
// already in schematic?
|
2013-03-15 17:57:32 +01:00
|
|
|
if(cursorLeft->isEnabled()) {
|
2006-03-28 06:10:52 +00:00
|
|
|
// which mode: schematic or symbol editor ?
|
|
|
|
if((CompChoose->count() > 1) == d->symbolMode)
|
2009-10-19 16:34:25 +00:00
|
|
|
changeSchematicSymbolMode (d);
|
2006-03-28 06:10:52 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
switchSchematicDoc(true);
|
|
|
|
changeSchematicSymbolMode(d);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Doc->becomeCurrent(true);
|
|
|
|
view->drawn = false;
|
|
|
|
|
2014-11-06 17:11:30 +08:00
|
|
|
HierarchyHistory.clear();
|
|
|
|
popH->setEnabled(false);
|
2006-03-28 06:10:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------
|
2009-10-27 20:36:29 +00:00
|
|
|
void QucsApp::slotFileSettings ()
|
2006-03-28 06:10:52 +00:00
|
|
|
{
|
2009-10-27 20:36:29 +00:00
|
|
|
editText->setHidden (true); // disable text edit of component property
|
2006-03-28 06:10:52 +00:00
|
|
|
|
2015-06-24 20:30:33 +02:00
|
|
|
QWidget * w = DocumentTab->currentWidget ();
|
2009-10-27 20:36:29 +00:00
|
|
|
if (isTextDocument (w)) {
|
|
|
|
QucsDoc * Doc = (QucsDoc *) ((TextDoc *) w);
|
2011-03-06 23:29:42 +00:00
|
|
|
QString ext = Doc->fileSuffix ();
|
|
|
|
// Octave properties
|
|
|
|
if (ext == "m" || ext == "oct") {
|
|
|
|
}
|
2009-10-27 20:36:31 +00:00
|
|
|
// Verilog-A properties
|
2011-03-06 23:29:42 +00:00
|
|
|
else if (ext == "va") {
|
2009-10-27 20:36:29 +00:00
|
|
|
VASettingsDialog * d = new VASettingsDialog ((TextDoc *) w);
|
|
|
|
d->exec ();
|
|
|
|
}
|
|
|
|
// VHDL and Verilog-HDL properties
|
|
|
|
else {
|
|
|
|
DigiSettingsDialog * d = new DigiSettingsDialog ((TextDoc *) w);
|
|
|
|
d->exec ();
|
|
|
|
}
|
2006-04-10 06:12:35 +00:00
|
|
|
}
|
2009-10-27 20:36:29 +00:00
|
|
|
// schematic properties
|
2006-04-10 06:12:35 +00:00
|
|
|
else {
|
2009-10-27 20:36:29 +00:00
|
|
|
SettingsDialog * d = new SettingsDialog ((Schematic *) w);
|
|
|
|
d->exec ();
|
2006-04-10 06:12:35 +00:00
|
|
|
}
|
2006-03-28 06:10:52 +00:00
|
|
|
view->drawn = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------
|
|
|
|
void QucsApp::slotApplSettings()
|
|
|
|
{
|
2015-01-28 00:14:17 +08:00
|
|
|
slotHideEdit(); // disable text edit of component property
|
2006-03-28 06:10:52 +00:00
|
|
|
|
|
|
|
QucsSettingsDialog *d = new QucsSettingsDialog(this);
|
|
|
|
d->exec();
|
|
|
|
view->drawn = false;
|
|
|
|
}
|
|
|
|
|
2013-09-08 03:01:59 +01:00
|
|
|
// --------------------------------------------------------------
|
|
|
|
void QucsApp::slotRefreshSchPath()
|
|
|
|
{
|
|
|
|
this->updateSchNameHash();
|
2014-01-29 13:36:50 +00:00
|
|
|
this->updateSpiceNameHash();
|
2013-09-08 03:01:59 +01:00
|
|
|
|
2015-06-23 23:20:42 +02:00
|
|
|
statusBar()->showMessage(tr("The schematic search path has been refreshed."), 2000);
|
2013-09-08 03:01:59 +01:00
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// --------------------------------------------------------------
|
2006-05-05 06:00:05 +00:00
|
|
|
void QucsApp::updatePortNumber(QucsDoc *currDoc, int No)
|
2006-03-28 06:10:52 +00:00
|
|
|
{
|
|
|
|
if(No<0) return;
|
|
|
|
|
2006-05-05 06:00:05 +00:00
|
|
|
QString pathName = currDoc->DocName;
|
2009-10-24 20:41:13 +00:00
|
|
|
QString ext = currDoc->fileSuffix ();
|
|
|
|
QFileInfo Info (pathName);
|
2006-05-05 06:00:05 +00:00
|
|
|
QString Model, File, Name = Info.fileName();
|
|
|
|
|
2009-10-24 20:41:13 +00:00
|
|
|
if (ext == "sch") {
|
2006-05-05 06:00:05 +00:00
|
|
|
Model = "Sub";
|
2006-03-28 06:10:52 +00:00
|
|
|
}
|
2009-10-24 20:41:13 +00:00
|
|
|
else if (ext == "vhdl" || ext == "vhd") {
|
2006-05-05 06:00:05 +00:00
|
|
|
Model = "VHDL";
|
2007-03-31 15:45:23 +00:00
|
|
|
}
|
2009-10-24 20:41:13 +00:00
|
|
|
else if (ext == "v") {
|
2007-03-31 15:45:23 +00:00
|
|
|
Model = "Verilog";
|
|
|
|
}
|
2006-03-28 06:10:52 +00:00
|
|
|
|
|
|
|
// update all occurencies of subcircuit in all open documents
|
|
|
|
No = 0;
|
2006-05-05 06:00:05 +00:00
|
|
|
QWidget *w;
|
2006-03-28 06:10:52 +00:00
|
|
|
Component *pc_tmp;
|
2015-06-24 20:30:33 +02:00
|
|
|
while((w=DocumentTab->widget(No++)) != 0) {
|
2009-10-19 16:34:25 +00:00
|
|
|
if(isTextDocument (w)) continue;
|
2006-05-05 06:00:05 +00:00
|
|
|
|
|
|
|
// start from the last to omit re-appended components
|
2006-03-28 06:10:52 +00:00
|
|
|
Schematic *Doc = (Schematic*)w;
|
|
|
|
for(Component *pc=Doc->Components->last(); pc!=0; ) {
|
2006-05-05 06:00:05 +00:00
|
|
|
if(pc->Model == Model) {
|
2006-03-28 06:10:52 +00:00
|
|
|
File = pc->Props.getFirst()->Value;
|
|
|
|
if((File == pathName) || (File == Name)) {
|
|
|
|
pc_tmp = Doc->Components->prev();
|
|
|
|
Doc->recreateComponent(pc); // delete and re-append component
|
|
|
|
if(!pc_tmp) break;
|
|
|
|
Doc->Components->findRef(pc_tmp);
|
|
|
|
pc = Doc->Components->current();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pc = Doc->Components->prev();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// --------------------------------------------------------------
|
2014-11-24 21:28:23 +08:00
|
|
|
// printCurrentDocument: call printerwriter to print document
|
2006-07-03 06:02:08 +00:00
|
|
|
void QucsApp::printCurrentDocument(bool fitToPage)
|
2006-03-28 06:10:52 +00:00
|
|
|
{
|
2015-06-24 20:30:33 +02:00
|
|
|
statusBar()->showMessage(tr("Printing..."));
|
2015-01-28 00:14:17 +08:00
|
|
|
slotHideEdit(); // disable text edit of component property
|
2006-03-28 06:10:52 +00:00
|
|
|
|
2014-11-24 21:28:23 +08:00
|
|
|
PrinterWriter *writer = new PrinterWriter();
|
|
|
|
writer->setFitToPage(fitToPage);
|
2015-06-24 20:30:33 +02:00
|
|
|
writer->print(DocumentTab->currentWidget());
|
2014-11-24 21:28:23 +08:00
|
|
|
delete writer;
|
2006-07-24 06:12:23 +00:00
|
|
|
|
2015-06-24 20:30:33 +02:00
|
|
|
statusBar()->showMessage(tr("Ready."));
|
2006-07-24 06:12:23 +00:00
|
|
|
return;
|
2006-03-28 06:10:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------
|
2006-07-03 06:02:08 +00:00
|
|
|
void QucsApp::slotFilePrint()
|
2006-03-28 06:10:52 +00:00
|
|
|
{
|
2006-07-03 06:02:08 +00:00
|
|
|
printCurrentDocument(false);
|
|
|
|
}
|
2006-03-28 06:10:52 +00:00
|
|
|
|
2006-07-03 06:02:08 +00:00
|
|
|
// --------------------------------------------------------------
|
|
|
|
// Fit printed content to page size.
|
|
|
|
void QucsApp::slotFilePrintFit()
|
|
|
|
{
|
|
|
|
printCurrentDocument(true);
|
2006-03-28 06:10:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------
|
|
|
|
// Exits the application.
|
|
|
|
void QucsApp::slotFileQuit()
|
|
|
|
{
|
2015-06-24 20:30:33 +02:00
|
|
|
statusBar()->showMessage(tr("Exiting application..."));
|
2015-01-28 00:14:17 +08:00
|
|
|
slotHideEdit(); // disable text edit of component property
|
2006-03-28 06:10:52 +00:00
|
|
|
|
|
|
|
int exit = QMessageBox::information(this,
|
|
|
|
tr("Quit..."), tr("Do you really want to quit?"),
|
|
|
|
tr("Yes"), tr("No"));
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2004-05-17 19:58:36 +00:00
|
|
|
if(exit == 0)
|
2004-10-31 17:55:57 +00:00
|
|
|
if(closeAllFiles()) {
|
2004-12-27 18:37:29 +00:00
|
|
|
emit signalKillEmAll(); // kill all subprocesses
|
2004-10-31 17:55:57 +00:00
|
|
|
qApp->quit();
|
|
|
|
}
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2015-06-24 20:30:33 +02:00
|
|
|
statusBar()->showMessage(tr("Ready."));
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------
|
|
|
|
// To get all close events.
|
|
|
|
void QucsApp::closeEvent(QCloseEvent* Event)
|
|
|
|
{
|
2013-06-30 23:15:45 +02:00
|
|
|
qDebug()<<"x"<<pos().x()<<" ,y"<<pos().y();
|
|
|
|
qDebug()<<"dx"<<size().width()<<" ,dy"<<size().height();
|
|
|
|
QucsSettings.x=pos().x();
|
|
|
|
QucsSettings.y=pos().y();
|
|
|
|
QucsSettings.dx=size().width();
|
|
|
|
QucsSettings.dy=size().height();
|
2015-01-20 13:29:48 +01:00
|
|
|
saveApplSettings();
|
2013-06-30 23:15:45 +02:00
|
|
|
|
2007-01-15 12:30:53 +00:00
|
|
|
if(closeAllFiles()) {
|
|
|
|
emit signalKillEmAll(); // kill all subprocesses
|
|
|
|
Event->accept();
|
|
|
|
qApp->quit();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
Event->ignore();
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// --------------------------------------------------------------------
|
2003-12-07 15:21:31 +00:00
|
|
|
// Is called when the toolbar button is pressed to go into a subcircuit.
|
|
|
|
void QucsApp::slotIntoHierarchy()
|
|
|
|
{
|
2015-01-28 00:14:17 +08:00
|
|
|
slotHideEdit(); // disable text edit of component property
|
2005-04-19 06:33:22 +00:00
|
|
|
|
2015-06-24 20:30:33 +02:00
|
|
|
Schematic *Doc = (Schematic*)DocumentTab->currentWidget();
|
2006-03-28 06:10:52 +00:00
|
|
|
Component *pc = Doc->searchSelSubcircuit();
|
2014-11-06 17:11:30 +08:00
|
|
|
if(pc == 0) { return; }
|
2004-08-07 10:48:45 +00:00
|
|
|
|
2013-09-08 03:28:33 +01:00
|
|
|
QString s = pc->getSubcircuitFile();
|
2014-11-06 17:11:30 +08:00
|
|
|
if(!gotoPage(s)) { return; }
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2014-11-06 17:11:30 +08:00
|
|
|
HierarchyHistory.push(Doc->DocName); //remember for the way back
|
2003-12-07 15:21:31 +00:00
|
|
|
popH->setEnabled(true);
|
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// --------------------------------------------------------------------
|
2004-04-24 11:52:43 +00:00
|
|
|
// Is called when the toolbar button is pressed to leave a subcircuit.
|
2003-12-07 15:21:31 +00:00
|
|
|
void QucsApp::slotPopHierarchy()
|
|
|
|
{
|
2015-01-28 00:14:17 +08:00
|
|
|
slotHideEdit(); // disable text edit of component property
|
2005-04-19 06:33:22 +00:00
|
|
|
|
2014-11-06 17:11:30 +08:00
|
|
|
if(HierarchyHistory.size() == 0) return;
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2014-11-06 17:11:30 +08:00
|
|
|
QString Doc = HierarchyHistory.pop();
|
2004-08-07 10:48:45 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
if(!gotoPage(Doc)) {
|
2014-11-06 17:11:30 +08:00
|
|
|
HierarchyHistory.push(Doc);
|
2006-03-28 06:10:52 +00:00
|
|
|
return;
|
|
|
|
}
|
2004-05-07 17:31:21 +00:00
|
|
|
|
2014-11-06 17:11:30 +08:00
|
|
|
if(HierarchyHistory.size() == 0) {
|
2006-04-21 05:58:21 +00:00
|
|
|
popH->setEnabled(false);
|
2014-11-06 17:11:30 +08:00
|
|
|
}
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// --------------------------------------------------------------
|
2003-12-07 15:21:31 +00:00
|
|
|
void QucsApp::slotShowAll()
|
|
|
|
{
|
2015-01-28 00:14:17 +08:00
|
|
|
slotHideEdit(); // disable text edit of component property
|
2006-04-18 06:03:52 +00:00
|
|
|
getDoc()->showAll();
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------
|
|
|
|
// Sets the scale factor to 1.
|
|
|
|
void QucsApp::slotShowOne()
|
|
|
|
{
|
2015-01-28 00:14:17 +08:00
|
|
|
slotHideEdit(); // disable text edit of component property
|
2006-04-18 06:03:52 +00:00
|
|
|
getDoc()->showNoZoom();
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// -----------------------------------------------------------
|
2003-12-07 15:21:31 +00:00
|
|
|
void QucsApp::slotZoomOut()
|
|
|
|
{
|
2015-01-28 00:14:17 +08:00
|
|
|
slotHideEdit(); // disable text edit of component property
|
2014-03-15 19:02:44 +01:00
|
|
|
getDoc()->zoomBy(0.5f);
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
2014-03-11 18:24:56 +01:00
|
|
|
|
|
|
|
/*!
|
|
|
|
* \brief QucsApp::slotSimulate
|
|
|
|
* is called when the simulate toolbar button is pressed.
|
|
|
|
*/
|
2003-12-07 15:21:31 +00:00
|
|
|
void QucsApp::slotSimulate()
|
|
|
|
{
|
2016-01-07 17:41:51 +03:00
|
|
|
|
|
|
|
if (QucsSettings.DefaultSimulator!=spicecompat::simQucsator) {
|
|
|
|
slotSimulateWithSpice();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-01-28 00:14:17 +08:00
|
|
|
slotHideEdit(); // disable text edit of component property
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2006-04-10 06:12:35 +00:00
|
|
|
QucsDoc *Doc;
|
2015-06-24 20:30:33 +02:00
|
|
|
QWidget *w = DocumentTab->currentWidget();
|
2009-10-19 16:34:25 +00:00
|
|
|
if(isTextDocument (w)) {
|
2006-04-10 06:12:35 +00:00
|
|
|
Doc = (QucsDoc*)((TextDoc*)w);
|
2009-10-06 16:54:44 +00:00
|
|
|
if(Doc->SimTime.isEmpty() && ((TextDoc*)Doc)->simulation) {
|
2006-04-10 06:12:35 +00:00
|
|
|
DigiSettingsDialog *d = new DigiSettingsDialog((TextDoc*)Doc);
|
|
|
|
if(d->exec() == QDialog::Rejected)
|
2009-10-27 20:36:29 +00:00
|
|
|
return;
|
2006-04-10 06:12:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
Doc = (QucsDoc*)((Schematic*)w);
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
if(Doc->DocName.isEmpty()) // if document 'untitled' ...
|
|
|
|
if(!saveAs()) return; // ... save schematic before
|
2005-07-04 06:07:17 +00:00
|
|
|
|
2006-04-18 06:03:52 +00:00
|
|
|
// Perhaps the document was modified from another program ?
|
2011-03-03 18:09:11 +00:00
|
|
|
QFileInfo Info(Doc->DocName);
|
2006-04-18 06:03:53 +00:00
|
|
|
if(Doc->lastSaved.isValid()) {
|
2006-04-18 06:03:52 +00:00
|
|
|
if(Doc->lastSaved < Info.lastModified()) {
|
|
|
|
int No = QMessageBox::warning(this, tr("Warning"),
|
|
|
|
tr("The document was modified by another program !") + '\n' +
|
|
|
|
tr("Do you want to reload or keep this version ?"),
|
|
|
|
tr("Reload"), tr("Keep it"));
|
|
|
|
if(No == 0)
|
|
|
|
Doc->load();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
slotResetWarnings();
|
2011-03-03 18:09:11 +00:00
|
|
|
|
2015-06-24 20:30:33 +02:00
|
|
|
if(Info.suffix() == "m" || Info.suffix() == "oct") {
|
2011-03-03 18:09:11 +00:00
|
|
|
// It is an Octave script.
|
|
|
|
if(Doc->DocChanged)
|
|
|
|
Doc->save();
|
|
|
|
slotViewOctaveDock(true);
|
|
|
|
octave->runOctaveScript(Doc->DocName);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-04-10 06:12:35 +00:00
|
|
|
SimMessage *sim = new SimMessage(w, this);
|
2004-05-07 17:31:21 +00:00
|
|
|
// disconnect is automatically performed, if one of the involved objects
|
|
|
|
// is destroyed !
|
2004-03-28 19:51:04 +00:00
|
|
|
connect(sim, SIGNAL(SimulationEnded(int, SimMessage*)), this,
|
2004-08-14 06:40:55 +00:00
|
|
|
SLOT(slotAfterSimulation(int, SimMessage*)));
|
2006-03-28 06:10:52 +00:00
|
|
|
connect(sim, SIGNAL(displayDataPage(QString&, QString&)),
|
|
|
|
this, SLOT(slotChangePage(QString&, QString&)));
|
2004-03-28 19:51:04 +00:00
|
|
|
|
|
|
|
sim->show();
|
2005-05-17 06:35:55 +00:00
|
|
|
if(!sim->startProcess()) return;
|
2004-12-27 18:37:29 +00:00
|
|
|
|
|
|
|
// to kill it before qucs ends
|
2005-05-17 06:35:55 +00:00
|
|
|
connect(this, SIGNAL(signalKillEmAll()), sim, SLOT(slotClose()));
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
2004-04-24 11:52:43 +00:00
|
|
|
// ------------------------------------------------------------------------
|
2003-12-07 15:21:31 +00:00
|
|
|
// Is called after the simulation process terminates.
|
2004-03-28 19:51:04 +00:00
|
|
|
void QucsApp::slotAfterSimulation(int Status, SimMessage *sim)
|
2003-12-07 15:21:31 +00:00
|
|
|
{
|
2022-07-05 07:08:28 -04:00
|
|
|
if(Status != 0) return; // errors occurred ?
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2013-06-05 20:30:29 +02:00
|
|
|
if(sim->ErrText->document()->lineCount() > 1) // were there warnings ?
|
2006-03-28 06:10:52 +00:00
|
|
|
slotShowWarnings();
|
|
|
|
|
|
|
|
int i=0;
|
2006-04-10 06:12:35 +00:00
|
|
|
QWidget *w; // search, if page is still open
|
2015-06-24 20:30:33 +02:00
|
|
|
while((w=DocumentTab->widget(i++)) != 0)
|
2006-04-10 06:12:35 +00:00
|
|
|
if(w == sim->DocWidget)
|
2006-03-28 06:10:52 +00:00
|
|
|
break;
|
2005-06-23 06:06:40 +00:00
|
|
|
|
2005-10-31 06:52:45 +00:00
|
|
|
if(sim->showBias == 0) { // paint dc bias into schematic ?
|
2005-08-15 06:04:52 +00:00
|
|
|
sim->slotClose(); // close and delete simulation window
|
2006-04-10 06:12:35 +00:00
|
|
|
if(w) { // schematic still open ?
|
|
|
|
SweepDialog *Dia = new SweepDialog((Schematic*)sim->DocWidget);
|
2015-01-20 11:40:43 +01:00
|
|
|
|
|
|
|
// silence warning about unused variable.
|
|
|
|
Q_UNUSED(Dia)
|
2005-10-31 06:52:45 +00:00
|
|
|
}
|
2005-08-15 06:04:52 +00:00
|
|
|
}
|
2011-03-08 19:12:09 +00:00
|
|
|
else {
|
|
|
|
if(sim->SimRunScript) {
|
|
|
|
// run script
|
2011-03-03 18:09:11 +00:00
|
|
|
octave->startOctave();
|
2011-03-08 19:12:09 +00:00
|
|
|
octave->runOctaveScript(sim->Script);
|
|
|
|
}
|
|
|
|
if(sim->SimOpenDpl) {
|
|
|
|
// switch to data display
|
|
|
|
if(sim->DataDisplay.right(2) == ".m" ||
|
|
|
|
sim->DataDisplay.right(4) == ".oct") { // Is it an Octave script?
|
|
|
|
octave->startOctave();
|
|
|
|
octave->runOctaveScript(sim->DataDisplay);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
slotChangePage(sim->DocName, sim->DataDisplay);
|
|
|
|
sim->slotClose(); // close and delete simulation window
|
2011-03-03 18:09:11 +00:00
|
|
|
}
|
|
|
|
else
|
2011-03-08 19:12:09 +00:00
|
|
|
if(w) if(!isTextDocument (sim->DocWidget))
|
|
|
|
// load recent simulation data (if document is still open)
|
|
|
|
((Schematic*)sim->DocWidget)->reloadGraphs();
|
2005-08-15 06:04:54 +00:00
|
|
|
}
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2009-10-19 16:34:25 +00:00
|
|
|
if(!isTextDocument (sim->DocWidget))
|
2006-04-10 06:12:35 +00:00
|
|
|
((Schematic*)sim->DocWidget)->viewport()->update();
|
2005-06-23 06:06:40 +00:00
|
|
|
|
2005-08-15 06:04:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
void QucsApp::slotDCbias()
|
|
|
|
{
|
2006-03-28 06:10:52 +00:00
|
|
|
getDoc()->showBias = 0;
|
2005-08-15 06:04:52 +00:00
|
|
|
slotSimulate();
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
|
|
|
|
2004-04-24 11:52:43 +00:00
|
|
|
// ------------------------------------------------------------------------
|
2003-12-07 15:21:31 +00:00
|
|
|
// Changes to the corresponding data display page or vice versa.
|
2006-03-28 06:10:52 +00:00
|
|
|
void QucsApp::slotChangePage(QString& DocName, QString& DataDisplay)
|
2003-12-07 15:21:31 +00:00
|
|
|
{
|
2006-03-28 06:10:52 +00:00
|
|
|
if(DataDisplay.isEmpty()) return;
|
2004-06-26 07:05:47 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
QFileInfo Info(DocName);
|
2015-06-24 20:30:33 +02:00
|
|
|
QString Name = Info.path() + QDir::separator() + DataDisplay;
|
2004-02-21 18:38:50 +00:00
|
|
|
|
2015-06-24 20:30:33 +02:00
|
|
|
QWidget *w = DocumentTab->currentWidget();
|
2006-03-28 06:10:52 +00:00
|
|
|
|
2009-10-19 16:34:25 +00:00
|
|
|
int z = 0; // search, if page is already loaded
|
|
|
|
QucsDoc * d = findDoc (Name, &z);
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
if(d)
|
2015-06-24 20:30:33 +02:00
|
|
|
DocumentTab->setCurrentIndex(z);
|
2006-03-28 06:10:52 +00:00
|
|
|
else { // no open page found ?
|
2009-10-24 20:41:13 +00:00
|
|
|
QString ext = QucsDoc::fileSuffix (DataDisplay);
|
2014-11-20 22:55:36 +08:00
|
|
|
|
|
|
|
int i = 0;
|
2013-09-09 01:45:17 +01:00
|
|
|
if (ext != "vhd" && ext != "vhdl" && ext != "v" && ext != "va" &&
|
2014-11-20 22:55:36 +08:00
|
|
|
ext != "oct" && ext != "m") {
|
|
|
|
d = new Schematic(this, Name);
|
2015-04-21 11:40:42 +08:00
|
|
|
i = DocumentTab->addTab((Schematic *)d, QPixmap(empty_xpm), DataDisplay);
|
2014-11-20 22:55:36 +08:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
d = new TextDoc(this, Name);
|
2015-04-21 11:40:42 +08:00
|
|
|
i = DocumentTab->addTab((TextDoc *)d, QPixmap(empty_xpm), DataDisplay);
|
2014-11-20 22:55:36 +08:00
|
|
|
}
|
|
|
|
DocumentTab->setCurrentIndex(i);
|
2006-03-28 06:10:52 +00:00
|
|
|
|
2004-08-14 06:40:55 +00:00
|
|
|
QFile file(Name);
|
2012-10-31 09:15:06 +01:00
|
|
|
if(file.open(QIODevice::ReadOnly)) { // try to load document
|
2006-03-28 06:10:52 +00:00
|
|
|
file.close();
|
|
|
|
if(!d->load()) {
|
|
|
|
delete d;
|
|
|
|
view->drawn = false;
|
2003-12-07 15:21:31 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2006-03-28 06:10:52 +00:00
|
|
|
else {
|
2012-10-31 09:15:06 +01:00
|
|
|
if(file.open(QIODevice::ReadWrite)) { // if document doesn't exist, create
|
2006-03-28 06:10:52 +00:00
|
|
|
d->DataDisplay = Info.fileName();
|
2014-12-22 20:28:30 +08:00
|
|
|
slotUpdateTreeview();
|
2006-03-28 06:10:52 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
QMessageBox::critical(this, tr("Error"), tr("Cannot create ")+Name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
file.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
d->becomeCurrent(true);
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
2004-06-12 12:35:04 +00:00
|
|
|
|
2003-12-07 15:21:31 +00:00
|
|
|
|
2015-06-24 20:30:33 +02:00
|
|
|
if(DocumentTab->currentWidget() == w) // if page not ...
|
2009-10-19 16:34:25 +00:00
|
|
|
if(!isTextDocument (w))
|
2006-03-28 06:10:52 +00:00
|
|
|
((Schematic*)w)->reloadGraphs(); // ... changes, reload here !
|
2005-02-12 12:59:26 +00:00
|
|
|
|
2015-06-24 20:30:33 +02:00
|
|
|
TabView->setCurrentIndex(2); // switch to "Component"-Tab
|
2009-11-08 16:33:19 +00:00
|
|
|
if (Name.right(4) == ".dpl") {
|
|
|
|
int i = Category::getModulesNr (QObject::tr("diagrams"));
|
2015-06-24 20:30:33 +02:00
|
|
|
CompChoose->setCurrentIndex(i); // switch to diagrams
|
2009-11-08 16:33:19 +00:00
|
|
|
slotSetCompView (i);
|
2003-12-07 15:21:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// -------------------------------------------------------------------
|
2004-08-14 06:40:55 +00:00
|
|
|
// Changes to the data display of current page.
|
|
|
|
void QucsApp::slotToPage()
|
|
|
|
{
|
2006-03-28 06:10:52 +00:00
|
|
|
QucsDoc *d = getDoc();
|
|
|
|
if(d->DataDisplay.isEmpty()) {
|
2004-08-14 06:40:55 +00:00
|
|
|
QMessageBox::critical(this, tr("Error"), tr("No page set !"));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-03-03 18:09:11 +00:00
|
|
|
if(d->DocName.right(2) == ".m" ||
|
|
|
|
d->DocName.right(4) == ".oct")
|
|
|
|
slotViewOctaveDock(true);
|
|
|
|
else
|
|
|
|
slotChangePage(d->DocName, d->DataDisplay);
|
2004-08-14 06:40:55 +00:00
|
|
|
}
|
|
|
|
|
2014-12-19 19:59:51 +08:00
|
|
|
// -------------------------------------------------------------------
|
2015-06-24 20:30:33 +02:00
|
|
|
// Called when file name in Project View is double-clicked
|
|
|
|
// or open is selected in the context menu
|
2015-01-08 04:33:46 +08:00
|
|
|
void QucsApp::slotOpenContent(const QModelIndex &idx)
|
2014-12-19 19:59:51 +08:00
|
|
|
{
|
|
|
|
editText->setHidden(true); // disable text edit of component property
|
|
|
|
|
|
|
|
//test the item is valid
|
|
|
|
if (!idx.isValid()) { return; }
|
|
|
|
if (!idx.parent().isValid()) { return; }
|
|
|
|
|
|
|
|
QString filename = idx.sibling(idx.row(), 0).data().toString();
|
|
|
|
QString note = idx.sibling(idx.row(), 1).data().toString();
|
|
|
|
QFileInfo Info(QucsSettings.QucsWorkDir.filePath(filename));
|
2015-04-26 09:01:23 +08:00
|
|
|
QString extName = Info.suffix();
|
2014-12-19 19:59:51 +08:00
|
|
|
|
|
|
|
if (extName == "sch" || extName == "dpl" || extName == "vhdl" ||
|
|
|
|
extName == "vhd" || extName == "v" || extName == "va" ||
|
|
|
|
extName == "m" || extName == "oct") {
|
2015-06-24 20:30:33 +02:00
|
|
|
gotoPage(Info.absoluteFilePath());
|
|
|
|
updateRecentFilesList(Info.absoluteFilePath());
|
2014-12-19 19:59:51 +08:00
|
|
|
slotUpdateRecentFiles();
|
|
|
|
|
|
|
|
if(note.isEmpty()) // is subcircuit ?
|
|
|
|
if(extName == "sch") return;
|
|
|
|
|
|
|
|
select->blockSignals(true); // switch on the 'select' action ...
|
|
|
|
select->setChecked(true);
|
|
|
|
select->blockSignals(false);
|
|
|
|
|
|
|
|
activeAction = select;
|
|
|
|
MouseMoveAction = 0;
|
|
|
|
MousePressAction = &MouseActions::MPressSelect;
|
|
|
|
MouseReleaseAction = &MouseActions::MReleaseSelect;
|
|
|
|
MouseDoubleClickAction = &MouseActions::MDoubleClickSelect;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(extName == "dat") {
|
2015-06-24 20:30:33 +02:00
|
|
|
editFile(Info.absoluteFilePath()); // open datasets with text editor
|
2014-12-19 19:59:51 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// File is no Qucs file, so go through list and search a user
|
|
|
|
// defined program to open it.
|
|
|
|
QStringList com;
|
|
|
|
QStringList::const_iterator it = QucsSettings.FileTypes.constBegin();
|
|
|
|
while(it != QucsSettings.FileTypes.constEnd()) {
|
|
|
|
if(extName == (*it).section('/',0,0)) {
|
2015-06-24 20:30:33 +02:00
|
|
|
QString progName = (*it).section('/',1,1);
|
|
|
|
com = progName.split(" ");
|
|
|
|
com << Info.absoluteFilePath();
|
2014-12-19 19:59:51 +08:00
|
|
|
|
|
|
|
QProcess *Program = new QProcess();
|
|
|
|
//Program->setCommunication(0);
|
|
|
|
QProcessEnvironment env = QProcessEnvironment::systemEnvironment();
|
|
|
|
env.insert("PATH", env.value("PATH") );
|
|
|
|
Program->setProcessEnvironment(env);
|
2022-03-08 00:15:37 +01:00
|
|
|
QString cmd = com.at(0);
|
|
|
|
QStringList com_args = com;
|
|
|
|
com_args.removeAt(0);
|
|
|
|
Program->start(cmd, com_args);
|
2014-12-19 19:59:51 +08:00
|
|
|
if(Program->state()!=QProcess::Running&&
|
|
|
|
Program->state()!=QProcess::Starting) {
|
|
|
|
QMessageBox::critical(this, tr("Error"),
|
2015-06-24 20:30:33 +02:00
|
|
|
tr("Cannot start \"%1\"!").arg(Info.absoluteFilePath()));
|
2014-12-19 19:59:51 +08:00
|
|
|
delete Program;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
it++;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If no appropriate program was found, open as text file.
|
2015-06-24 20:30:33 +02:00
|
|
|
editFile(Info.absoluteFilePath()); // open datasets with text editor
|
2014-12-19 19:59:51 +08:00
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// ---------------------------------------------------------
|
2003-12-07 15:21:31 +00:00
|
|
|
// Is called when the mouse is clicked within the Content QListView.
|
2015-01-08 04:33:46 +08:00
|
|
|
void QucsApp::slotSelectSubcircuit(const QModelIndex &idx)
|
2014-12-19 20:25:25 +08:00
|
|
|
{
|
|
|
|
editText->setHidden(true); // disable text edit of component property
|
|
|
|
|
|
|
|
if(!idx.isValid()) { // mouse button pressed not over an item ?
|
2015-01-08 04:33:46 +08:00
|
|
|
Content->clearSelection(); // deselect component in ListView
|
2014-12-19 20:25:25 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isVHDL = false;
|
|
|
|
bool isVerilog = false;
|
|
|
|
QModelIndex parentIdx = idx.parent();
|
|
|
|
if(!parentIdx.isValid()) { return; }
|
|
|
|
|
|
|
|
QString category = parentIdx.data().toString();
|
|
|
|
|
|
|
|
if(category == tr("Schematics")) {
|
|
|
|
if(idx.sibling(idx.row(), 1).data().toString().isEmpty())
|
|
|
|
return; // return, if not a subcircuit
|
|
|
|
}
|
|
|
|
else if(category == tr("VHDL"))
|
|
|
|
isVHDL = true;
|
|
|
|
else if(category == tr("Verilog"))
|
|
|
|
isVerilog = true;
|
|
|
|
else
|
|
|
|
return;
|
|
|
|
|
|
|
|
QString filename = idx.sibling(idx.row(), 0).data().toString();
|
|
|
|
QString note = idx.sibling(idx.row(), 1).data().toString();
|
2015-06-04 08:41:33 +03:00
|
|
|
int idx_pag = DocumentTab->currentIndex();
|
|
|
|
QString tab_titl = "";
|
|
|
|
if (idx_pag>=0) tab_titl = DocumentTab->tabText(idx_pag);
|
|
|
|
if (filename == tab_titl ) return; // Forbid to paste subcircuit into itself.
|
2014-12-19 20:25:25 +08:00
|
|
|
|
|
|
|
// delete previously selected elements
|
|
|
|
if(view->selElem != 0) delete view->selElem;
|
|
|
|
view->selElem = 0;
|
|
|
|
|
|
|
|
// toggle last toolbar button off
|
|
|
|
if(activeAction) {
|
|
|
|
activeAction->blockSignals(true); // do not call toggle slot
|
|
|
|
activeAction->setChecked(false); // set last toolbar button off
|
|
|
|
activeAction->blockSignals(false);
|
|
|
|
}
|
|
|
|
activeAction = 0;
|
|
|
|
|
|
|
|
Component *Comp;
|
|
|
|
if(isVHDL)
|
|
|
|
Comp = new VHDL_File();
|
|
|
|
else if(isVerilog)
|
|
|
|
Comp = new Verilog_File();
|
|
|
|
else
|
|
|
|
Comp = new Subcircuit();
|
|
|
|
Comp->Props.first()->Value = idx.sibling(idx.row(), 0).data().toString();
|
|
|
|
Comp->recreate(0);
|
|
|
|
view->selElem = Comp;
|
|
|
|
|
|
|
|
if(view->drawn)
|
2015-06-24 20:30:33 +02:00
|
|
|
((Q3ScrollView*)DocumentTab->currentWidget())->viewport()->update();
|
2014-12-19 20:25:25 +08:00
|
|
|
view->drawn = false;
|
|
|
|
MouseMoveAction = &MouseActions::MMoveElement;
|
|
|
|
MousePressAction = &MouseActions::MPressElement;
|
|
|
|
MouseReleaseAction = 0;
|
|
|
|
MouseDoubleClickAction = 0;
|
|
|
|
}
|
2006-07-31 06:04:54 +00:00
|
|
|
|
2014-01-31 16:59:40 +00:00
|
|
|
// ---------------------------------------------------------
|
|
|
|
// Is called when the mouse is clicked within the Content QListView.
|
|
|
|
void QucsApp::slotSelectLibComponent(QTreeWidgetItem *item)
|
|
|
|
{
|
|
|
|
// get the current document
|
2015-06-24 20:30:33 +02:00
|
|
|
Schematic *Doc = (Schematic*)DocumentTab->currentWidget();
|
2014-01-31 16:59:40 +00:00
|
|
|
|
|
|
|
// if the current document is a schematic activate the paste
|
2015-01-13 23:52:16 +08:00
|
|
|
if(!isTextDocument(Doc))
|
2014-01-31 16:59:40 +00:00
|
|
|
{
|
2022-07-05 07:08:28 -04:00
|
|
|
// if there's not a higher level item, this is a top level item,
|
2014-01-31 16:59:40 +00:00
|
|
|
// not a component item so return
|
|
|
|
if(item->parent() == 0) return;
|
|
|
|
if(item->text(1).isEmpty()) return; // return, if not a subcircuit
|
|
|
|
|
|
|
|
// copy the subcircuit schematic to the clipboard
|
|
|
|
QClipboard *cb = QApplication::clipboard();
|
|
|
|
cb->setText(item->text(1));
|
|
|
|
|
|
|
|
// activate the paste command
|
|
|
|
slotEditPaste (true);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// ---------------------------------------------------------
|
2006-04-28 06:04:44 +00:00
|
|
|
// This function is called if the document type changes, i.e.
|
|
|
|
// from schematic to text document or vice versa.
|
2009-10-24 15:17:21 +00:00
|
|
|
void QucsApp::switchSchematicDoc (bool SchematicMode)
|
2006-03-28 06:10:52 +00:00
|
|
|
{
|
2013-03-15 17:57:32 +01:00
|
|
|
// switch our scroll key actions on/off according to SchematicMode
|
|
|
|
cursorLeft->setEnabled(SchematicMode);
|
|
|
|
cursorRight->setEnabled(SchematicMode);
|
|
|
|
cursorUp->setEnabled(SchematicMode);
|
|
|
|
cursorDown->setEnabled(SchematicMode);
|
2006-03-28 06:10:52 +00:00
|
|
|
|
2009-10-19 16:34:25 +00:00
|
|
|
// text document
|
2009-10-24 15:17:21 +00:00
|
|
|
if (!SchematicMode) {
|
|
|
|
if (activeAction) {
|
|
|
|
activeAction->blockSignals (true); // do not call toggle slot
|
2015-06-24 20:30:33 +02:00
|
|
|
activeAction->setChecked(false); // set last toolbar button off
|
2009-10-24 15:17:21 +00:00
|
|
|
activeAction->blockSignals (false);
|
2006-04-10 06:12:35 +00:00
|
|
|
}
|
|
|
|
activeAction = select;
|
2009-10-24 15:17:21 +00:00
|
|
|
select->blockSignals (true);
|
2015-06-24 20:30:33 +02:00
|
|
|
select->setChecked(true);
|
2009-10-24 15:17:21 +00:00
|
|
|
select->blockSignals (false);
|
2006-04-28 06:04:44 +00:00
|
|
|
}
|
2009-10-19 16:34:25 +00:00
|
|
|
// schematic document
|
2006-04-28 06:04:44 +00:00
|
|
|
else {
|
|
|
|
MouseMoveAction = 0;
|
|
|
|
MousePressAction = &MouseActions::MPressSelect;
|
|
|
|
MouseReleaseAction = &MouseActions::MReleaseSelect;
|
|
|
|
MouseDoubleClickAction = &MouseActions::MDoubleClickSelect;
|
2006-04-10 06:12:35 +00:00
|
|
|
}
|
|
|
|
|
2009-10-24 15:17:21 +00:00
|
|
|
selectMarker->setEnabled (SchematicMode);
|
|
|
|
alignTop->setEnabled (SchematicMode);
|
|
|
|
alignBottom->setEnabled (SchematicMode);
|
|
|
|
alignLeft->setEnabled (SchematicMode);
|
|
|
|
alignRight->setEnabled (SchematicMode);
|
|
|
|
centerHor->setEnabled (SchematicMode);
|
|
|
|
centerVert->setEnabled (SchematicMode);
|
|
|
|
distrHor->setEnabled (SchematicMode);
|
|
|
|
distrVert->setEnabled (SchematicMode);
|
|
|
|
onGrid->setEnabled (SchematicMode);
|
|
|
|
moveText->setEnabled (SchematicMode);
|
|
|
|
filePrintFit->setEnabled (SchematicMode);
|
|
|
|
editRotate->setEnabled (SchematicMode);
|
|
|
|
editMirror->setEnabled (SchematicMode);
|
|
|
|
editMirrorY->setEnabled (SchematicMode);
|
|
|
|
intoH->setEnabled (SchematicMode);
|
|
|
|
popH->setEnabled (SchematicMode);
|
|
|
|
dcbias->setEnabled (SchematicMode);
|
|
|
|
insWire->setEnabled (SchematicMode);
|
|
|
|
insLabel->setEnabled (SchematicMode);
|
|
|
|
insPort->setEnabled (SchematicMode);
|
|
|
|
insGround->setEnabled (SchematicMode);
|
|
|
|
insEquation->setEnabled (SchematicMode);
|
|
|
|
setMarker->setEnabled (SchematicMode);
|
|
|
|
|
2014-05-14 23:52:51 +02:00
|
|
|
exportAsImage->setEnabled (SchematicMode); // only export schematic, no text
|
|
|
|
|
2009-10-24 15:17:21 +00:00
|
|
|
editFind->setEnabled (!SchematicMode);
|
|
|
|
insEntity->setEnabled (!SchematicMode);
|
2014-02-26 21:55:31 +01:00
|
|
|
|
|
|
|
buildModule->setEnabled(!SchematicMode); // only build if VA document
|
2006-03-28 06:10:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------
|
2004-09-11 16:55:12 +00:00
|
|
|
void QucsApp::switchEditMode(bool SchematicMode)
|
|
|
|
{
|
|
|
|
fillComboBox(SchematicMode);
|
2004-10-02 16:21:06 +00:00
|
|
|
slotSetCompView(0);
|
2004-09-11 16:55:12 +00:00
|
|
|
|
2009-10-19 16:34:25 +00:00
|
|
|
intoH->setEnabled(SchematicMode);
|
|
|
|
popH->setEnabled(SchematicMode);
|
2006-03-28 06:10:52 +00:00
|
|
|
editActivate->setEnabled(SchematicMode);
|
|
|
|
changeProps->setEnabled(SchematicMode);
|
|
|
|
insEquation->setEnabled(SchematicMode);
|
|
|
|
insGround->setEnabled(SchematicMode);
|
|
|
|
insPort->setEnabled(SchematicMode);
|
|
|
|
insWire->setEnabled(SchematicMode);
|
|
|
|
insLabel->setEnabled(SchematicMode);
|
|
|
|
setMarker->setEnabled(SchematicMode);
|
2006-05-22 06:01:55 +00:00
|
|
|
selectMarker->setEnabled(SchematicMode);
|
2004-09-11 16:55:12 +00:00
|
|
|
simulate->setEnabled(SchematicMode);
|
2016-12-05 19:07:49 +01:00
|
|
|
// no search in "symbol painting mode" as only paintings should be used
|
|
|
|
CompSearch->setEnabled(SchematicMode);
|
|
|
|
CompSearchClear->setEnabled(SchematicMode);
|
2004-09-11 16:55:12 +00:00
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// ---------------------------------------------------------
|
|
|
|
void QucsApp::changeSchematicSymbolMode(Schematic *Doc)
|
2004-09-11 16:55:12 +00:00
|
|
|
{
|
2006-03-28 06:10:52 +00:00
|
|
|
if(Doc->symbolMode) {
|
2004-09-18 17:14:23 +00:00
|
|
|
// go into select modus to avoid placing a forbidden element
|
2014-11-23 12:24:05 +01:00
|
|
|
select->setChecked(true);
|
2004-09-18 17:14:23 +00:00
|
|
|
|
2004-09-11 16:55:12 +00:00
|
|
|
switchEditMode(false);
|
|
|
|
}
|
2006-03-28 06:10:52 +00:00
|
|
|
else
|
|
|
|
switchEditMode(true);
|
2004-09-18 09:46:19 +00:00
|
|
|
}
|
2012-11-01 11:29:46 +01:00
|
|
|
|
2009-10-19 16:34:25 +00:00
|
|
|
// ---------------------------------------------------------
|
|
|
|
bool QucsApp::isTextDocument(QWidget *w) {
|
2015-01-13 23:52:16 +08:00
|
|
|
return w->inherits("QPlainTextEdit");
|
2009-10-19 16:34:25 +00:00
|
|
|
}
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
// ---------------------------------------------------------
|
2004-09-18 09:46:19 +00:00
|
|
|
// Is called if the "symEdit" action is activated, i.e. if the user
|
|
|
|
// switches between the two painting mode: Schematic and (subcircuit)
|
|
|
|
// symbol.
|
|
|
|
void QucsApp::slotSymbolEdit()
|
|
|
|
{
|
2015-06-24 20:30:33 +02:00
|
|
|
QWidget *w = DocumentTab->currentWidget();
|
2004-09-18 09:46:19 +00:00
|
|
|
|
2009-10-19 16:34:25 +00:00
|
|
|
// in a text document (e.g. VHDL)
|
|
|
|
if (isTextDocument (w)) {
|
|
|
|
TextDoc *TDoc = (TextDoc*)w;
|
|
|
|
// set 'DataDisplay' document of text file to symbol file
|
|
|
|
QFileInfo Info(TDoc->DocName);
|
2015-06-24 20:30:33 +02:00
|
|
|
QString sym = Info.completeBaseName()+".sym";
|
2009-10-19 16:34:25 +00:00
|
|
|
TDoc->DataDisplay = sym;
|
|
|
|
|
|
|
|
// symbol file already loaded?
|
|
|
|
int paint_mode = 0;
|
2013-07-01 23:43:49 +02:00
|
|
|
if (!findDoc (QucsSettings.QucsWorkDir.filePath(sym)))
|
2009-10-19 16:34:25 +00:00
|
|
|
paint_mode = 1;
|
|
|
|
|
|
|
|
// change current page to appropriate symbol file
|
|
|
|
slotChangePage(TDoc->DocName,TDoc->DataDisplay);
|
|
|
|
|
|
|
|
// set 'DataDisplay' document of symbol file to original text file
|
2015-06-24 20:30:33 +02:00
|
|
|
Schematic *SDoc = (Schematic*)DocumentTab->currentWidget();
|
2009-10-19 16:34:25 +00:00
|
|
|
SDoc->DataDisplay = Info.fileName();
|
|
|
|
|
|
|
|
// change into symbol mode
|
|
|
|
if (paint_mode) // but only switch coordinates if newly loaded
|
|
|
|
SDoc->switchPaintMode();
|
|
|
|
SDoc->symbolMode = true;
|
|
|
|
changeSchematicSymbolMode(SDoc);
|
|
|
|
SDoc->becomeCurrent(true);
|
|
|
|
SDoc->viewport()->update();
|
|
|
|
view->drawn = false;
|
|
|
|
}
|
|
|
|
// in a normal schematic, data display or symbol file
|
|
|
|
else {
|
|
|
|
Schematic *SDoc = (Schematic*)w;
|
|
|
|
// in a symbol file
|
|
|
|
if(SDoc->DocName.right(4) == ".sym") {
|
|
|
|
slotChangePage(SDoc->DocName, SDoc->DataDisplay);
|
|
|
|
}
|
|
|
|
// in a normal schematic
|
|
|
|
else {
|
2015-01-28 00:14:17 +08:00
|
|
|
slotHideEdit(); // disable text edit of component property
|
2009-10-19 16:34:25 +00:00
|
|
|
SDoc->switchPaintMode(); // twist the view coordinates
|
|
|
|
changeSchematicSymbolMode(SDoc);
|
|
|
|
SDoc->becomeCurrent(true);
|
|
|
|
SDoc->viewport()->update();
|
|
|
|
view->drawn = false;
|
|
|
|
}
|
|
|
|
}
|
2004-09-11 16:55:12 +00:00
|
|
|
}
|
2006-03-28 06:10:52 +00:00
|
|
|
|
|
|
|
// -----------------------------------------------------------
|
|
|
|
void QucsApp::slotPowerMatching()
|
|
|
|
{
|
|
|
|
if(!view->focusElement) return;
|
|
|
|
if(view->focusElement->Type != isMarker) return;
|
|
|
|
Marker *pm = (Marker*)view->focusElement;
|
|
|
|
|
|
|
|
// double Z0 = 50.0;
|
|
|
|
QString Var = pm->pGraph->Var;
|
2015-06-14 20:41:31 +02:00
|
|
|
double Imag = pm->powImag();
|
2006-03-28 06:10:52 +00:00
|
|
|
if(Var == "Sopt") // noise matching ?
|
|
|
|
Imag *= -1.0;
|
|
|
|
|
|
|
|
MatchDialog *Dia = new MatchDialog(this);
|
|
|
|
// Dia->Ref1Edit->setText(QString::number(Z0));
|
2016-03-08 23:13:17 +01:00
|
|
|
Dia->setS11LineEdits(pm->powReal(), Imag);
|
2015-06-14 20:41:31 +02:00
|
|
|
Dia->setFrequency(pm->powFreq());
|
2016-03-08 23:13:17 +01:00
|
|
|
Dia->setTwoPortMatch(false); // will also cause the corresponding impedance LineEdit to be updated
|
2006-03-28 06:10:52 +00:00
|
|
|
|
|
|
|
slotToPage();
|
|
|
|
if(Dia->exec() != QDialog::Accepted)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------
|
|
|
|
void QucsApp::slot2PortMatching()
|
|
|
|
{
|
|
|
|
if(!view->focusElement) return;
|
|
|
|
if(view->focusElement->Type != isMarker) return;
|
|
|
|
Marker *pm = (Marker*)view->focusElement;
|
|
|
|
|
|
|
|
QString DataSet;
|
2015-06-24 20:30:33 +02:00
|
|
|
Schematic *Doc = (Schematic*)DocumentTab->currentWidget();
|
2014-11-23 12:24:05 +01:00
|
|
|
int z = pm->pGraph->Var.indexOf(':');
|
2006-03-28 06:10:52 +00:00
|
|
|
if(z <= 0) DataSet = Doc->DataSet;
|
|
|
|
else DataSet = pm->pGraph->Var.mid(z+1);
|
2015-06-14 20:41:31 +02:00
|
|
|
double Freq = pm->powFreq();
|
2006-03-28 06:10:52 +00:00
|
|
|
|
|
|
|
QFileInfo Info(Doc->DocName);
|
2015-06-24 20:30:33 +02:00
|
|
|
DataSet = Info.path()+QDir::separator()+DataSet;
|
2006-03-28 06:10:52 +00:00
|
|
|
|
|
|
|
Diagram *Diag = new Diagram();
|
|
|
|
|
2015-05-09 10:52:45 +02:00
|
|
|
// FIXME: use normal Diagrams.
|
2015-06-29 22:02:30 +02:00
|
|
|
Graph *pg = new Graph(Diag, "S[1,1]");
|
2006-03-28 06:10:52 +00:00
|
|
|
Diag->Graphs.append(pg);
|
2015-05-09 10:52:45 +02:00
|
|
|
if(!pg->loadDatFile(DataSet)) {
|
2006-03-28 06:10:52 +00:00
|
|
|
QMessageBox::critical(0, tr("Error"), tr("Could not load S[1,1]."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-06-29 22:02:30 +02:00
|
|
|
pg = new Graph(Diag, "S[1,2]");
|
2006-03-28 06:10:52 +00:00
|
|
|
Diag->Graphs.append(pg);
|
2015-05-09 10:52:45 +02:00
|
|
|
if(!pg->loadDatFile(DataSet)) {
|
2006-03-28 06:10:52 +00:00
|
|
|
QMessageBox::critical(0, tr("Error"), tr("Could not load S[1,2]."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-06-29 22:02:30 +02:00
|
|
|
pg = new Graph(Diag, "S[2,1]");
|
2006-03-28 06:10:52 +00:00
|
|
|
Diag->Graphs.append(pg);
|
2015-05-09 10:52:45 +02:00
|
|
|
if(!pg->loadDatFile(DataSet)) {
|
2006-03-28 06:10:52 +00:00
|
|
|
QMessageBox::critical(0, tr("Error"), tr("Could not load S[2,1]."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-06-29 22:02:30 +02:00
|
|
|
pg = new Graph(Diag, "S[2,2]");
|
2006-03-28 06:10:52 +00:00
|
|
|
Diag->Graphs.append(pg);
|
2015-05-09 10:52:45 +02:00
|
|
|
if(!pg->loadDatFile(DataSet)) {
|
2006-03-28 06:10:52 +00:00
|
|
|
QMessageBox::critical(0, tr("Error"), tr("Could not load S[2,2]."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-06-25 16:28:15 +02:00
|
|
|
DataX const *Data = Diag->Graphs.first()->axis(0);
|
2006-03-28 06:10:52 +00:00
|
|
|
if(Data->Var != "frequency") {
|
|
|
|
QMessageBox::critical(0, tr("Error"), tr("Wrong dependency!"));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
double *Value = Data->Points;
|
|
|
|
// search for values for chosen frequency
|
|
|
|
for(z=0; z<Data->count; z++)
|
|
|
|
if(*(Value++) == Freq) break;
|
|
|
|
|
|
|
|
// get S-parameters
|
2014-09-03 10:54:44 +02:00
|
|
|
double S11real = *(Diag->Graphs.at(0)->cPointsY + 2*z);
|
|
|
|
double S11imag = *(Diag->Graphs.at(0)->cPointsY + 2*z + 1);
|
|
|
|
double S12real = *(Diag->Graphs.at(1)->cPointsY + 2*z);
|
|
|
|
double S12imag = *(Diag->Graphs.at(1)->cPointsY + 2*z + 1);
|
|
|
|
double S21real = *(Diag->Graphs.at(2)->cPointsY + 2*z);
|
|
|
|
double S21imag = *(Diag->Graphs.at(2)->cPointsY + 2*z + 1);
|
|
|
|
double S22real = *(Diag->Graphs.at(3)->cPointsY + 2*z);
|
|
|
|
double S22imag = *(Diag->Graphs.at(3)->cPointsY + 2*z + 1);
|
2006-03-28 06:10:52 +00:00
|
|
|
delete Diag;
|
|
|
|
|
|
|
|
MatchDialog *Dia = new MatchDialog(this);
|
2016-03-08 23:13:17 +01:00
|
|
|
Dia->setTwoPortMatch(true);
|
2006-03-28 06:10:52 +00:00
|
|
|
Dia->setFrequency(Freq);
|
2016-03-08 23:13:17 +01:00
|
|
|
Dia->setS11LineEdits(S11real, S11imag);
|
|
|
|
Dia->setS12LineEdits(S12real, S12imag);
|
|
|
|
Dia->setS21LineEdits(S21real, S21imag);
|
|
|
|
Dia->setS22LineEdits(S22real, S22imag);
|
2006-03-28 06:10:52 +00:00
|
|
|
|
|
|
|
slotToPage();
|
|
|
|
if(Dia->exec() != QDialog::Accepted)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------
|
|
|
|
// Is called if the "edit" action is clicked on right mouse button menu.
|
|
|
|
void QucsApp::slotEditElement()
|
|
|
|
{
|
|
|
|
if(view->focusMEvent)
|
2015-06-24 20:30:33 +02:00
|
|
|
view->editElement((Schematic*)DocumentTab->currentWidget(), view->focusMEvent);
|
2006-03-28 06:10:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------
|
|
|
|
// Hides the edit for component property. Called e.g. if QLineEdit
|
|
|
|
// looses the focus.
|
|
|
|
void QucsApp::slotHideEdit()
|
|
|
|
{
|
2022-02-24 22:30:33 +01:00
|
|
|
editText->setParent(this, Qt::WindowFlags());
|
2006-03-28 06:10:52 +00:00
|
|
|
editText->setHidden(true);
|
|
|
|
}
|
2013-09-08 03:01:59 +01:00
|
|
|
|
2015-01-12 21:33:21 +08:00
|
|
|
// -----------------------------------------------------------
|
|
|
|
// set document tab icon to smallsave_xpm or empty_xpm
|
|
|
|
void QucsApp::slotFileChanged(bool changed)
|
|
|
|
{
|
|
|
|
DocumentTab->setTabIcon(DocumentTab->currentIndex(),
|
|
|
|
QPixmap((changed)? smallsave_xpm : empty_xpm));
|
|
|
|
}
|
|
|
|
|
2014-12-22 20:28:30 +08:00
|
|
|
// -----------------------------------------------------------
|
|
|
|
// Update project view by call refresh function
|
|
|
|
// looses the focus.
|
|
|
|
void QucsApp::slotUpdateTreeview()
|
|
|
|
{
|
2015-01-08 04:33:46 +08:00
|
|
|
Content->refresh();
|
2014-12-22 20:28:30 +08:00
|
|
|
}
|
|
|
|
|
2013-09-08 03:01:59 +01:00
|
|
|
// -----------------------------------------------------------
|
|
|
|
// Searches the qucs path list for all schematic files and creates
|
|
|
|
// a hash for lookup later
|
|
|
|
void QucsApp::updateSchNameHash(void)
|
|
|
|
{
|
|
|
|
// update the list of paths to search in qucsPathList, this
|
|
|
|
// removes nonexisting entries
|
|
|
|
updatePathList();
|
|
|
|
|
|
|
|
// now go through the paths creating a map to all the schematic files
|
|
|
|
// found in the directories. Note that we go through the list of paths from
|
|
|
|
// first index to last index. Since keys are unique it means schematic files
|
2022-07-05 07:08:28 -04:00
|
|
|
// in directories at the end of the list take precedence over those at the
|
2013-09-08 03:01:59 +01:00
|
|
|
// start of the list, we should warn about shadowing of schematic files in
|
|
|
|
// this way in the future
|
|
|
|
QStringList nameFilter;
|
|
|
|
nameFilter << "*.sch";
|
|
|
|
|
2022-07-05 07:08:28 -04:00
|
|
|
// clear out any existing hash table entries
|
2013-09-08 03:01:59 +01:00
|
|
|
schNameHash.clear();
|
|
|
|
|
|
|
|
foreach (QString qucspath, qucsPathList) {
|
|
|
|
QDir thispath(qucspath);
|
|
|
|
// get all the schematic files in the directory
|
|
|
|
QFileInfoList schfilesList = thispath.entryInfoList( nameFilter, QDir::Files );
|
|
|
|
// put each one in the hash table with the unique key the base name of
|
|
|
|
// the file, note this will overwrite the value if the key already exists
|
|
|
|
foreach (QFileInfo schfile, schfilesList) {
|
|
|
|
QString bn = schfile.completeBaseName();
|
|
|
|
schNameHash[schfile.completeBaseName()] = schfile.absoluteFilePath();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-08 03:08:03 +01:00
|
|
|
// finally check the home/working directory
|
2013-09-08 03:01:59 +01:00
|
|
|
QDir thispath(QucsSettings.QucsWorkDir);
|
|
|
|
QFileInfoList schfilesList = thispath.entryInfoList( nameFilter, QDir::Files );
|
|
|
|
// put each one in the hash table with the unique key the base name of
|
|
|
|
// the file, note this will overwrite the value if the key already exists
|
|
|
|
foreach (QFileInfo schfile, schfilesList) {
|
|
|
|
schNameHash[schfile.completeBaseName()] = schfile.absoluteFilePath();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-29 13:36:50 +00:00
|
|
|
// -----------------------------------------------------------
|
|
|
|
// Searches the qucs path list for all spice files and creates
|
|
|
|
// a hash for lookup later
|
|
|
|
void QucsApp::updateSpiceNameHash(void)
|
|
|
|
{
|
|
|
|
// update the list of paths to search in qucsPathList, this
|
|
|
|
// removes nonexisting entries
|
|
|
|
updatePathList();
|
|
|
|
|
2014-02-07 15:04:12 +00:00
|
|
|
// now go through the paths creating a map to all the spice files
|
2014-01-29 13:36:50 +00:00
|
|
|
// found in the directories. Note that we go through the list of paths from
|
2014-02-07 15:04:12 +00:00
|
|
|
// first index to last index. Since keys are unique it means spice files
|
2022-07-05 07:08:28 -04:00
|
|
|
// in directories at the end of the list take precedence over those at the
|
2014-02-07 15:04:12 +00:00
|
|
|
// start of the list, we should warn about shadowing of spice files in
|
2014-01-29 13:36:50 +00:00
|
|
|
// this way in the future
|
|
|
|
|
2022-07-05 07:08:28 -04:00
|
|
|
// clear out any existing hash table entries
|
2014-01-29 13:36:50 +00:00
|
|
|
spiceNameHash.clear();
|
|
|
|
|
|
|
|
foreach (QString qucspath, qucsPathList) {
|
|
|
|
QDir thispath(qucspath);
|
|
|
|
// get all the schematic files in the directory
|
2015-07-28 20:31:50 +02:00
|
|
|
QFileInfoList spicefilesList = thispath.entryInfoList( QucsSettings.spiceExtensions, QDir::Files );
|
2014-01-29 13:36:50 +00:00
|
|
|
// put each one in the hash table with the unique key the base name of
|
|
|
|
// the file, note this will overwrite the value if the key already exists
|
|
|
|
foreach (QFileInfo spicefile, spicefilesList) {
|
|
|
|
QString bn = spicefile.completeBaseName();
|
|
|
|
schNameHash[spicefile.completeBaseName()] = spicefile.absoluteFilePath();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// finally check the home/working directory
|
|
|
|
QDir thispath(QucsSettings.QucsWorkDir);
|
2015-07-28 20:31:50 +02:00
|
|
|
QFileInfoList spicefilesList = thispath.entryInfoList( QucsSettings.spiceExtensions, QDir::Files );
|
2014-01-29 13:36:50 +00:00
|
|
|
// put each one in the hash table with the unique key the base name of
|
|
|
|
// the file, note this will overwrite the value if the key already exists
|
|
|
|
foreach (QFileInfo spicefile, spicefilesList) {
|
|
|
|
spiceNameHash[spicefile.completeBaseName()] = spicefile.absoluteFilePath();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-08 03:01:59 +01:00
|
|
|
// -----------------------------------------------------------
|
|
|
|
// update the list of paths, pruning non-existing paths
|
|
|
|
void QucsApp::updatePathList(void)
|
|
|
|
{
|
|
|
|
// check each path actually exists, if not remove it
|
|
|
|
QMutableListIterator<QString> i(qucsPathList);
|
|
|
|
while (i.hasNext()) {
|
|
|
|
i.next();
|
|
|
|
QDir thispath(i.value());
|
|
|
|
if (!thispath.exists())
|
|
|
|
{
|
|
|
|
// the path does not exist, remove it from the list
|
|
|
|
i.remove();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-09-09 01:45:17 +01:00
|
|
|
|
|
|
|
// replace the old path list with a new one
|
|
|
|
void QucsApp::updatePathList(QStringList newPathList)
|
|
|
|
{
|
|
|
|
// clear out the old path list
|
|
|
|
qucsPathList.clear();
|
|
|
|
|
|
|
|
// copy the new path into the path list
|
|
|
|
foreach(QString path, newPathList)
|
|
|
|
{
|
|
|
|
qucsPathList.append(path);
|
|
|
|
}
|
|
|
|
// do the normal path update operations
|
|
|
|
updatePathList();
|
|
|
|
}
|
|
|
|
|
2013-11-10 14:45:04 +04:00
|
|
|
|
|
|
|
void QucsApp::updateRecentFilesList(QString s)
|
|
|
|
{
|
2022-02-16 21:51:55 +01:00
|
|
|
QSettings* settings = new QSettings("qucs","qucs_s");
|
2015-01-11 21:59:00 +08:00
|
|
|
QucsSettings.RecentDocs.removeAll(s);
|
2015-03-06 17:17:41 +03:00
|
|
|
QucsSettings.RecentDocs.prepend(s);
|
2015-01-11 21:59:00 +08:00
|
|
|
if (QucsSettings.RecentDocs.size() > MaxRecentFiles) {
|
2015-03-06 17:17:41 +03:00
|
|
|
QucsSettings.RecentDocs.removeLast();
|
2015-01-11 21:59:00 +08:00
|
|
|
}
|
2015-03-06 17:17:41 +03:00
|
|
|
settings->setValue("RecentDocs",QucsSettings.RecentDocs.join("*"));
|
|
|
|
delete settings;
|
2015-01-11 21:59:00 +08:00
|
|
|
slotUpdateRecentFiles();
|
2013-11-10 14:45:04 +04:00
|
|
|
}
|
2013-11-12 20:25:06 +04:00
|
|
|
|
|
|
|
void QucsApp::slotSaveDiagramToGraphicsFile()
|
|
|
|
{
|
2014-11-24 21:57:56 +08:00
|
|
|
slotSaveSchematicToGraphicsFile(true);
|
2013-11-12 20:25:06 +04:00
|
|
|
}
|
2013-12-08 16:41:59 +04:00
|
|
|
|
2013-12-14 16:37:50 +04:00
|
|
|
void QucsApp::slotSaveSchematicToGraphicsFile(bool diagram)
|
2013-12-08 16:41:59 +04:00
|
|
|
{
|
2015-03-24 11:46:36 +03:00
|
|
|
ImageWriter *writer = new ImageWriter(lastExportFilename);
|
2014-11-24 21:57:56 +08:00
|
|
|
writer->setDiagram(diagram);
|
2015-07-17 18:52:19 +02:00
|
|
|
if (!writer->print(DocumentTab->currentWidget())) {
|
|
|
|
lastExportFilename = writer->getLastSavedFile();
|
|
|
|
statusBar()->showMessage(QObject::tr("Successfully exported"), 2000);
|
|
|
|
}
|
2014-11-24 21:57:56 +08:00
|
|
|
delete writer;
|
2013-12-08 16:41:59 +04:00
|
|
|
}
|
2014-10-01 20:04:27 +04:00
|
|
|
|
|
|
|
|
2016-01-07 17:41:51 +03:00
|
|
|
void QucsApp::slotSimSettings()
|
|
|
|
{
|
|
|
|
SimSettingsDialog *SetDlg = new SimSettingsDialog(this);
|
|
|
|
SetDlg->exec();
|
|
|
|
delete SetDlg;
|
2016-10-30 10:23:47 +03:00
|
|
|
SimulatorLabel->setText(spicecompat::getDefaultSimulatorName());
|
2016-01-07 17:41:51 +03:00
|
|
|
}
|
|
|
|
|
2014-10-01 20:04:27 +04:00
|
|
|
void QucsApp::slotSimulateWithSpice()
|
|
|
|
{
|
2022-02-14 15:37:11 +01:00
|
|
|
if (!isTextDocument(DocumentTab->currentWidget())) {
|
|
|
|
Schematic *sch = (Schematic*)DocumentTab->currentWidget();
|
2015-05-19 10:16:43 +03:00
|
|
|
|
|
|
|
ExternSimDialog *SimDlg = new ExternSimDialog(sch);
|
2015-06-13 14:48:27 +03:00
|
|
|
connect(SimDlg,SIGNAL(simulated()),this,SLOT(slotAfterSpiceSimulation()));
|
2015-07-15 15:37:01 +03:00
|
|
|
connect(SimDlg,SIGNAL(warnings()),this,SLOT(slotShowWarnings()));
|
|
|
|
connect(SimDlg,SIGNAL(success()),this,SLOT(slotResetWarnings()));
|
2015-05-19 10:16:43 +03:00
|
|
|
SimDlg->exec();
|
2015-06-13 14:48:27 +03:00
|
|
|
disconnect(SimDlg,SIGNAL(simulated()),this,SLOT(slotAfterSpiceSimulation()));
|
2015-07-15 15:37:01 +03:00
|
|
|
disconnect(SimDlg,SIGNAL(warnings()),this,SLOT(slotShowWarnings()));
|
|
|
|
disconnect(SimDlg,SIGNAL(success()),this,SLOT(slotResetWarnings()));
|
2015-10-12 18:46:11 +03:00
|
|
|
if (SimDlg->wasSimulated && sch->SimOpenDpl)
|
2016-02-25 13:47:29 +03:00
|
|
|
if (sch->showBias < 1) slotChangePage(sch->DocName,sch->DataDisplay);
|
2015-05-19 10:16:43 +03:00
|
|
|
delete SimDlg;
|
|
|
|
}
|
2014-10-01 20:04:27 +04:00
|
|
|
}
|
2015-06-13 14:48:27 +03:00
|
|
|
|
|
|
|
void QucsApp::slotAfterSpiceSimulation()
|
|
|
|
{
|
2022-02-14 15:37:11 +01:00
|
|
|
Schematic *sch = (Schematic*)DocumentTab->currentWidget();
|
2015-06-13 14:48:27 +03:00
|
|
|
sch->reloadGraphs();
|
|
|
|
sch->viewport()->update();
|
2015-10-12 18:46:11 +03:00
|
|
|
if(sch->SimRunScript) {
|
|
|
|
// run script
|
|
|
|
octave->startOctave();
|
|
|
|
octave->runOctaveScript(sch->Script);
|
|
|
|
}
|
2015-06-13 14:48:27 +03:00
|
|
|
}
|
2015-07-19 14:33:42 +03:00
|
|
|
|
|
|
|
void QucsApp::slotBuildVAModule()
|
|
|
|
{
|
2022-02-14 15:37:11 +01:00
|
|
|
if (!isTextDocument(DocumentTab->currentWidget())) {
|
|
|
|
Schematic *Sch = (Schematic*)DocumentTab->currentWidget();
|
2015-07-19 17:22:03 +03:00
|
|
|
|
|
|
|
QFileInfo inf(Sch->DocName);
|
|
|
|
QString filename = QFileDialog::getSaveFileName(this,tr("Save Verilog-A module"),
|
|
|
|
inf.path()+QDir::separator()+"testmodule.va",
|
|
|
|
"Verilog-A (*.va)");
|
|
|
|
if (filename.isEmpty()) return;
|
|
|
|
|
|
|
|
QFile f(filename);
|
|
|
|
if (f.open(QIODevice::WriteOnly)) {
|
|
|
|
QTextStream stream(&f);
|
|
|
|
VerilogAwriter *writer = new VerilogAwriter;
|
2015-07-27 10:43:47 +03:00
|
|
|
if (!writer->createVA_module(stream,Sch)) {
|
|
|
|
QMessageBox::critical(this,tr("Build Verilog-A module"),
|
|
|
|
tr("This schematic is not a subcircuit!\n"
|
|
|
|
"Use subcircuit to crete Verilog-A module!"),
|
|
|
|
QMessageBox::Ok);
|
|
|
|
}
|
2015-07-19 17:22:03 +03:00
|
|
|
delete writer;
|
|
|
|
f.close();
|
2016-02-16 17:21:27 +03:00
|
|
|
Content->refresh();
|
2015-07-19 17:22:03 +03:00
|
|
|
}
|
2015-07-19 14:33:42 +03:00
|
|
|
}
|
2015-07-19 17:22:03 +03:00
|
|
|
|
2015-07-19 14:33:42 +03:00
|
|
|
}
|
2016-09-26 13:29:06 +03:00
|
|
|
|
2016-09-30 17:57:07 +03:00
|
|
|
|
2016-10-03 19:07:22 +03:00
|
|
|
void QucsApp::slotBuildXSPICEIfs(int mode)
|
2016-09-26 13:29:06 +03:00
|
|
|
{
|
2022-02-14 15:37:11 +01:00
|
|
|
if (!isTextDocument(DocumentTab->currentWidget())) {
|
|
|
|
Schematic *Sch = (Schematic*)DocumentTab->currentWidget();
|
2016-09-26 13:29:06 +03:00
|
|
|
|
|
|
|
QFileInfo inf(Sch->DocName);
|
2016-10-03 19:07:22 +03:00
|
|
|
|
|
|
|
QString msg,ext;
|
|
|
|
switch(mode) {
|
|
|
|
case spicecompat::cmgenSUBifs:
|
|
|
|
case spicecompat::cmgenEDDifs: msg = inf.path()+QDir::separator()+inf.baseName()+".ifs";
|
|
|
|
ext = "XSPICE IFS (*.ifs)";
|
|
|
|
break;
|
|
|
|
case spicecompat::cmgenSUBmod:
|
|
|
|
case spicecompat::cmgenEDDmod: msg = inf.path()+QDir::separator()+inf.baseName()+".mod";
|
|
|
|
ext = "XSPICE MOD (*.mod)";
|
|
|
|
break;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
|
2017-01-19 14:55:09 +03:00
|
|
|
QString filename = QFileDialog::getSaveFileName(this,tr("Save XSPICE source"),msg,ext);
|
2016-09-26 13:29:06 +03:00
|
|
|
if (filename.isEmpty()) return;
|
|
|
|
|
|
|
|
QFile f(filename);
|
|
|
|
if (f.open(QIODevice::WriteOnly)) {
|
|
|
|
QTextStream stream(&f);
|
|
|
|
CodeModelGen *cmgen = new CodeModelGen;
|
2016-09-30 17:57:07 +03:00
|
|
|
bool r = false;
|
2016-10-03 19:07:22 +03:00
|
|
|
switch(mode) {
|
|
|
|
case spicecompat::cmgenSUBifs: r = cmgen->createIFS(stream,Sch);
|
|
|
|
case spicecompat::cmgenEDDifs: {
|
2016-09-30 17:57:07 +03:00
|
|
|
for(Component *pc = Sch->DocComps.first(); pc != 0; pc = Sch->DocComps.next()) {
|
|
|
|
if (pc->isSelected) {
|
|
|
|
r = cmgen->createIFSfromEDD(stream,Sch,pc);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-10-03 19:07:22 +03:00
|
|
|
break;
|
|
|
|
case spicecompat::cmgenEDDmod : {
|
|
|
|
for(Component *pc = Sch->DocComps.first(); pc != 0; pc = Sch->DocComps.next()) {
|
|
|
|
if (pc->isSelected) {
|
|
|
|
r = cmgen->createMODfromEDD(stream,Sch,pc);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default: r = false;
|
|
|
|
break;
|
|
|
|
}
|
2017-01-19 14:55:09 +03:00
|
|
|
QString errs;
|
|
|
|
if (!r) errs = tr("Create XSPICE CodeModel"
|
|
|
|
"Create CodeModel source file failed!"
|
|
|
|
"Schematic is not subciruit!");
|
|
|
|
|
|
|
|
messageDock->reset();
|
|
|
|
messageDock->msgDock->setWindowTitle(tr("Debug messages dock"));
|
|
|
|
messageDock->builderTabs->setTabIcon(0,QPixmap());
|
|
|
|
messageDock->builderTabs->setTabText(0,tr("XSPICE"));
|
|
|
|
messageDock->builderTabs->setTabIcon(1,QPixmap());
|
|
|
|
messageDock->admsOutput->
|
|
|
|
insertPlainText(QString("Creating XSPICE source file: %1\n").arg(filename));
|
|
|
|
errs += cmgen->getLog();
|
|
|
|
if (errs.isEmpty()) {
|
|
|
|
messageDock->admsOutput->insertPlainText(tr("Success!\n"));
|
|
|
|
} else {
|
|
|
|
messageDock->admsOutput->insertPlainText(errs);
|
|
|
|
}
|
|
|
|
messageDock->msgDock->show();
|
2016-09-26 13:29:06 +03:00
|
|
|
delete cmgen;
|
|
|
|
f.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-09-30 17:57:07 +03:00
|
|
|
|
|
|
|
|
|
|
|
void QucsApp::slotEDDtoIFS()
|
|
|
|
{
|
2016-10-03 19:07:22 +03:00
|
|
|
slotBuildXSPICEIfs(spicecompat::cmgenEDDifs);
|
|
|
|
}
|
|
|
|
|
|
|
|
void QucsApp::slotEDDtoMOD()
|
|
|
|
{
|
|
|
|
slotBuildXSPICEIfs(spicecompat::cmgenEDDmod);
|
2016-09-30 17:57:07 +03:00
|
|
|
}
|