2003-10-15 21:32:36 +00:00
|
|
|
/***************************************************************************
|
2005-08-15 06:04:52 +00:00
|
|
|
qucs.h
|
|
|
|
--------
|
2006-03-28 06:10:52 +00:00
|
|
|
begin : Thu Aug 28 2003
|
2003-10-15 21:32:36 +00:00
|
|
|
copyright : (C) 2003 by Michael Margraf
|
2004-06-12 12:35:04 +00:00
|
|
|
email : michael.margraf@alumni.tu-berlin.de
|
2003-10-15 21:32:36 +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. *
|
|
|
|
* *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef QUCS_H
|
|
|
|
#define QUCS_H
|
|
|
|
|
2013-03-03 20:07:27 +01:00
|
|
|
#include <QMainWindow>
|
2013-11-26 16:06:53 +01:00
|
|
|
#include <QString>
|
2014-11-04 10:36:05 +08:00
|
|
|
#include <QHash>
|
2014-11-06 17:11:30 +08:00
|
|
|
#include <QStack>
|
2022-07-05 01:40:09 +03:00
|
|
|
#include <QFileSystemModel>
|
|
|
|
#include <QSortFilterProxyModel>
|
2004-10-31 17:55:57 +00:00
|
|
|
|
2016-07-30 16:59:21 +03:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
class QucsDoc;
|
|
|
|
class Schematic;
|
2004-10-31 17:55:57 +00:00
|
|
|
class SimMessage;
|
2006-03-28 06:10:52 +00:00
|
|
|
class MouseActions;
|
2006-04-10 06:12:35 +00:00
|
|
|
class SearchDialog;
|
2014-10-30 21:18:15 +08:00
|
|
|
class OctaveWindow;
|
|
|
|
class MessageDock;
|
2014-12-20 02:49:31 +08:00
|
|
|
class ProjectView;
|
2023-09-19 17:09:05 +03:00
|
|
|
class TunerDialog;
|
|
|
|
class tunerElement;
|
2023-09-20 20:08:48 +03:00
|
|
|
class ExternSimDialog;
|
2014-10-30 21:18:15 +08:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
class QLabel;
|
|
|
|
class QAction;
|
|
|
|
class QLineEdit;
|
|
|
|
class QComboBox;
|
|
|
|
class QTabWidget;
|
2014-10-30 21:18:15 +08:00
|
|
|
class QDir;
|
|
|
|
class QMouseEvent;
|
|
|
|
class QCloseEvent;
|
|
|
|
class QMenu;
|
|
|
|
class QToolBar;
|
|
|
|
class QSettings;
|
2014-11-04 10:36:05 +08:00
|
|
|
class QListWidgetItem;
|
|
|
|
class QTreeWidget;
|
|
|
|
class QTreeWidgetItem;
|
|
|
|
class QListWidget;
|
|
|
|
class QShortcut;
|
2014-12-10 23:15:34 +08:00
|
|
|
class QListView;
|
2014-12-10 23:47:50 +08:00
|
|
|
class QModelIndex;
|
2014-11-03 22:43:04 +08:00
|
|
|
class QPushButton;
|
2022-08-19 15:40:17 +03:00
|
|
|
class QTextEdit;
|
2022-01-31 23:14:29 +01:00
|
|
|
class QFrame;
|
2022-08-19 15:40:17 +03:00
|
|
|
|
|
|
|
class SymbolWidget;
|
2006-03-28 06:10:52 +00:00
|
|
|
|
|
|
|
typedef bool (Schematic::*pToggleFunc) ();
|
|
|
|
typedef void (MouseActions::*pMouseFunc) (Schematic*, QMouseEvent*);
|
2007-02-08 07:04:54 +00:00
|
|
|
typedef void (MouseActions::*pMouseFunc2) (Schematic*, QMouseEvent*, float, float);
|
2003-10-15 21:32:36 +00:00
|
|
|
|
2022-07-05 01:40:09 +03:00
|
|
|
class QucsFileSystemModel : public QFileSystemModel {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit QucsFileSystemModel(QObject* parent = nullptr) : QFileSystemModel(parent) {};
|
|
|
|
QVariant data(const QModelIndex& index, int role) const override;
|
|
|
|
};
|
|
|
|
|
|
|
|
class QucsSortFilterProxyModel : public QSortFilterProxyModel {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit QucsSortFilterProxyModel(QObject *parent = nullptr) : QSortFilterProxyModel(parent) {};
|
|
|
|
protected:
|
|
|
|
bool lessThan(const QModelIndex &left, const QModelIndex &right) const override;
|
|
|
|
};
|
|
|
|
|
2013-03-03 20:07:27 +01:00
|
|
|
class QucsApp : public QMainWindow {
|
2003-10-15 21:32:36 +00:00
|
|
|
Q_OBJECT
|
2004-05-07 17:31:21 +00:00
|
|
|
public:
|
2025-01-09 17:59:32 +01:00
|
|
|
QucsApp(bool netlist2Console);
|
2005-11-28 07:17:35 +00:00
|
|
|
~QucsApp();
|
|
|
|
bool closeAllFiles();
|
|
|
|
bool gotoPage(const QString&); // to load a document
|
2006-03-28 06:10:52 +00:00
|
|
|
QucsDoc *getDoc(int No=-1);
|
2009-10-19 16:34:25 +00:00
|
|
|
QucsDoc* findDoc (QString, int * Pos = 0);
|
2009-10-24 15:17:21 +00:00
|
|
|
QString fileType (const QString&);
|
2016-02-07 22:06:23 +01:00
|
|
|
static bool isTextDocument(QWidget *);
|
2006-03-28 06:10:52 +00:00
|
|
|
|
|
|
|
QString ProjName; // name of the project, that is open
|
2024-03-12 21:04:10 -04:00
|
|
|
//QHash<QString,QString> schNameHash; // QHash for the schematic files lookup
|
|
|
|
//QHash<QString,QString> spiceNameHash; // QHash for the spice files lookup
|
2003-10-15 21:32:36 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
QLineEdit *editText; // for edit component properties on schematic
|
2006-04-10 06:12:35 +00:00
|
|
|
SearchDialog *SearchDia; // global in order to keep values
|
2023-09-19 17:09:05 +03:00
|
|
|
TunerDialog *tunerDia; // global in order to keep values
|
|
|
|
SimMessage *sim; // global in order to keep values
|
2006-03-28 06:10:52 +00:00
|
|
|
|
|
|
|
// current mouse methods
|
|
|
|
void (MouseActions::*MouseMoveAction) (Schematic*, QMouseEvent*);
|
2007-02-08 07:04:54 +00:00
|
|
|
void (MouseActions::*MousePressAction) (Schematic*, QMouseEvent*, float, float);
|
2006-03-28 06:10:52 +00:00
|
|
|
void (MouseActions::*MouseDoubleClickAction) (Schematic*, QMouseEvent*);
|
|
|
|
void (MouseActions::*MouseReleaseAction) (Schematic*, QMouseEvent*);
|
2004-05-07 17:31:21 +00:00
|
|
|
|
|
|
|
protected:
|
2005-11-28 07:17:35 +00:00
|
|
|
void closeEvent(QCloseEvent*);
|
2004-05-07 17:31:21 +00:00
|
|
|
|
|
|
|
public slots:
|
2005-11-28 07:17:35 +00:00
|
|
|
void slotFileNew(); // generate a new schematic in the view TabBar
|
2006-03-28 06:10:52 +00:00
|
|
|
void slotTextNew(); // generate a new text editor in the view TabBar
|
2024-06-15 17:12:14 +03:00
|
|
|
void slotSymbolNew(); // create new symbol
|
2005-11-28 07:17:35 +00:00
|
|
|
void slotFileOpen(); // open a document
|
|
|
|
void slotFileSave(); // save a document
|
|
|
|
void slotFileSaveAs(); // save a document under a different filename
|
|
|
|
void slotFileSaveAll(); // save all open documents
|
|
|
|
void slotFileClose(); // close the actual file
|
2013-05-21 16:39:04 +02:00
|
|
|
void slotFileExamples(); // show the examples in a file browser
|
|
|
|
void slotHelpTutorial(); // Open a pdf tutorial
|
|
|
|
void slotHelpReport(); // Open a pdf report
|
|
|
|
void slotHelpTechnical(); // Open a pdf technical document
|
2013-01-07 09:56:23 +01:00
|
|
|
void slotFileClose (int); // close the file with given index
|
2006-07-03 06:02:08 +00:00
|
|
|
void slotSymbolEdit(); // edit the symbol for the schematic
|
2005-11-28 07:17:35 +00:00
|
|
|
void slotFileSettings();// open dialog to change file settings
|
|
|
|
void slotFilePrint(); // print the current file
|
2006-07-03 06:02:08 +00:00
|
|
|
void slotFilePrintFit();// Print and fit to page
|
2005-11-28 07:17:35 +00:00
|
|
|
void slotFileQuit(); // exits the application
|
|
|
|
void slotApplSettings();// open dialog to change application settings
|
2013-09-08 03:01:59 +01:00
|
|
|
void slotRefreshSchPath(); // refresh the schematic path hash
|
2005-11-28 07:17:35 +00:00
|
|
|
|
|
|
|
void slotIntoHierarchy();
|
|
|
|
void slotPopHierarchy();
|
|
|
|
|
|
|
|
void slotShowAll();
|
2023-10-17 21:29:39 +03:00
|
|
|
void slotZoomToSelection();
|
2005-11-28 07:17:35 +00:00
|
|
|
void slotShowOne();
|
|
|
|
void slotZoomOut(); // Zoom out by 2
|
|
|
|
|
|
|
|
void slotToPage();
|
2013-03-06 20:46:08 +01:00
|
|
|
void slotSelectComponent(QListWidgetItem*);
|
2014-11-03 22:43:04 +08:00
|
|
|
void slotSearchComponent(const QString &);
|
|
|
|
void slotSearchClear();
|
2005-11-28 07:17:35 +00:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
void slotEditElement();
|
|
|
|
void slotPowerMatching();
|
|
|
|
void slot2PortMatching();
|
2005-11-28 07:17:35 +00:00
|
|
|
|
|
|
|
// for menu that appears by right click in content ListView
|
2013-03-19 19:34:28 +01:00
|
|
|
void slotShowContentMenu(const QPoint &);
|
2015-01-08 04:33:46 +08:00
|
|
|
|
2005-11-28 07:17:35 +00:00
|
|
|
void slotCMenuOpen();
|
2014-05-11 02:49:52 +08:00
|
|
|
void slotCMenuCopy();
|
2005-11-28 07:17:35 +00:00
|
|
|
void slotCMenuRename();
|
|
|
|
void slotCMenuDelete();
|
2013-06-16 20:52:21 +02:00
|
|
|
void slotCMenuInsert();
|
2004-02-21 18:38:50 +00:00
|
|
|
|
2014-12-22 20:28:30 +08:00
|
|
|
void slotUpdateTreeview();
|
2016-02-07 21:37:40 +01:00
|
|
|
|
|
|
|
void slotMenuProjClose();
|
|
|
|
|
2023-09-19 17:09:05 +03:00
|
|
|
void slotSimulate(QWidget *w = nullptr);
|
2023-09-20 20:08:48 +03:00
|
|
|
void slotSimulateWithSpice();
|
2023-09-19 17:09:05 +03:00
|
|
|
void slotTune(bool checked);
|
|
|
|
|
2005-11-28 07:17:35 +00:00
|
|
|
private slots:
|
2014-12-10 23:34:01 +08:00
|
|
|
void slotMenuProjOpen();
|
2014-12-11 00:09:39 +08:00
|
|
|
void slotMenuProjDel();
|
|
|
|
void slotListProjOpen(const QModelIndex &);
|
2015-01-08 04:33:46 +08:00
|
|
|
void slotSelectSubcircuit(const QModelIndex &);
|
2014-01-31 16:59:40 +00:00
|
|
|
void slotSelectLibComponent(QTreeWidgetItem*);
|
2015-01-08 04:33:46 +08:00
|
|
|
void slotOpenContent(const QModelIndex &);
|
2005-11-28 07:17:35 +00:00
|
|
|
void slotSetCompView(int);
|
2023-06-07 01:45:39 +03:00
|
|
|
void slotChangeSimulator(int);
|
2014-12-10 23:34:01 +08:00
|
|
|
void slotButtonProjNew();
|
|
|
|
void slotButtonProjOpen();
|
|
|
|
void slotButtonProjDel();
|
2022-02-15 21:26:33 +01:00
|
|
|
void slotChangeView();
|
2005-11-28 07:17:35 +00:00
|
|
|
void slotAfterSimulation(int, SimMessage*);
|
|
|
|
void slotDCbias();
|
2024-11-08 12:46:57 +01:00
|
|
|
void slotChangePage(const QString&, const QString&);
|
2006-03-28 06:10:52 +00:00
|
|
|
void slotHideEdit();
|
2015-01-12 21:33:21 +08:00
|
|
|
void slotFileChanged(bool);
|
2016-01-07 17:41:51 +03:00
|
|
|
void slotSimSettings();
|
2023-02-25 16:59:57 +03:00
|
|
|
void slotSaveNetlist();
|
2024-12-17 15:14:58 +01:00
|
|
|
void slotSaveCdlNetlist();
|
2023-09-20 20:08:48 +03:00
|
|
|
void slotAfterSpiceSimulation(ExternSimDialog *SimDlg);
|
2015-07-19 14:33:42 +03:00
|
|
|
void slotBuildVAModule();
|
2023-05-29 16:28:13 +03:00
|
|
|
/*void slotBuildXSPICEIfs(int mode = 0);
|
2016-09-30 17:57:07 +03:00
|
|
|
void slotEDDtoIFS();
|
2023-05-29 16:28:13 +03:00
|
|
|
void slotEDDtoMOD();*/
|
2022-08-20 18:20:57 +03:00
|
|
|
void slotShowModel();
|
2022-08-20 20:32:42 +03:00
|
|
|
void slotSearchLibComponent(const QString &);
|
|
|
|
void slotSearchLibClear();
|
2014-10-01 20:04:27 +04:00
|
|
|
|
2004-12-27 18:37:29 +00:00
|
|
|
signals:
|
2005-11-28 07:17:35 +00:00
|
|
|
void signalKillEmAll();
|
2004-10-31 17:55:57 +00:00
|
|
|
|
2004-05-07 17:31:21 +00:00
|
|
|
public:
|
2006-03-28 06:10:52 +00:00
|
|
|
MouseActions *view;
|
|
|
|
QTabWidget *DocumentTab;
|
2013-03-06 20:46:08 +01:00
|
|
|
QListWidget *CompComps;
|
2014-01-31 16:59:40 +00:00
|
|
|
QTreeWidget *libTreeWidget;
|
2022-08-19 15:40:17 +03:00
|
|
|
QTextEdit *CompDescr;
|
2022-08-20 20:32:42 +03:00
|
|
|
QLineEdit *LibCompSearch;
|
2022-08-19 15:40:17 +03:00
|
|
|
SymbolWidget *Symbol;
|
2022-08-20 18:20:57 +03:00
|
|
|
QPushButton *btnShowModel;
|
2005-04-19 06:33:22 +00:00
|
|
|
|
|
|
|
// menu appearing by right mouse button click on content listview
|
2013-03-08 15:16:12 +01:00
|
|
|
QMenu *ContentMenu;
|
2005-04-19 06:33:22 +00:00
|
|
|
|
2013-03-10 16:37:08 +01:00
|
|
|
// corresponding actions
|
2014-12-22 02:56:49 +08:00
|
|
|
QAction *ActionCMenuOpen, *ActionCMenuCopy, *ActionCMenuRename, *ActionCMenuDelete, *ActionCMenuInsert;
|
|
|
|
|
2024-06-15 17:12:14 +03:00
|
|
|
QAction *fileNew, *textNew, *symNew, *fileNewDpl, *fileOpen, *fileSave, *fileSaveAs,
|
2013-05-21 16:39:04 +02:00
|
|
|
*fileSaveAll, *fileClose, *fileExamples, *fileSettings, *filePrint, *fileQuit,
|
2013-09-08 03:01:59 +01:00
|
|
|
*projNew, *projOpen, *projDel, *projClose, *applSettings, *refreshSchPath,
|
2023-10-17 21:29:39 +03:00
|
|
|
*editCut, *editCopy, *magAll, *magSel, *magOne, *magMinus, *filePrintFit, *tune,
|
2024-12-17 15:14:58 +01:00
|
|
|
*symEdit, *intoH, *popH, *simulate, *save_netlist, *dpl_sch, *undo, *redo, *dcbias,
|
|
|
|
*saveCdlNetlist;
|
2005-04-19 06:33:22 +00:00
|
|
|
|
2013-12-08 16:41:59 +04:00
|
|
|
QAction *exportAsImage;
|
|
|
|
|
2005-04-19 06:33:22 +00:00
|
|
|
QAction *activeAction; // pointer to the action selected by the user
|
2023-09-19 17:09:05 +03:00
|
|
|
bool TuningMode;
|
2023-11-29 12:18:20 +03:00
|
|
|
QString windowTitle;
|
2004-04-04 15:56:10 +00:00
|
|
|
|
2004-05-07 17:31:21 +00:00
|
|
|
private:
|
2003-10-15 21:32:36 +00:00
|
|
|
// ********* Widgets on the main area **********************************
|
2014-01-31 16:59:40 +00:00
|
|
|
QDockWidget *dock;
|
|
|
|
QTabWidget *TabView;
|
|
|
|
QDockWidget *octDock;
|
|
|
|
OctaveWindow *octave;
|
2014-03-11 23:31:29 +01:00
|
|
|
MessageDock *messageDock;
|
2003-10-15 21:32:36 +00:00
|
|
|
|
2014-12-10 23:15:34 +08:00
|
|
|
QListView *Projects;
|
2015-01-08 04:33:46 +08:00
|
|
|
ProjectView *Content;
|
2003-10-15 21:32:36 +00:00
|
|
|
|
2014-10-28 00:33:01 +08:00
|
|
|
QLineEdit *CompSearch;
|
2014-11-03 22:43:04 +08:00
|
|
|
QPushButton *CompSearchClear;
|
2014-01-31 16:59:40 +00:00
|
|
|
QComboBox *CompChoose;
|
2003-10-15 21:32:36 +00:00
|
|
|
|
|
|
|
// ********** Properties ************************************************
|
2014-11-06 17:11:30 +08:00
|
|
|
QStack<QString> HierarchyHistory; // keeps track of "go into subcircuit"
|
2005-11-28 07:17:35 +00:00
|
|
|
QString QucsFileFilter;
|
2025-01-09 17:59:32 +01:00
|
|
|
QFileSystemModel *a_homeDirModel;
|
|
|
|
QucsSortFilterProxyModel *a_proxyModel;
|
2015-06-30 19:17:25 +02:00
|
|
|
int ccCurIdx; // CompChooser current index (used during search)
|
2025-01-09 17:59:32 +01:00
|
|
|
bool a_netlist2Console;
|
2004-05-07 17:31:21 +00:00
|
|
|
|
2003-10-15 21:32:36 +00:00
|
|
|
// ********** Methods ***************************************************
|
2006-03-28 06:10:52 +00:00
|
|
|
void initView();
|
|
|
|
void initCursorMenu();
|
|
|
|
|
2022-01-31 23:14:29 +01:00
|
|
|
int addDocumentTab(QFrame* widget, const QString& title = QString());
|
|
|
|
void setDocumentTabChanged(int index, bool changed);
|
2006-07-03 06:02:08 +00:00
|
|
|
void printCurrentDocument(bool);
|
2006-03-28 06:10:52 +00:00
|
|
|
bool saveFile(QucsDoc *Doc=0);
|
2005-06-23 06:06:40 +00:00
|
|
|
bool saveAs();
|
2014-12-11 00:09:39 +08:00
|
|
|
void openProject(const QString &);
|
|
|
|
bool deleteProject(const QString &);
|
2006-05-05 06:00:05 +00:00
|
|
|
void updatePortNumber(QucsDoc*, int);
|
2023-06-15 19:24:02 +03:00
|
|
|
int fillComboBox(bool);
|
2023-06-07 01:45:39 +03:00
|
|
|
void fillSimulatorsComboBox();
|
2006-03-28 06:10:52 +00:00
|
|
|
void switchSchematicDoc(bool);
|
2005-06-23 06:06:40 +00:00
|
|
|
void switchEditMode(bool);
|
2006-03-28 06:10:52 +00:00
|
|
|
void changeSchematicSymbolMode(Schematic*);
|
2023-01-15 01:17:09 +03:00
|
|
|
static bool recurRemove(const QString &);
|
2013-01-07 09:56:23 +01:00
|
|
|
void closeFile(int);
|
2013-09-09 01:45:17 +01:00
|
|
|
|
2013-11-10 14:45:04 +04:00
|
|
|
void updateRecentFilesList(QString s);
|
2013-12-08 16:41:59 +04:00
|
|
|
void successExportMessages(bool ok);
|
2014-01-31 16:59:40 +00:00
|
|
|
void fillLibrariesTreeView (void);
|
2024-09-02 16:53:24 +03:00
|
|
|
bool populateLibTreeFromDir(const QString &LibDirPath, QList<QTreeWidgetItem *> &topitems, bool relpath = false);
|
2022-01-31 23:12:54 +01:00
|
|
|
void saveSettings();
|
2023-09-21 16:44:45 +03:00
|
|
|
QWidget *getSchematicWidget(QucsDoc *Doc);
|
2013-11-10 14:45:04 +04:00
|
|
|
|
2013-07-01 23:43:49 +02:00
|
|
|
public:
|
2006-03-28 06:10:52 +00:00
|
|
|
|
2013-07-01 23:43:49 +02:00
|
|
|
void readProjects();
|
2013-09-09 01:45:17 +01:00
|
|
|
void updatePathList(void); // update the list of paths, pruning non-existing paths
|
|
|
|
void updatePathList(QStringList);
|
2024-03-12 21:04:10 -04:00
|
|
|
//void updateSchNameHash(void); // maps all schematic files in the path list
|
|
|
|
//void updateSpiceNameHash(void); // maps all spice files in the path list
|
2006-03-28 06:10:52 +00:00
|
|
|
|
|
|
|
/* **************************************************
|
|
|
|
***** The following methods are located in *****
|
|
|
|
***** "qucs_init.cpp". *****
|
|
|
|
************************************************** */
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void slotShowWarnings();
|
|
|
|
void slotResetWarnings();
|
2024-01-24 11:34:49 +03:00
|
|
|
void printCursorPosition(int, int, QString);
|
2014-12-10 16:47:32 +08:00
|
|
|
void slotUpdateUndo(bool); // update undo available state
|
|
|
|
void slotUpdateRedo(bool); // update redo available state
|
2006-03-28 06:10:52 +00:00
|
|
|
|
2006-07-03 06:02:08 +00:00
|
|
|
private slots:
|
2006-07-17 06:02:57 +00:00
|
|
|
void slotViewBrowseDock(bool toggle); // toggle the dock window
|
2011-03-03 18:09:11 +00:00
|
|
|
void slotViewOctaveDock(bool); // toggle the dock window
|
|
|
|
void slotToggleOctave(bool);
|
2006-07-17 06:02:57 +00:00
|
|
|
void slotToggleDock(bool);
|
2006-07-03 06:02:08 +00:00
|
|
|
void slotHelpAbout(); // shows an about dialog
|
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
private:
|
|
|
|
void initActions(); // initializes all QActions of the application
|
|
|
|
void initMenuBar(); // creates the menu_bar and inserts the menuitems
|
|
|
|
void initToolBar(); // creates the toolbars
|
|
|
|
void initStatusBar(); // setup the statusbar
|
|
|
|
|
2024-07-20 19:19:46 +03:00
|
|
|
QAction *helpAboutApp, *helpAboutQt,
|
2011-03-03 18:09:11 +00:00
|
|
|
*viewBrowseDock, *viewOctaveDock;
|
2006-03-28 06:10:52 +00:00
|
|
|
|
|
|
|
// menus contain the items of their menubar
|
2015-01-11 21:52:03 +08:00
|
|
|
enum { MaxRecentFiles = 8 };
|
2013-03-03 20:07:27 +01:00
|
|
|
QMenu *fileMenu, *editMenu, *insMenu, *projMenu, *simMenu, *viewMenu,
|
2017-05-01 16:07:33 +03:00
|
|
|
*helpMenu, *alignMenu, *toolMenu, *recentFilesMenu, *cmMenu;
|
2015-01-11 21:52:03 +08:00
|
|
|
QAction *fileRecentAction[MaxRecentFiles];
|
2015-01-11 22:35:21 +08:00
|
|
|
QAction *fileClearRecent;
|
2006-03-28 06:10:52 +00:00
|
|
|
|
2013-09-09 01:45:17 +01:00
|
|
|
// submenus for the PDF documents
|
2013-05-21 16:39:04 +02:00
|
|
|
QMenu *helpTechnical, *helpReport, *helpTutorial;
|
|
|
|
|
2023-06-07 01:45:39 +03:00
|
|
|
QComboBox *simulatorsCombobox;
|
|
|
|
QToolBar *fileToolbar, *editToolbar, *viewToolbar, *workToolbar, *simulateToolbar;
|
2006-03-28 06:10:52 +00:00
|
|
|
|
2022-07-05 07:08:28 -04:00
|
|
|
// Shortcuts for scrolling schematic / TextEdit
|
2013-03-15 17:57:32 +01:00
|
|
|
// This is rather cumbersome -> Make this with a QScrollView instead??
|
|
|
|
QShortcut *cursorUp, *cursorLeft, *cursorRight, *cursorDown;
|
|
|
|
|
2024-01-24 11:34:49 +03:00
|
|
|
QLabel *WarningLabel, *PositionLabel, *DiagramValuesLabel; // labels in status bar
|
2024-01-24 11:41:16 +03:00
|
|
|
// QLabel *SimulatorLabel;
|
2006-03-28 06:10:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* **************************************************
|
|
|
|
***** The following methods are located in *****
|
|
|
|
***** "qucs_actions.cpp". *****
|
|
|
|
************************************************** */
|
|
|
|
|
|
|
|
public:
|
|
|
|
void editFile(const QString&);
|
|
|
|
|
|
|
|
QAction *insWire, *insLabel, *insGround, *insPort, *insEquation, *magPlus,
|
|
|
|
*editRotate, *editMirror, *editMirrorY, *editPaste, *select,
|
2024-11-15 22:34:02 +00:00
|
|
|
*editActivate, *wire, *editDelete, *setMarker, *setDiagramLimits, *resetDiagramLimits, *showGrid, *onGrid, *moveText,
|
2014-07-10 16:07:46 +04:00
|
|
|
*helpIndex, *helpGetStart, *callEditor, *callFilter, *callLine, *callActiveFilter,
|
2006-03-28 06:10:52 +00:00
|
|
|
*showMsg, *showNet, *alignTop, *alignBottom, *alignLeft, *alignRight,
|
2022-09-24 18:01:38 +03:00
|
|
|
*distrHor, *distrVert, *selectAll, *callMatch, *changeProps,
|
2014-11-20 02:06:03 +08:00
|
|
|
*addToProj, *editFind, *insEntity, *selectMarker,
|
2024-07-09 11:48:13 +03:00
|
|
|
*createLib, *callConverter, *graph2csv,
|
S-parameter viewer - Initial development (squashed)
This commit contains the first draft of the user interface
Read Touchstone files
It was implemented a basic function to read Touchstone files.
It can only read Touchstone files up to 4 ports and only S-parameter data.
Please see "Touchstone Specification, Version 2.1, ratified January 26 2024 by the IBIS Open Forum": https://ibis.org/touchstone_ver2.1/
Add QScrollArea widgets to the files and traces lists
Large number of files and traces are expected, so there is a need for scrollable areas in the files and traces lists.
Basic plotting structure
Add default behaviour when loading one single s2p
A default behavior is added. When a single s2p file is selected, the program automatically displays S21, S11 and S22
Replace the "Delete" message by a trash image
The delete image was taken from here
https://commons.wikimedia.org/wiki/File:Delete-button.svg
This file is licensed under the Creative Commons Attribution-Share Alike 4.0 International license.
You are free:
to share – to copy, distribute and transmit the work
to remix – to adapt the work
Under the following conditions:
attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.
Read Touchstone files with more than two ports
Update traces combobox depending on the selected dataset
If the user has loaded data with different number of ports, the traces combobox must be refreshed each time the user changes the dataset selection. Otherwise, this may cause that the user selects a non existing trace
Fix style in buttons for removing files
The QPushButtons were replaced by QToolButtons. With the QPushButtons the widget was too wide
Fix style in buttons for removing traces
QPushButton was converted into QToolButton
Delete dataset and its traces when the user decides to remove a file
Remove files and traces
Rework on the logic on how to remove datasets and traces
After removing a file, remove the associated widgets
Remove trace from Chart
Update file widget position in the grid after removing
Function handler for changing the color of a trace
Change linestyle depending on the combo selection
Set initial color of the color pickers
Added a spinbox control to control the trace width
It was added a spinbox that controls the width of the traces displayed. This is very convenient when a bunch of traces are being displayed and the user wants to highlight one of them easily
Added function handler for controlling the x-axis
A handler function was added to control the x-axis settings as the user changes the minimum, maximum or the tick interval
Update traces when changing the axis settings
Fix trace plotting refresh
Fix frequency limits when loading a GHz range file
Dockable widgets
Autoadjust y-axis settings
Automatically add K, delta, mu_s, m_p, MAG and MSG traces in S2P files
When a Touchtone file has two ports, the stability metrics are automatically computed and added to the dataset
Add marker table feature
It was added a new dock consisting on a marker table and some widgets for its management
Add dot marker and vertical lines in the QChart
Make case insensitive the frequency scale
Files were found were the frequency scale is all in capital letters. This creates a problem when reading the spar data. This commit fixes this by putting the frequency scale in lower case
Auto adjust x-axis when changing the units
Put x_div values as a ComboBox
It makes no much sense in having a decimal spinbox for defining the tick interval. It leads to decimal ticks. It's better to have a closed list of possible values
y axis tick in combobox
Fix vertical line markers
Fix bad "About Qt" connection
The "About Qt" message was not properly connected. As a consequence, when the user went to "Help-> About Qt..." nothing showed up.
This commit is intended to fix this by connecting the menu with the handler as it's done in the filter design tool
Link S-parameter viewer to Qucs-S
Add Re{Zin}, Im{Zin} traces to s1p and s2p files
Hide y-axis units
It makes no much sense for now to have it since it may happen that the y-axis represent dB, Ohm or simply its unitless (e.g. K, mu, ...)
Fix segfault when removing one single file
In previous commits, it was observed a segfault when removing one single s-par file. This happened because the program was freeing widgets already freed. This situation is avoided by ordering the list of widgets to remove
Autoadjust y-axis
Remove widgets for marker placement
They are actually not needed. The SpinBox and the combo with units just add clutter. The user can set the marker freq once added
Update x-axis limits after removing file
Increase maximum x-ticks
Get suffix using Qt method
This is more robust than the previous approach
Fix frequency scale in markers
Enable drag and drop to open files
Fix segfault when removing file
Readjust frequency limits when dataset has no traces
Fix read touchstone
Files were found whose header contains no !
Fix initial marker step
Fix autoscale y-axis
Prevent docks from closing
It makes no sense the user can close the docks
Solve infinite loop when fmax=3000 [unit]
Implemented button for removing all files on a row
Implement button for removing all markers on a row
2024-09-08 08:33:53 +02:00
|
|
|
*callAtt, *centerHor, *centerVert, *loadModule, *buildModule, *callPwrComb, *callRFLayout, *callSPAR_Viewer;
|
2016-07-30 16:59:21 +03:00
|
|
|
|
|
|
|
QAction *helpQucsIndex;
|
2016-01-07 17:45:36 +03:00
|
|
|
QAction *simSettings;
|
2023-05-29 16:36:55 +03:00
|
|
|
QAction *buildVAModule;
|
2023-09-21 16:44:45 +03:00
|
|
|
|
2006-03-28 06:10:52 +00:00
|
|
|
public slots:
|
|
|
|
void slotEditRotate(bool); // rotate the selected items
|
|
|
|
void slotEditMirrorX(bool); // mirror the selected items about X axis
|
|
|
|
void slotEditMirrorY(bool); // mirror the selected items about Y axis
|
2014-12-11 13:28:36 +08:00
|
|
|
void slotEditCut(); // put marked object into clipboard and delete it
|
|
|
|
void slotEditCopy(); // put the marked object into the clipboard
|
2006-03-28 06:10:52 +00:00
|
|
|
void slotEditPaste(bool); // paste the clipboard into the document
|
|
|
|
void slotEditDelete(bool); // delete the selected items
|
|
|
|
void slotInsertEquation(bool);
|
|
|
|
void slotInsertGround(bool);
|
|
|
|
void slotInsertPort(bool);
|
2006-04-18 06:03:52 +00:00
|
|
|
void slotInsertEntity();
|
2006-03-28 06:10:52 +00:00
|
|
|
void slotSetWire(bool);
|
2013-07-02 23:15:40 +02:00
|
|
|
void slotEscape();
|
2006-03-28 06:10:52 +00:00
|
|
|
void slotSelect(bool);
|
|
|
|
void slotEditActivate(bool);
|
|
|
|
void slotInsertLabel(bool);
|
|
|
|
void slotSetMarker(bool);
|
2024-01-21 20:32:18 +00:00
|
|
|
void slotSetDiagramLimits(bool);
|
|
|
|
void slotResetDiagramLimits();
|
2024-11-15 22:34:02 +00:00
|
|
|
void slotShowGrid(); // turn the grid on or off
|
2006-03-28 06:10:52 +00:00
|
|
|
void slotOnGrid(bool); // set selected elements on grid
|
|
|
|
void slotMoveText(bool); // move property text of components
|
|
|
|
void slotZoomIn(bool);
|
|
|
|
void slotEditUndo(); // makes the last operation undone
|
|
|
|
void slotEditRedo(); // makes the last undo undone
|
2006-04-10 06:12:35 +00:00
|
|
|
void slotEditFind(); // searches for a piece of text
|
2006-03-28 06:10:52 +00:00
|
|
|
void slotAlignTop(); // align selected elements with respect to top
|
|
|
|
void slotAlignBottom(); // align selected elements with respect to bottom
|
|
|
|
void slotAlignLeft(); // align selected elements with respect to left
|
|
|
|
void slotAlignRight(); // align selected elements with respect to right
|
|
|
|
void slotDistribHoriz();// distribute horizontally selected elements
|
|
|
|
void slotDistribVert(); // distribute vertically selected elements
|
2006-11-06 06:58:05 +00:00
|
|
|
void slotCenterHorizontal();
|
|
|
|
void slotCenterVertical();
|
2006-03-28 06:10:52 +00:00
|
|
|
void slotSelectAll();
|
2006-05-22 06:01:55 +00:00
|
|
|
void slotSelectMarker();
|
2006-03-28 06:10:52 +00:00
|
|
|
void slotShowLastMsg();
|
|
|
|
void slotShowLastNetlist();
|
|
|
|
void slotCallEditor();
|
|
|
|
void slotCallFilter();
|
2014-07-10 16:07:46 +04:00
|
|
|
void slotCallActiveFilter();
|
2006-03-28 06:10:52 +00:00
|
|
|
void slotCallLine();
|
|
|
|
void slotCallMatch();
|
2006-07-24 06:12:23 +00:00
|
|
|
void slotCallAtt();
|
2022-09-25 15:26:50 +03:00
|
|
|
void slotCallPwrComb();
|
S-parameter viewer - Initial development (squashed)
This commit contains the first draft of the user interface
Read Touchstone files
It was implemented a basic function to read Touchstone files.
It can only read Touchstone files up to 4 ports and only S-parameter data.
Please see "Touchstone Specification, Version 2.1, ratified January 26 2024 by the IBIS Open Forum": https://ibis.org/touchstone_ver2.1/
Add QScrollArea widgets to the files and traces lists
Large number of files and traces are expected, so there is a need for scrollable areas in the files and traces lists.
Basic plotting structure
Add default behaviour when loading one single s2p
A default behavior is added. When a single s2p file is selected, the program automatically displays S21, S11 and S22
Replace the "Delete" message by a trash image
The delete image was taken from here
https://commons.wikimedia.org/wiki/File:Delete-button.svg
This file is licensed under the Creative Commons Attribution-Share Alike 4.0 International license.
You are free:
to share – to copy, distribute and transmit the work
to remix – to adapt the work
Under the following conditions:
attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.
Read Touchstone files with more than two ports
Update traces combobox depending on the selected dataset
If the user has loaded data with different number of ports, the traces combobox must be refreshed each time the user changes the dataset selection. Otherwise, this may cause that the user selects a non existing trace
Fix style in buttons for removing files
The QPushButtons were replaced by QToolButtons. With the QPushButtons the widget was too wide
Fix style in buttons for removing traces
QPushButton was converted into QToolButton
Delete dataset and its traces when the user decides to remove a file
Remove files and traces
Rework on the logic on how to remove datasets and traces
After removing a file, remove the associated widgets
Remove trace from Chart
Update file widget position in the grid after removing
Function handler for changing the color of a trace
Change linestyle depending on the combo selection
Set initial color of the color pickers
Added a spinbox control to control the trace width
It was added a spinbox that controls the width of the traces displayed. This is very convenient when a bunch of traces are being displayed and the user wants to highlight one of them easily
Added function handler for controlling the x-axis
A handler function was added to control the x-axis settings as the user changes the minimum, maximum or the tick interval
Update traces when changing the axis settings
Fix trace plotting refresh
Fix frequency limits when loading a GHz range file
Dockable widgets
Autoadjust y-axis settings
Automatically add K, delta, mu_s, m_p, MAG and MSG traces in S2P files
When a Touchtone file has two ports, the stability metrics are automatically computed and added to the dataset
Add marker table feature
It was added a new dock consisting on a marker table and some widgets for its management
Add dot marker and vertical lines in the QChart
Make case insensitive the frequency scale
Files were found were the frequency scale is all in capital letters. This creates a problem when reading the spar data. This commit fixes this by putting the frequency scale in lower case
Auto adjust x-axis when changing the units
Put x_div values as a ComboBox
It makes no much sense in having a decimal spinbox for defining the tick interval. It leads to decimal ticks. It's better to have a closed list of possible values
y axis tick in combobox
Fix vertical line markers
Fix bad "About Qt" connection
The "About Qt" message was not properly connected. As a consequence, when the user went to "Help-> About Qt..." nothing showed up.
This commit is intended to fix this by connecting the menu with the handler as it's done in the filter design tool
Link S-parameter viewer to Qucs-S
Add Re{Zin}, Im{Zin} traces to s1p and s2p files
Hide y-axis units
It makes no much sense for now to have it since it may happen that the y-axis represent dB, Ohm or simply its unitless (e.g. K, mu, ...)
Fix segfault when removing one single file
In previous commits, it was observed a segfault when removing one single s-par file. This happened because the program was freeing widgets already freed. This situation is avoided by ordering the list of widgets to remove
Autoadjust y-axis
Remove widgets for marker placement
They are actually not needed. The SpinBox and the combo with units just add clutter. The user can set the marker freq once added
Update x-axis limits after removing file
Increase maximum x-ticks
Get suffix using Qt method
This is more robust than the previous approach
Fix frequency scale in markers
Enable drag and drop to open files
Fix segfault when removing file
Readjust frequency limits when dataset has no traces
Fix read touchstone
Files were found whose header contains no !
Fix initial marker step
Fix autoscale y-axis
Prevent docks from closing
It makes no sense the user can close the docks
Solve infinite loop when fmax=3000 [unit]
Implemented button for removing all files on a row
Implement button for removing all markers on a row
2024-09-08 08:33:53 +02:00
|
|
|
void slotCallSPAR_Viewer();
|
2024-03-20 09:26:11 +03:00
|
|
|
void slotCallRFLayout();
|
2006-03-28 06:10:52 +00:00
|
|
|
void slotHelpIndex(); // shows a HTML docu: Help Index
|
2016-07-30 16:59:21 +03:00
|
|
|
void slotHelpQucsIndex();
|
2006-03-28 06:10:52 +00:00
|
|
|
void slotGettingStarted(); // shows a HTML docu: Getting started
|
|
|
|
void slotChangeProps();
|
|
|
|
void slotAddToProject();
|
|
|
|
void slotApplyCompText();
|
2015-01-11 22:36:06 +08:00
|
|
|
void slotOpenRecent();
|
2013-11-12 20:25:06 +04:00
|
|
|
void slotSaveDiagramToGraphicsFile();
|
2013-12-14 16:37:50 +04:00
|
|
|
void slotSaveSchematicToGraphicsFile(bool diagram = false);
|
2006-03-28 06:10:52 +00:00
|
|
|
|
|
|
|
private slots:
|
2015-07-06 18:06:43 +02:00
|
|
|
void slotCursorLeft(bool left=true);
|
|
|
|
void slotCursorRight() {return slotCursorLeft(false);}
|
|
|
|
void slotCursorUp(bool up=true);
|
|
|
|
void slotCursorDown() {return slotCursorUp(false);}
|
2006-05-08 06:13:04 +00:00
|
|
|
void slotResizePropEdit(const QString&);
|
2006-06-06 06:14:17 +00:00
|
|
|
void slotCreateLib();
|
2006-07-03 06:02:08 +00:00
|
|
|
void slotImportData();
|
|
|
|
void slotExportGraphAsCsv();
|
2013-11-09 18:26:25 +04:00
|
|
|
void slotUpdateRecentFiles();
|
|
|
|
void slotClearRecentFiles();
|
2014-02-19 21:47:28 +01:00
|
|
|
void slotLoadModule();
|
2014-02-26 21:40:00 +01:00
|
|
|
void slotBuildModule();
|
2006-03-28 06:10:52 +00:00
|
|
|
|
|
|
|
private:
|
2022-12-19 19:50:18 +03:00
|
|
|
void buildWithOpenVAF();
|
2006-03-28 06:10:52 +00:00
|
|
|
bool performToggleAction(bool, QAction*, pToggleFunc, pMouseFunc, pMouseFunc2);
|
2022-02-24 22:30:33 +01:00
|
|
|
void launchTool(const QString&, const QString&,
|
|
|
|
const QStringList& = QStringList(),bool qucs_tool = false); // tool, description and args
|
2006-12-25 17:30:03 +00:00
|
|
|
friend class SaveDialog;
|
2013-11-24 12:01:47 +04:00
|
|
|
QString lastExportFilename;
|
2003-10-15 21:32:36 +00:00
|
|
|
};
|
2014-01-31 16:59:40 +00:00
|
|
|
|
2024-02-05 20:43:11 +00:00
|
|
|
/** \brief Provide a template to declare singleton classes.
|
|
|
|
*
|
|
|
|
* Classes implemented using this template will be singletons (i.e., only
|
|
|
|
* one instance of the class will exist per invokation). Primarily this
|
|
|
|
* is used to support static / access to an application-wide function, e.g.
|
|
|
|
* settings.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
template < typename T >
|
|
|
|
class QucsSingleton final
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static T& Get()
|
|
|
|
{
|
|
|
|
static T instance;
|
|
|
|
return instance;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Prevent overriding default ctor, dtor, copying, or multiple instances.
|
|
|
|
private:
|
|
|
|
QucsSingleton() = default;
|
|
|
|
~QucsSingleton() = default;
|
|
|
|
|
|
|
|
QucsSingleton(const QucsSingleton&) = delete;
|
|
|
|
QucsSingleton& operator=(const QucsSingleton&) = delete;
|
|
|
|
QucsSingleton(QucsSingleton&&) = delete;
|
|
|
|
QucsSingleton& operator=(QucsSingleton&&) = delete;
|
|
|
|
};
|
|
|
|
|
2014-01-31 16:59:40 +00:00
|
|
|
#endif /* QUCS_H */
|