qucs_s/qucs/qucs.h

429 lines
15 KiB
C
Raw Normal View History

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
#include <QMainWindow>
#include <QString>
#include <QHash>
#include <QStack>
#include <QFileSystemModel>
#include <QSortFilterProxyModel>
2004-10-31 17:55:57 +00: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;
class OctaveWindow;
class MessageDock;
2014-12-20 02:49:31 +08:00
class ProjectView;
2006-03-28 06:10:52 +00:00
class QLabel;
class QAction;
class QLineEdit;
class QComboBox;
class QTabWidget;
class QDir;
class QMouseEvent;
class QCloseEvent;
class QMenu;
class QToolBar;
class QSettings;
class QListWidgetItem;
class QTreeWidget;
class QTreeWidgetItem;
class QListWidget;
class QShortcut;
class QListView;
2014-12-10 23:47:50 +08:00
class QModelIndex;
class QPushButton;
class QTextEdit;
class QFrame;
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
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;
};
class QucsApp : public QMainWindow {
2003-10-15 21:32:36 +00:00
Q_OBJECT
2004-05-07 17:31:21 +00:00
public:
2005-11-28 07:17:35 +00:00
QucsApp();
~QucsApp();
bool closeAllFiles();
bool gotoPage(const QString&); // to load a document
2006-03-28 06:10:52 +00:00
QucsDoc *getDoc(int No=-1);
QucsDoc* findDoc (QString, int * Pos = 0);
QString fileType (const QString&);
static bool isTextDocument(QWidget *);
2006-03-28 06:10:52 +00:00
QString ProjName; // name of the project, that is open
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
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
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
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
void slotRefreshSchPath(); // refresh the schematic path hash
2005-11-28 07:17:35 +00:00
void slotIntoHierarchy();
void slotPopHierarchy();
void slotShowAll();
void slotShowOne();
void slotZoomOut(); // Zoom out by 2
void slotToPage();
2013-03-06 20:46:08 +01:00
void slotSelectComponent(QListWidgetItem*);
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
void slotShowContentMenu(const QPoint &);
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();
void slotCMenuInsert();
2004-02-21 18:38:50 +00:00
void slotUpdateTreeview();
void slotMenuProjClose();
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 &);
void slotSelectSubcircuit(const QModelIndex &);
2014-01-31 16:59:40 +00:00
void slotSelectLibComponent(QTreeWidgetItem*);
void slotOpenContent(const QModelIndex &);
2005-11-28 07:17:35 +00:00
void slotSetCompView(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 slotSimulate();
void slotAfterSimulation(int, SimMessage*);
void slotDCbias();
2006-03-28 06:10:52 +00:00
void slotChangePage(QString&, QString&);
void slotHideEdit();
2015-01-12 21:33:21 +08:00
void slotFileChanged(bool);
void slotSimSettings();
void slotSimulateWithSpice();
2023-02-25 16:59:57 +03:00
void slotSaveNetlist();
void slotAfterSpiceSimulation();
2015-07-19 14:33:42 +03:00
void slotBuildVAModule();
void slotBuildXSPICEIfs(int mode = 0);
2016-09-30 17:57:07 +03:00
void slotEDDtoIFS();
void slotEDDtoMOD();
2022-08-20 18:20:57 +03:00
void slotShowModel();
void slotSearchLibComponent(const QString &);
void slotSearchLibClear();
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;
QTextEdit *CompDescr;
QLineEdit *LibCompSearch;
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;
2006-03-28 06:10:52 +00:00
QAction *fileNew, *textNew, *fileNewDpl, *fileOpen, *fileSave, *fileSaveAs,
2013-05-21 16:39:04 +02:00
*fileSaveAll, *fileClose, *fileExamples, *fileSettings, *filePrint, *fileQuit,
*projNew, *projOpen, *projDel, *projClose, *applSettings, *refreshSchPath,
2006-07-03 06:02:08 +00:00
*editCut, *editCopy, *magAll, *magOne, *magMinus, *filePrintFit,
2023-02-25 16:59:57 +03:00
*symEdit, *intoH, *popH, *simulate, *save_netlist, *dpl_sch, *undo, *redo, *dcbias;
2005-04-19 06:33:22 +00:00
QAction *exportAsImage;
2005-04-19 06:33:22 +00:00
QAction *activeAction; // pointer to the action selected by the user
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;
MessageDock *messageDock;
2003-10-15 21:32:36 +00:00
QListView *Projects;
ProjectView *Content;
2003-10-15 21:32:36 +00:00
2014-10-28 00:33:01 +08:00
QLineEdit *CompSearch;
QPushButton *CompSearchClear;
2014-01-31 16:59:40 +00:00
QComboBox *CompChoose;
2003-10-15 21:32:36 +00:00
// ********** Properties ************************************************
QStack<QString> HierarchyHistory; // keeps track of "go into subcircuit"
2005-11-28 07:17:35 +00:00
QString QucsFileFilter;
QFileSystemModel *m_homeDirModel;
QucsSortFilterProxyModel *m_proxyModel;
QFileSystemModel *m_projModel;
int ccCurIdx; // CompChooser current index (used during search)
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();
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);
2005-06-23 06:06:40 +00:00
void fillComboBox(bool);
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 &);
void closeFile(int);
2013-11-10 14:45:04 +04:00
void updateRecentFilesList(QString s);
void successExportMessages(bool ok);
2014-01-31 16:59:40 +00:00
void fillLibrariesTreeView (void);
void saveSettings();
2013-11-10 14:45:04 +04:00
public:
2006-03-28 06:10:52 +00:00
void readProjects();
void updatePathList(void); // update the list of paths, pruning non-existing paths
void updatePathList(QStringList);
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();
2006-04-18 06:03:52 +00:00
void printCursorPosition(int, int);
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 slotViewToolBar(bool toggle); // toggle the toolbar
void slotViewStatusBar(bool toggle); // toggle the statusbar
void slotViewBrowseDock(bool toggle); // toggle the dock window
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
2006-07-17 06:02:57 +00:00
QAction *helpAboutApp, *helpAboutQt, *viewToolBar, *viewStatusBar,
*viewBrowseDock, *viewOctaveDock;
2006-03-28 06:10:52 +00:00
// menus contain the items of their menubar
enum { MaxRecentFiles = 8 };
QMenu *fileMenu, *editMenu, *insMenu, *projMenu, *simMenu, *viewMenu,
*helpMenu, *alignMenu, *toolMenu, *recentFilesMenu, *cmMenu;
QAction *fileRecentAction[MaxRecentFiles];
QAction *fileClearRecent;
2006-03-28 06:10:52 +00:00
// submenus for the PDF documents
2013-05-21 16:39:04 +02:00
QMenu *helpTechnical, *helpReport, *helpTutorial;
QToolBar *fileToolbar, *editToolbar, *viewToolbar, *workToolbar;
2006-03-28 06:10:52 +00: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;
2006-04-10 06:12:35 +00:00
QLabel *WarningLabel, *PositionLabel; // labels in status bar
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,
*editActivate, *wire, *editDelete, *setMarker, *onGrid, *moveText,
*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,
2006-07-24 06:12:23 +00:00
*createLib, *importData, *graph2csv, *createPkg, *extractPkg,
2022-09-25 15:26:50 +03:00
*callAtt, *centerHor, *centerVert, *loadModule, *buildModule, *callPwrComb;
QAction *helpQucsIndex;
QAction *simSettings;
QAction *buildVAModule, *buildIFS;
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);
void slotEscape();
2006-03-28 06:10:52 +00:00
void slotSelect(bool);
void slotEditActivate(bool);
void slotInsertLabel(bool);
void slotSetMarker(bool);
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();
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();
2006-03-28 06:10:52 +00:00
void slotHelpIndex(); // shows a HTML docu: Help Index
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();
void slotSaveDiagramToGraphicsFile();
void slotSaveSchematicToGraphicsFile(bool diagram = false);
2006-03-28 06:10:52 +00:00
private slots:
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();
void slotCreatePackage();
void slotExtractPackage();
void slotUpdateRecentFiles();
void slotClearRecentFiles();
void slotLoadModule();
void slotBuildModule();
2006-03-28 06:10:52 +00:00
private:
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
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
#endif /* QUCS_H */