qucs_s/qucs/qucs_init.cpp

1083 lines
46 KiB
C++
Raw Normal View History

2006-03-28 06:10:52 +00:00
/***************************************************************************
qucs_init.cpp
---------------
begin : Sat May 1 2004
copyright : (C) 2004 by Michael Margraf
email : michael.margraf@alumni.tu-berlin.de
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
2013-03-15 18:43:02 +01:00
2006-03-28 06:10:52 +00:00
#include "main.h"
#include "misc.h"
2006-03-28 06:10:52 +00:00
#include "qucs.h"
2024-05-20 21:46:20 +03:00
#include "extsimkernels/spicecompat.h"
#include "octave_window.h"
2006-03-28 06:10:52 +00:00
2014-11-04 12:48:23 +08:00
#include <QAction>
#include <QShortcut>
#include <QMenu>
#include <QMenuBar>
#include <QToolBar>
#include <QLabel>
#include <QTimer>
#include <QStatusBar>
#include <QDockWidget>
#include <QMessageBox>
2015-01-10 23:17:26 +08:00
#include <QApplication>
/**
* @brief QucsApp::initActions Initializes all QActions of the application
*/
2006-03-28 06:10:52 +00:00
void QucsApp::initActions()
{
2023-01-14 21:59:20 +03:00
activeAction = nullptr; // no active action
2006-03-28 06:10:52 +00:00
// note: first argument of QAction() for backward compatibility Qt < 3.2
2023-10-15 19:48:56 +03:00
fileNew = new QAction(QIcon((":/bitmaps/svg/filenew.svg")), tr("&New"), this);
2023-01-14 21:59:20 +03:00
fileNew->setShortcut(QKeySequence::New);
2006-03-28 06:10:52 +00:00
fileNew->setStatusTip(tr("Creates a new document"));
fileNew->setWhatsThis(
tr("New\n\nCreates a new schematic or data display document"));
2015-01-10 23:15:41 +08:00
connect(fileNew, SIGNAL(triggered()), SLOT(slotFileNew()));
2006-03-28 06:10:52 +00:00
2023-10-15 19:48:56 +03:00
textNew = new QAction(QIcon((":/bitmaps/svg/textnew.svg")), tr("New &Text"), this);
2023-01-14 21:59:20 +03:00
textNew->setShortcut(tr("Ctrl+Shift+V"));
2006-03-28 06:10:52 +00:00
textNew->setStatusTip(tr("Creates a new text document"));
textNew->setWhatsThis(tr("New Text\n\nCreates a new text document"));
2015-01-10 23:15:41 +08:00
connect(textNew, SIGNAL(triggered()), SLOT(slotTextNew()));
2006-03-28 06:10:52 +00:00
2024-06-15 18:10:58 +03:00
symNew = new QAction(QIcon((":/bitmaps/svg/symnew.svg")), tr("New symbol"), this);
2024-06-15 17:12:14 +03:00
symNew->setStatusTip(tr("Creates a new symbol"));
symNew->setWhatsThis(tr("New\n\nCreates a new schematic symbol document"));
connect(symNew, SIGNAL(triggered()), SLOT(slotSymbolNew()));
fileOpen = new QAction(QIcon((":/bitmaps/fileopen.png")), tr("&Open..."), this);
2023-01-14 21:59:20 +03:00
fileOpen->setShortcut(QKeySequence::Open);
2006-03-28 06:10:52 +00:00
fileOpen->setStatusTip(tr("Opens an existing document"));
fileOpen->setWhatsThis(tr("Open File\n\nOpens an existing document"));
2015-01-10 23:15:41 +08:00
connect(fileOpen, SIGNAL(triggered()), SLOT(slotFileOpen()));
2006-03-28 06:10:52 +00:00
2023-10-15 19:48:56 +03:00
fileSave = new QAction(QIcon((":/bitmaps/svg/filesave.svg")), tr("&Save"), this);
2023-01-14 21:59:20 +03:00
fileSave->setShortcut(QKeySequence::Save);
2006-03-28 06:10:52 +00:00
fileSave->setStatusTip(tr("Saves the current document"));
fileSave->setWhatsThis(tr("Save File\n\nSaves the current document"));
2015-01-10 23:15:41 +08:00
connect(fileSave, SIGNAL(triggered()), SLOT(slotFileSave()));
2006-03-28 06:10:52 +00:00
fileSaveAs = new QAction(tr("Save as..."), this);
2023-01-14 21:59:20 +03:00
//fileSaveAs->setShortcut(QKeySequence::SaveAs);
fileSaveAs->setStatusTip( tr("Saves the current document under a new filename"));
fileSaveAs->setWhatsThis( tr("Save As\n\nSaves the current document under a new filename"));
2015-01-10 23:15:41 +08:00
connect(fileSaveAs, SIGNAL(triggered()), SLOT(slotFileSaveAs()));
2006-03-28 06:10:52 +00:00
2023-10-15 19:48:56 +03:00
fileSaveAll = new QAction(QIcon((":/bitmaps/svg/filesaveall.svg")), tr("Save &All"), this);
2023-01-14 21:59:20 +03:00
fileSaveAll->setShortcut(tr("Ctrl+Shift+S"));
2006-03-28 06:10:52 +00:00
fileSaveAll->setStatusTip(tr("Saves all open documents"));
fileSaveAll->setWhatsThis(tr("Save All Files\n\nSaves all open documents"));
2015-01-10 23:15:41 +08:00
connect(fileSaveAll, SIGNAL(triggered()), SLOT(slotFileSaveAll()));
2006-03-28 06:10:52 +00:00
2023-10-15 19:48:56 +03:00
fileClose = new QAction(QIcon((":/bitmaps/svg/fileclose.svg")), tr("&Close"), this);
fileClose->setShortcut(Qt::CTRL|Qt::Key_E);
2006-03-28 06:10:52 +00:00
fileClose->setStatusTip(tr("Closes the current document"));
fileClose->setWhatsThis(tr("Close File\n\nCloses the current document"));
2015-01-10 23:15:41 +08:00
connect(fileClose, SIGNAL(triggered()), SLOT(slotFileClose()));
2006-03-28 06:10:52 +00:00
2023-01-14 21:59:20 +03:00
for (auto & i : fileRecentAction) {
i = new QAction(this);
i->setVisible(false);
connect(i, SIGNAL(triggered()), SLOT(slotOpenRecent()));
}
fileClearRecent = new QAction(tr("Clear Recent"), this);
connect(fileClearRecent, SIGNAL(triggered()), SLOT(slotClearRecentFiles()));
2013-05-21 16:39:04 +02:00
fileExamples = new QAction(tr("&Examples"), this);
fileExamples->setStatusTip(tr("Starts file chooser dialog to open one of example schematics"));
2013-05-21 16:39:04 +02:00
fileExamples->setWhatsThis(
tr("Examples\n\nStart file chooser dialog and open one of example schematics"));
2015-01-10 23:15:41 +08:00
connect(fileExamples, SIGNAL(triggered()), SLOT(slotFileExamples()));
2013-05-21 16:39:04 +02:00
symEdit = new QAction(tr("&Edit Circuit Symbol"), this);
symEdit->setShortcut(Qt::Key_F9);
2006-03-28 06:10:52 +00:00
symEdit->setStatusTip(tr("Edits the symbol for this schematic"));
symEdit->setWhatsThis(
tr("Edit Circuit Symbol\n\nEdits the symbol for this schematic"));
2015-01-10 23:15:41 +08:00
connect(symEdit, SIGNAL(triggered()), SLOT(slotSymbolEdit()));
2006-03-28 06:10:52 +00:00
fileSettings = new QAction(tr("&Document Settings..."), this);
2023-01-14 21:59:20 +03:00
fileSettings->setShortcut(tr("Ctrl+."));
fileSettings->setStatusTip(tr("Document Settings"));
fileSettings->setWhatsThis(tr("Settings\n\nSets properties of the file"));
2015-01-10 23:15:41 +08:00
connect(fileSettings, SIGNAL(triggered()), SLOT(slotFileSettings()));
2006-03-28 06:10:52 +00:00
2023-10-15 19:48:56 +03:00
filePrint = new QAction(QIcon((":/bitmaps/svg/fileprint.svg")), tr("&Print..."), this);
2023-01-14 21:59:20 +03:00
filePrint->setShortcut(QKeySequence::Print);
2006-03-28 06:10:52 +00:00
filePrint->setStatusTip(tr("Prints the current document"));
filePrint->setWhatsThis(tr("Print File\n\nPrints the current document"));
2015-01-10 23:15:41 +08:00
connect(filePrint, SIGNAL(triggered()), SLOT(slotFilePrint()));
2006-03-28 06:10:52 +00:00
filePrintFit = new QAction(tr("Print Fit to Page..."), this);
2023-01-14 21:59:20 +03:00
filePrintFit->setShortcut(tr("Ctrl+Shift+P"));
filePrintFit->setStatusTip(tr("Print Fit to Page"));
2006-07-03 06:02:08 +00:00
filePrintFit->setWhatsThis(
tr("Print Fit to Page\n\n"
"Print and fit content to the page size"));
2015-01-10 23:15:41 +08:00
connect(filePrintFit, SIGNAL(triggered()), SLOT(slotFilePrintFit()));
2006-03-28 06:10:52 +00:00
fileQuit = new QAction(tr("E&xit"), this);
2023-01-14 21:59:20 +03:00
fileQuit->setShortcut(QKeySequence::Quit);
2006-03-28 06:10:52 +00:00
fileQuit->setStatusTip(tr("Quits the application"));
fileQuit->setWhatsThis(tr("Exit\n\nQuits the application"));
2015-01-10 23:15:41 +08:00
connect(fileQuit, SIGNAL(triggered()), SLOT(slotFileQuit()));
2006-03-28 06:10:52 +00:00
applSettings = new QAction(tr("Application Settings..."), this);
2023-01-14 21:59:20 +03:00
applSettings->setShortcut(tr("Ctrl+,"));
applSettings->setStatusTip(tr("Application Settings"));
2006-03-28 06:10:52 +00:00
applSettings->setWhatsThis(
tr("Qucs Settings\n\nSets properties of the application"));
2015-01-10 23:15:41 +08:00
connect(applSettings, SIGNAL(triggered()), SLOT(slotApplSettings()));
2006-03-28 06:10:52 +00:00
refreshSchPath = new QAction(tr("Refresh Search Path..."), this);
//refreshSchPath->setShortcut(Qt::CTRL+Qt::Key_Comma);
refreshSchPath->setStatusTip(tr("Refresh Search Path"));
refreshSchPath->setWhatsThis(
tr("Refresh Path\n\nRechecks the list of paths for subcircuit files."));
2015-01-10 23:15:41 +08:00
connect(refreshSchPath, SIGNAL(triggered()), SLOT(slotRefreshSchPath()));
alignTop = new QAction(tr("Align top"), this);
2023-01-14 21:59:20 +03:00
alignTop->setShortcut(tr("Ctrl+T"));
2006-03-28 06:10:52 +00:00
alignTop->setStatusTip(tr("Align top selected elements"));
alignTop->setWhatsThis(
tr("Align top\n\nAlign selected elements to their upper edge"));
2015-01-10 23:15:41 +08:00
connect(alignTop, SIGNAL(triggered()), SLOT(slotAlignTop()));
2006-03-28 06:10:52 +00:00
alignBottom = new QAction(tr("Align bottom"), this);
2006-03-28 06:10:52 +00:00
alignBottom->setStatusTip(tr("Align bottom selected elements"));
2023-01-14 21:59:20 +03:00
alignBottom->setWhatsThis(tr("Align bottom\n\nAlign selected elements to their lower edge"));
2015-01-10 23:15:41 +08:00
connect(alignBottom, SIGNAL(triggered()), SLOT(slotAlignBottom()));
2006-03-28 06:10:52 +00:00
alignLeft = new QAction(tr("Align left"), this);
2006-03-28 06:10:52 +00:00
alignLeft->setStatusTip(tr("Align left selected elements"));
2023-01-14 21:59:20 +03:00
alignLeft->setWhatsThis(tr("Align left\n\nAlign selected elements to their left edge"));
2015-01-10 23:15:41 +08:00
connect(alignLeft, SIGNAL(triggered()), SLOT(slotAlignLeft()));
2006-03-28 06:10:52 +00:00
alignRight = new QAction(tr("Align right"), this);
2006-03-28 06:10:52 +00:00
alignRight->setStatusTip(tr("Align right selected elements"));
2023-01-14 21:59:20 +03:00
alignRight->setWhatsThis(tr("Align right\n\n"
"Align selected elements to their right edge"));
2015-01-10 23:15:41 +08:00
connect(alignRight, SIGNAL(triggered()), SLOT(slotAlignRight()));
2006-03-28 06:10:52 +00:00
distrHor = new QAction(tr("Distribute horizontally"), this);
2006-03-28 06:10:52 +00:00
distrHor->setStatusTip(tr("Distribute equally horizontally"));
2023-01-14 21:59:20 +03:00
distrHor->setWhatsThis(tr("Distribute horizontally\n\n"
"Distribute horizontally selected elements"));
2015-01-10 23:15:41 +08:00
connect(distrHor, SIGNAL(triggered()), SLOT(slotDistribHoriz()));
2006-03-28 06:10:52 +00:00
distrVert = new QAction(tr("Distribute vertically"), this);
2006-03-28 06:10:52 +00:00
distrVert->setStatusTip(tr("Distribute equally vertically"));
2023-01-14 21:59:20 +03:00
distrVert->setWhatsThis(tr("Distribute vertically\n\n"
"Distribute vertically selected elements"));
2015-01-10 23:15:41 +08:00
connect(distrVert, SIGNAL(triggered()), SLOT(slotDistribVert()));
2006-03-28 06:10:52 +00:00
centerHor = new QAction(tr("Center horizontally"), this);
2006-11-06 06:58:05 +00:00
centerHor->setStatusTip(tr("Center horizontally selected elements"));
2023-01-14 21:59:20 +03:00
centerHor->setWhatsThis(tr("Center horizontally\n\n"
"Center horizontally selected elements"));
2015-01-10 23:15:41 +08:00
connect(centerHor, SIGNAL(triggered()), SLOT(slotCenterHorizontal()));
2006-11-06 06:58:05 +00:00
centerVert = new QAction(tr("Center vertically"), this);
2006-11-06 06:58:05 +00:00
centerVert->setStatusTip(tr("Center vertically selected elements"));
2023-01-14 21:59:20 +03:00
centerVert->setWhatsThis( tr("Center vertically\n\n"
"Center vertically selected elements"));
2015-01-10 23:15:41 +08:00
connect(centerVert, SIGNAL(triggered()), SLOT(slotCenterVertical()));
2006-11-06 06:58:05 +00:00
onGrid = new QAction(tr("Set on Grid"), this);
2023-01-14 21:59:20 +03:00
onGrid->setShortcut(tr("Ctrl+U"));
onGrid->setStatusTip(tr("Sets selected elements on grid"));
2023-01-14 21:59:20 +03:00
onGrid->setWhatsThis(tr("Set on Grid\n\nSets selected elements on grid"));
onGrid->setCheckable(true);
2006-03-28 06:10:52 +00:00
connect(onGrid, SIGNAL(toggled(bool)), SLOT(slotOnGrid(bool)));
moveText = new QAction(tr("Move Component Text"), this);
2023-01-14 21:59:20 +03:00
moveText->setShortcut(tr("Ctrl+K"));
moveText->setStatusTip(tr("Moves the property text of components"));
2006-03-28 06:10:52 +00:00
moveText->setWhatsThis(
tr("Move Component Text\n\nMoves the property text of components"));
moveText->setCheckable(true);
2006-03-28 06:10:52 +00:00
connect(moveText, SIGNAL(toggled(bool)), SLOT(slotMoveText(bool)));
changeProps = new QAction(tr("Replace..."), this);
changeProps->setShortcut(Qt::Key_F7);
changeProps->setStatusTip(tr("Replace component properties or VHDL code"));
2006-03-28 06:10:52 +00:00
changeProps->setWhatsThis(
2006-05-05 06:00:05 +00:00
tr("Replace\n\nChange component properties\nor\ntext in VHDL code"));
2015-01-10 23:15:41 +08:00
connect(changeProps, SIGNAL(triggered()), SLOT(slotChangeProps()));
2006-03-28 06:10:52 +00:00
2023-10-15 19:48:56 +03:00
editCut = new QAction(QIcon((":/bitmaps/svg/editcut.svg")), tr("Cu&t"), this);
2023-01-14 21:59:20 +03:00
editCut->setShortcut(tr("Ctrl+X"));
editCut->setStatusTip(tr("Cuts out the selection and puts it into the clipboard"));
editCut->setWhatsThis(tr("Cut\n\nCuts out the selection and puts it into the clipboard"));
2015-01-10 23:15:41 +08:00
connect(editCut, SIGNAL(triggered()), SLOT(slotEditCut()));
2006-03-28 06:10:52 +00:00
2023-10-15 19:48:56 +03:00
editCopy = new QAction(QIcon((":/bitmaps/svg/editcopy.svg")), tr("&Copy"), this);
2023-01-14 21:59:20 +03:00
editCopy->setShortcut(QKeySequence::Copy);
editCopy->setStatusTip(tr("Copies the selection into the clipboard"));
editCopy->setWhatsThis(tr("Copy\n\nCopies the selection into the clipboard"));
2015-01-10 23:15:41 +08:00
connect(editCopy, SIGNAL(triggered()), SLOT(slotEditCopy()));
2006-03-28 06:10:52 +00:00
2023-10-15 19:48:56 +03:00
editPaste = new QAction(QIcon((":/bitmaps/svg/editpaste.svg")), tr("&Paste"), this);
2023-01-14 21:59:20 +03:00
editPaste->setShortcut(QKeySequence::Paste);
editPaste->setStatusTip(tr("Pastes the clipboard contents to the cursor position"));
editPaste->setWhatsThis(tr("Paste\n\nPastes the clipboard contents to the cursor position"));
editPaste->setCheckable(true);
2006-03-28 06:10:52 +00:00
connect(editPaste, SIGNAL(toggled(bool)), SLOT(slotEditPaste(bool)));
2023-10-15 19:48:56 +03:00
editDelete = new QAction(QIcon((":/bitmaps/svg/editdelete.svg")), tr("&Delete"), this);
2024-07-08 00:53:12 +03:00
#ifdef __APPLE__
editDelete->setShortcuts({QKeySequence(Qt::Key_Backspace), QKeySequence(Qt::Key_Delete)});
2024-07-08 00:53:12 +03:00
#else
2023-01-14 21:59:20 +03:00
editDelete->setShortcut(QKeySequence::Delete);
2024-07-08 00:53:12 +03:00
#endif
2006-03-28 06:10:52 +00:00
editDelete->setStatusTip(tr("Deletes the selected components"));
editDelete->setWhatsThis(tr("Delete\n\nDeletes the selected components"));
editDelete->setCheckable(true);
2006-03-28 06:10:52 +00:00
connect(editDelete, SIGNAL(toggled(bool)), SLOT(slotEditDelete(bool)));
editFind = new QAction(tr("Find..."), this);
2023-01-14 21:59:20 +03:00
editFind->setShortcut(QKeySequence::Find);
2006-04-10 06:12:35 +00:00
editFind->setStatusTip(tr("Find a piece of text"));
editFind->setWhatsThis(tr("Find\n\nSearches for a piece of text"));
2015-01-10 23:15:41 +08:00
connect(editFind, SIGNAL(triggered()), SLOT(slotEditFind()));
2006-04-10 06:12:35 +00:00
2006-03-28 06:10:52 +00:00
// to ease usage with notebooks, backspace can also be used to delete
2013-03-15 17:57:32 +01:00
// currently not supported
//mainAccel->connectItem(mainAccel->insertItem(Qt::Key_Backspace),
// editDelete, SLOT(toggle()) );
exportAsImage = new QAction(tr("Export as image..."),this);
2015-01-10 23:15:41 +08:00
connect(exportAsImage,SIGNAL(triggered()),SLOT(slotSaveSchematicToGraphicsFile()));
exportAsImage->setStatusTip(tr("Exports the current document to an image file"));
exportAsImage->setWhatsThis(tr("Export as image\n\nExports the current document to an image file"));
2013-03-15 17:57:32 +01:00
// cursor left/right/up/down to move marker on a graph
cursorLeft = new QShortcut(QKeySequence(Qt::Key_Left), this);
connect(cursorLeft, SIGNAL(activated()), SLOT(slotCursorLeft()));
cursorRight = new QShortcut(QKeySequence(Qt::Key_Right), this);
connect(cursorRight, SIGNAL(activated()), SLOT(slotCursorRight()));
cursorUp = new QShortcut(QKeySequence(Qt::Key_Up), this);
connect(cursorUp, SIGNAL(activated()), SLOT(slotCursorUp()));
2006-03-28 06:10:52 +00:00
2013-03-15 17:57:32 +01:00
cursorDown = new QShortcut(QKeySequence(Qt::Key_Down), this);
connect(cursorDown, SIGNAL(activated()), SLOT(slotCursorDown()));
2023-10-15 19:48:56 +03:00
undo = new QAction(QIcon((":/bitmaps/svg/editundo.svg")), tr("&Undo"), this);
2023-01-14 21:59:20 +03:00
undo->setShortcut(QKeySequence::Undo);
2006-03-28 06:10:52 +00:00
undo->setStatusTip(tr("Undoes the last command"));
undo->setWhatsThis(tr("Undo\n\nMakes the last action undone"));
2015-01-10 23:15:41 +08:00
connect(undo, SIGNAL(triggered()), SLOT(slotEditUndo()));
2006-03-28 06:10:52 +00:00
2023-10-15 19:48:56 +03:00
redo = new QAction(QIcon((":/bitmaps/svg/editredo.svg")), tr("&Redo"), this);
2023-01-14 21:59:20 +03:00
redo->setShortcut(QKeySequence::Redo);
2006-03-28 06:10:52 +00:00
redo->setStatusTip(tr("Redoes the last command"));
redo->setWhatsThis(tr("Redo\n\nRepeats the last action once more"));
2015-01-10 23:15:41 +08:00
connect(redo, SIGNAL(triggered()), SLOT(slotEditRedo()));
2006-03-28 06:10:52 +00:00
projNew = new QAction(tr("&New Project..."), this);
2023-01-14 21:59:20 +03:00
projNew->setShortcut(tr("Ctrl+Shift+N"));
2006-03-28 06:10:52 +00:00
projNew->setStatusTip(tr("Creates a new project"));
projNew->setWhatsThis(tr("New Project\n\nCreates a new project"));
2015-01-10 23:15:41 +08:00
connect(projNew, SIGNAL(triggered()), SLOT(slotButtonProjNew()));
2006-03-28 06:10:52 +00:00
projOpen = new QAction(tr("&Open Project..."), this);
2023-01-14 21:59:20 +03:00
projOpen->setShortcut(tr("Ctrl+Shift+O"));
projOpen->setStatusTip(tr("Opens an existing project"));
projOpen->setWhatsThis(tr("Open Project\n\nOpens an existing project"));
2015-01-10 23:15:41 +08:00
connect(projOpen, SIGNAL(triggered()), SLOT(slotMenuProjOpen()));
2006-03-28 06:10:52 +00:00
projDel = new QAction(tr("&Delete Project..."), this);
2023-01-14 21:59:20 +03:00
projDel->setShortcut(tr("Ctrl+Shift+D"));
projDel->setStatusTip(tr("Deletes an existing project"));
projDel->setWhatsThis(tr("Delete Project\n\nDeletes an existing project"));
2015-01-10 23:15:41 +08:00
connect(projDel, SIGNAL(triggered()), SLOT(slotMenuProjDel()));
2006-03-28 06:10:52 +00:00
projClose = new QAction(tr("&Close Project"), this);
2023-01-14 21:59:20 +03:00
projClose->setShortcut(tr("Ctrl+Shift+W"));
projClose->setStatusTip(tr("Closes the current project"));
projClose->setWhatsThis(tr("Close Project\n\nCloses the current project"));
2015-01-10 23:15:41 +08:00
connect(projClose, SIGNAL(triggered()), SLOT(slotMenuProjClose()));
2006-03-28 06:10:52 +00:00
addToProj = new QAction(tr("&Add Files to Project..."), this);
2023-01-14 21:59:20 +03:00
addToProj->setShortcut(tr("Ctrl+Shift+A"));
2006-03-28 06:10:52 +00:00
addToProj->setStatusTip(tr("Copies files to project directory"));
2023-01-14 21:59:20 +03:00
addToProj->setWhatsThis(tr("Add Files to Project\n\nCopies files to project directory"));
2015-01-10 23:15:41 +08:00
connect(addToProj, SIGNAL(triggered()), SLOT(slotAddToProject()));
2006-03-28 06:10:52 +00:00
createLib = new QAction(tr("Create &Library..."), this);
2023-01-14 21:59:20 +03:00
createLib->setShortcut(tr("Ctrl+Shift+L"));
2006-06-06 06:14:17 +00:00
createLib->setStatusTip(tr("Create Library from Subcircuits"));
createLib->setWhatsThis(
tr("Create Library\n\nCreate Library from Subcircuits"));
2015-01-10 23:15:41 +08:00
connect(createLib, SIGNAL(triggered()), SLOT(slotCreateLib()));
2006-06-06 06:14:17 +00:00
graph2csv = new QAction(tr("Export to &CSV..."), this);
2023-01-14 21:59:20 +03:00
graph2csv->setShortcut(tr("Ctrl+Shift+C"));
2006-07-03 06:02:08 +00:00
graph2csv->setStatusTip(tr("Convert graph data to CSV file"));
2023-01-14 21:59:20 +03:00
graph2csv->setWhatsThis(tr("Export to CSV\n\nConvert graph data to CSV file"));
2015-01-10 23:15:41 +08:00
connect(graph2csv, SIGNAL(triggered()), SLOT(slotExportGraphAsCsv()));
2006-07-03 06:02:08 +00:00
2014-02-26 21:55:31 +01:00
buildModule = new QAction(tr("Build Verilog-A module..."), this);
buildModule->setStatusTip(tr("Run admsXml and C++ compiler"));
buildModule->setWhatsThis(tr("Build Verilog-A module\nRuns amdsXml and C++ compiler"));
2015-01-10 23:15:41 +08:00
connect(buildModule, SIGNAL(triggered()), SLOT(slotBuildModule()));
2014-02-26 21:55:31 +01:00
loadModule = new QAction(tr("Load Verilog-A module..."), this);
loadModule->setStatusTip(tr("Select Verilog-A symbols to be loaded"));
loadModule->setWhatsThis(tr("Load Verilog-A module\nLet the user select and load symbols"));
2015-01-10 23:15:41 +08:00
connect(loadModule, SIGNAL(triggered()), SLOT(slotLoadModule()));
2023-10-18 19:24:07 +03:00
magAll = new QAction(QIcon((":/bitmaps/svg/viewmagfit.svg")), tr("View All"), this);
magAll->setShortcut(Qt::Key_0);
2006-04-18 06:03:52 +00:00
magAll->setStatusTip(tr("Show the whole page"));
2006-03-28 06:10:52 +00:00
magAll->setWhatsThis(tr("View All\n\nShows the whole page content"));
2015-01-10 23:15:41 +08:00
connect(magAll, SIGNAL(triggered()), SLOT(slotShowAll()));
2006-03-28 06:10:52 +00:00
2023-10-19 10:29:54 +03:00
magSel = new QAction(QIcon((":/bitmaps/svg/viewmagsel.svg")), tr("Zoom to selection"), this);
2023-10-17 21:29:39 +03:00
magSel->setShortcut(tr("Z"));
magSel->setStatusTip(tr("Zoom to selected components"));
magSel->setWhatsThis(tr("Zoom to selection\n\nZoom to selected components"));
connect(magSel, SIGNAL(triggered()), SLOT(slotZoomToSelection()));
2023-10-18 19:24:07 +03:00
magOne = new QAction(QIcon((":/bitmaps/svg/viewmag1.svg")), tr("View 1:1"), this);
magOne->setShortcut(Qt::Key_1);
2006-03-28 06:10:52 +00:00
magOne->setStatusTip(tr("Views without magnification"));
2013-04-06 19:06:49 +02:00
magOne->setWhatsThis(tr("View 1:1\n\nShows the page content without magnification"));
2015-01-10 23:15:41 +08:00
connect(magOne, SIGNAL(triggered()), SLOT(slotShowOne()));
2006-03-28 06:10:52 +00:00
2023-10-18 19:24:07 +03:00
magPlus = new QAction(QIcon((":/bitmaps/svg/viewmag+.svg")), tr("Zoom in"), this);
2024-07-08 22:37:09 +03:00
magPlus->setShortcut(QKeySequence::ZoomIn);
2006-03-28 06:10:52 +00:00
magPlus->setStatusTip(tr("Zooms into the current view"));
magPlus->setWhatsThis(tr("Zoom in\n\nZooms the current view"));
magPlus->setCheckable(true);
2006-03-28 06:10:52 +00:00
connect(magPlus, SIGNAL(toggled(bool)), SLOT(slotZoomIn(bool)));
2023-10-18 19:24:07 +03:00
magMinus = new QAction(QIcon((":/bitmaps/svg/viewmag-.svg")), tr("Zoom out"), this);
2024-07-08 22:37:09 +03:00
magMinus->setShortcut(QKeySequence::ZoomOut);
2006-03-28 06:10:52 +00:00
magMinus->setStatusTip(tr("Zooms out the current view"));
magMinus->setWhatsThis(tr("Zoom out\n\nZooms out the current view"));
2015-01-10 23:15:41 +08:00
connect(magMinus, SIGNAL(triggered()), SLOT(slotZoomOut()));
2006-03-28 06:10:52 +00:00
QAction *escape = new QAction(this);
escape->setShortcut(Qt::Key_Escape);
2015-01-10 23:15:41 +08:00
connect(escape, SIGNAL(triggered()), SLOT(slotEscape()));
this->addAction(escape);
2023-10-15 21:21:19 +03:00
select = new QAction(QIcon((":/bitmaps/svg/pointer.svg")), tr("Select"), this);
2006-04-18 06:03:52 +00:00
select->setStatusTip(tr("Activate select mode"));
select->setWhatsThis(tr("Select\n\nActivates select mode"));
select->setCheckable(true);
2006-03-28 06:10:52 +00:00
connect(select, SIGNAL(toggled(bool)), SLOT(slotSelect(bool)));
selectAll = new QAction(tr("Select All"), this);
2023-01-14 21:59:20 +03:00
selectAll->setShortcut(tr("Ctrl+A"));
2006-03-28 06:10:52 +00:00
selectAll->setStatusTip(tr("Selects all elements"));
2023-01-14 21:59:20 +03:00
selectAll->setWhatsThis(tr("Select All\n\nSelects all elements of the document"));
2015-01-10 23:15:41 +08:00
connect(selectAll, SIGNAL(triggered()), SLOT(slotSelectAll()));
2006-03-28 06:10:52 +00:00
selectMarker = new QAction(tr("Select Markers"), this);
2023-01-14 21:59:20 +03:00
selectMarker->setShortcut(tr("Ctrl+Shift+M"));
2006-05-22 06:01:55 +00:00
selectMarker->setStatusTip(tr("Selects all markers"));
2023-01-14 21:59:20 +03:00
selectMarker->setWhatsThis(tr("Select Markers\n\nSelects all diagram markers of the document"));
2015-01-10 23:15:41 +08:00
connect(selectMarker, SIGNAL(triggered()), SLOT(slotSelectMarker()));
2006-05-22 06:01:55 +00:00
2023-10-15 21:21:19 +03:00
editRotate = new QAction(QIcon(":/bitmaps/svg/rotate_ccw.svg"), tr("Rotate"), this);
2023-01-14 21:59:20 +03:00
editRotate->setShortcut(tr("Ctrl+R"));
2013-06-02 22:33:20 +02:00
editRotate->setStatusTip(tr("Rotates the selected component by 90\x00B0"));
2023-01-14 21:59:20 +03:00
editRotate->setWhatsThis(tr("Rotate\n\nRotates the selected component by 90\x00B0 counter-clockwise"));
editRotate->setCheckable(true);
2006-03-28 06:10:52 +00:00
connect(editRotate, SIGNAL(toggled(bool)), SLOT(slotEditRotate(bool)));
2023-10-15 19:48:56 +03:00
editMirror = new QAction(QIcon(":/bitmaps/svg/mirror.svg"), tr("Mirror about X Axis"), this);
2023-01-14 21:59:20 +03:00
editMirror->setShortcut(tr("Ctrl+J"));
editMirror->setStatusTip(tr("Mirrors the selected item about X Axis"));
2023-01-14 21:59:20 +03:00
editMirror->setWhatsThis(tr("Mirror about X Axis\n\nMirrors the selected item about X Axis"));
editMirror->setCheckable(true);
2006-03-28 06:10:52 +00:00
connect(editMirror, SIGNAL(toggled(bool)), SLOT(slotEditMirrorX(bool)));
2023-10-15 19:48:56 +03:00
editMirrorY = new QAction(QIcon(":/bitmaps/svg/mirrory.svg"), tr("Mirror about Y Axis"), this);
2023-01-14 21:59:20 +03:00
editMirrorY->setShortcut(tr("Ctrl+M"));
editMirrorY->setStatusTip(tr("Mirrors the selected item about Y Axis"));
2023-01-14 21:59:20 +03:00
editMirrorY->setWhatsThis(tr("Mirror about Y Axis\n\nMirrors the selected item about Y Axis"));
editMirrorY->setCheckable(true);
2006-03-28 06:10:52 +00:00
connect(editMirrorY, SIGNAL(toggled(bool)), SLOT(slotEditMirrorY(bool)));
2023-10-15 19:48:56 +03:00
intoH = new QAction(QIcon((":/bitmaps/svg/bottom.svg")), tr("Go into Subcircuit"), this);
2023-01-14 21:59:20 +03:00
intoH->setShortcut(tr("Ctrl+I"));
intoH->setStatusTip(tr("Goes inside the selected subcircuit"));
2006-03-28 06:10:52 +00:00
intoH->setWhatsThis(
tr("Go into Subcircuit\n\nGoes inside the selected subcircuit"));
2015-01-10 23:15:41 +08:00
connect(intoH, SIGNAL(triggered()), SLOT(slotIntoHierarchy()));
2006-03-28 06:10:52 +00:00
2023-10-15 19:48:56 +03:00
popH = new QAction(QIcon((":/bitmaps/svg/top.svg")), tr("Pop out"), this);
2023-01-14 21:59:20 +03:00
popH->setShortcut(tr("Ctrl+H"));
2006-03-28 06:10:52 +00:00
popH->setStatusTip(tr("Pop outside subcircuit"));
2023-01-14 21:59:20 +03:00
popH->setWhatsThis(tr("Pop out\n\nGoes up one hierarchy level, i.e. leaves subcircuit"));
2015-01-10 23:15:41 +08:00
connect(popH, SIGNAL(triggered()), SLOT(slotPopHierarchy()));
2006-03-28 06:10:52 +00:00
popH->setEnabled(false); // only enabled if useful !!!!
2023-10-16 13:56:29 +03:00
editActivate = new QAction(QIcon(":bitmaps/svg/deactiv.svg"), tr("Deactivate/Activate"), this);
2023-01-14 21:59:20 +03:00
editActivate->setShortcut(tr("Ctrl+D"));
editActivate->setStatusTip(tr("Deactivate/Activate selected components"));
2023-01-14 21:59:20 +03:00
editActivate->setWhatsThis(tr("Deactivate/Activate\n\nDeactivate/Activate the selected components"));
editActivate->setCheckable(true);
2006-03-28 06:10:52 +00:00
connect(editActivate, SIGNAL(toggled(bool)), SLOT(slotEditActivate(bool)));
2023-10-16 13:56:29 +03:00
insEquation = new QAction(QIcon(":bitmaps/svg/equation.svg"), tr("Insert Equation"), this);
2023-01-14 21:59:20 +03:00
insEquation->setShortcut(tr("Ctrl+<"));
insEquation->setStatusTip(tr("Inserts an equation"));
2023-01-14 21:59:20 +03:00
insEquation->setWhatsThis(tr("Insert Equation\n\nInserts a user defined equation"));
insEquation->setCheckable(true);
2006-03-28 06:10:52 +00:00
connect(insEquation, SIGNAL(toggled(bool)), SLOT(slotInsertEquation(bool)));
2023-10-16 13:56:29 +03:00
insGround = new QAction(QIcon(":/bitmaps/svg/ground.svg"), tr("Insert Ground"), this);
2023-01-14 21:59:20 +03:00
insGround->setShortcut(tr("Ctrl+G"));
insGround->setStatusTip(tr("Inserts a ground symbol"));
insGround->setWhatsThis(tr("Insert Ground\n\nInserts a ground symbol"));
insGround->setCheckable(true);
2006-03-28 06:10:52 +00:00
connect(insGround, SIGNAL(toggled(bool)), SLOT(slotInsertGround(bool)));
2023-10-16 13:56:29 +03:00
insPort = new QAction(QIcon(":/bitmaps/svg/port.svg"), tr("Insert Port"), this);
insPort->setStatusTip(tr("Inserts a port symbol"));
2006-03-28 06:10:52 +00:00
insPort->setWhatsThis(tr("Insert Port\n\nInserts a port symbol"));
insPort->setCheckable(true);
2006-03-28 06:10:52 +00:00
connect(insPort, SIGNAL(toggled(bool)), SLOT(slotInsertPort(bool)));
2023-10-16 13:56:29 +03:00
insWire = new QAction(QIcon(":bitmaps/svg/wire.svg"), tr("Wire"), this);
insWire->setShortcut(tr("Ctrl+W"));
insWire->setStatusTip(tr("Inserts a wire"));
2006-03-28 06:10:52 +00:00
insWire->setWhatsThis(tr("Wire\n\nInserts a wire"));
insWire->setCheckable(true);
2006-03-28 06:10:52 +00:00
connect(insWire, SIGNAL(toggled(bool)), SLOT(slotSetWire(bool)));
2023-10-16 13:56:29 +03:00
insLabel = new QAction(QIcon(":/bitmaps/svg/nodename.svg"), tr("Wire Label"), this);
2023-01-14 21:59:20 +03:00
insLabel->setShortcut(tr("Ctrl+L"));
2006-03-28 06:10:52 +00:00
insLabel->setStatusTip(tr("Inserts a wire or pin label"));
insLabel->setWhatsThis(tr("Wire Label\n\nInserts a wire or pin label"));
insLabel->setCheckable(true);
2006-03-28 06:10:52 +00:00
connect(insLabel, SIGNAL(toggled(bool)), SLOT(slotInsertLabel(bool)));
insEntity = new QAction(tr("VHDL entity"), this);
2023-01-14 21:59:20 +03:00
insEntity->setShortcut(tr("Ctrl+Space"));
2006-04-21 07:54:02 +00:00
insEntity->setStatusTip(tr("Inserts skeleton of VHDL entity"));
2006-04-18 06:03:52 +00:00
insEntity->setWhatsThis(
2006-04-21 07:54:02 +00:00
tr("VHDL entity\n\nInserts the skeleton of a VHDL entity"));
2015-01-10 23:15:41 +08:00
connect(insEntity, SIGNAL(triggered()), SLOT(slotInsertEntity()));
2006-04-18 06:03:52 +00:00
callEditor = new QAction(tr("Text Editor"), this);
2023-01-14 21:59:20 +03:00
callEditor->setShortcut(tr("Ctrl+1"));
2006-03-28 06:10:52 +00:00
callEditor->setStatusTip(tr("Starts the Qucs text editor"));
callEditor->setWhatsThis(tr("Text editor\n\nStarts the Qucs text editor"));
2015-01-10 23:15:41 +08:00
connect(callEditor, SIGNAL(triggered()), SLOT(slotCallEditor()));
2006-03-28 06:10:52 +00:00
callFilter = new QAction(tr("Filter synthesis"), this);
2023-01-14 21:59:20 +03:00
callFilter->setShortcut(tr("Ctrl+2"));
2006-03-28 06:10:52 +00:00
callFilter->setStatusTip(tr("Starts QucsFilter"));
callFilter->setWhatsThis(tr("Filter synthesis\n\nStarts QucsFilter"));
2015-01-10 23:15:41 +08:00
connect(callFilter, SIGNAL(triggered()), SLOT(slotCallFilter()));
2006-03-28 06:10:52 +00:00
callActiveFilter = new QAction(tr("Active filter synthesis"),this);
2023-01-14 21:59:20 +03:00
callActiveFilter->setShortcut(tr("Ctrl+3"));
callActiveFilter->setStatusTip(tr("Starts QucsActiveFilter"));
callActiveFilter->setWhatsThis(tr("Active filter synthesis\n\nStarts QucsActiveFilter"));
2015-01-10 23:15:41 +08:00
connect(callActiveFilter, SIGNAL(triggered()), SLOT(slotCallActiveFilter()));
callLine = new QAction(tr("Line calculation"), this);
2023-01-14 21:59:20 +03:00
callLine->setShortcut(tr("Ctrl+4"));
2006-03-28 06:10:52 +00:00
callLine->setStatusTip(tr("Starts QucsTrans"));
2023-01-14 21:59:20 +03:00
callLine->setWhatsThis(tr("Line calculation\n\nStarts transmission line calculator"));
2015-01-10 23:15:41 +08:00
connect(callLine, SIGNAL(triggered()), SLOT(slotCallLine()));
2006-03-28 06:10:52 +00:00
callMatch = new QAction(tr("Matching Circuit"), this);
2023-01-14 21:59:20 +03:00
callMatch->setShortcut(tr("Ctrl+5"));
2006-03-28 06:10:52 +00:00
callMatch->setStatusTip(tr("Creates Matching Circuit"));
2023-01-14 21:59:20 +03:00
callMatch->setWhatsThis(tr("Matching Circuit\n\nDialog for Creating Matching Circuit"));
2015-01-10 23:15:41 +08:00
connect(callMatch, SIGNAL(triggered()), SLOT(slotCallMatch()));
2006-03-28 06:10:52 +00:00
callAtt = new QAction(tr("Attenuator synthesis"), this);
2023-01-14 21:59:20 +03:00
callAtt->setShortcut(tr("Ctrl+6"));
2006-07-24 06:12:23 +00:00
callAtt->setStatusTip(tr("Starts QucsAttenuator"));
2023-01-14 21:59:20 +03:00
callAtt->setWhatsThis(tr("Attenuator synthesis\n\nStarts attenuator calculation program"));
2015-01-10 23:15:41 +08:00
connect(callAtt, SIGNAL(triggered()), SLOT(slotCallAtt()));
2006-07-24 06:12:23 +00:00
2022-09-25 15:26:50 +03:00
callPwrComb = new QAction(tr("Power combining"), this);
2023-01-14 21:59:20 +03:00
callPwrComb->setShortcut(tr("Ctrl+7"));
2022-09-25 15:26:50 +03:00
callPwrComb->setStatusTip(tr("Starts QucsPowerCombining"));
2023-01-14 21:59:20 +03:00
callPwrComb->setWhatsThis(tr("Power combining\n\nStarts power combining calculation program"));
2022-09-25 15:26:50 +03:00
connect(callPwrComb, SIGNAL(triggered()), SLOT(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
callSPAR_Viewer = new QAction(tr("S-parameter Viewer"), this);
callSPAR_Viewer->setStatusTip(tr("Starts S-parameter viewer"));
callSPAR_Viewer->setWhatsThis(tr("S-parameter Viewer\n\nStarts S-parameter viewer"));
connect(callSPAR_Viewer, SIGNAL(triggered()), SLOT(slotCallSPAR_Viewer()));
callConverter = new QAction(tr("Data files converter"), this);
callConverter->setShortcut(tr("Ctrl+8"));
callConverter->setStatusTip(tr("Convert data file"));
callConverter->setWhatsThis(tr("Import/Export Data\n\nConvert data file to various file formats"));
connect(callConverter, SIGNAL(triggered()), SLOT(slotImportData()));
2024-03-20 09:26:11 +03:00
callRFLayout = new QAction(tr("RF Layout"), this);
callRFLayout->setShortcut(tr("Ctrl+9"));
2024-03-20 09:26:11 +03:00
callRFLayout->setStatusTip(tr("Starts Qucs-RFLayout"));
callRFLayout->setWhatsThis(tr("Power combining\n\nStarts power combining calculation program"));
connect(callRFLayout, SIGNAL(triggered()), SLOT(slotCallRFLayout()));
2023-10-15 19:48:56 +03:00
simulate = new QAction(QIcon((":/bitmaps/svg/gear.svg")), tr("Simulate"), this);
simulate->setShortcut(Qt::Key_F2);
2006-03-28 06:10:52 +00:00
simulate->setStatusTip(tr("Simulates the current schematic"));
simulate->setWhatsThis(tr("Simulate\n\nSimulates the current schematic"));
2015-01-10 23:15:41 +08:00
connect(simulate, SIGNAL(triggered()), SLOT(slotSimulate()));
2006-03-28 06:10:52 +00:00
tune = new QAction(QIcon((":/bitmaps/svg/tune.svg")),tr("Tune"), this);
tune->setShortcut(Qt::Key_F3);
tune->setStatusTip(tr("Tuner"));
tune->setWhatsThis(tr("Allows to live tune variables and show the result in the dataview"));
tune->setCheckable(true);
connect(tune, SIGNAL(toggled(bool)), SLOT(slotTune(bool)));
2023-10-16 13:56:29 +03:00
dpl_sch = new QAction(QIcon((":/bitmaps/svg/rebuild.svg")), tr("View Data Display/Schematic"), this);
dpl_sch->setShortcut(Qt::Key_F4);
2006-03-28 06:10:52 +00:00
dpl_sch->setStatusTip(tr("Changes to data display or schematic page"));
2023-01-14 21:59:20 +03:00
dpl_sch->setWhatsThis(tr("View Data Display/Schematic\n\nChanges to data display or schematic page"));
2015-01-10 23:15:41 +08:00
connect(dpl_sch, SIGNAL(triggered()), SLOT(slotToPage()));
2006-03-28 06:10:52 +00:00
dcbias = new QAction(tr("Calculate DC bias"), this);
dcbias->setShortcut(Qt::Key_F8);
2006-03-28 06:10:52 +00:00
dcbias->setStatusTip(tr("Calculates DC bias and shows it"));
2023-01-14 21:59:20 +03:00
dcbias->setWhatsThis(tr("Calculate DC bias\n\nCalculates DC bias and shows it"));
2015-01-10 23:15:41 +08:00
connect(dcbias, SIGNAL(triggered()), SLOT(slotDCbias()));
2006-03-28 06:10:52 +00:00
2023-02-25 16:59:57 +03:00
save_netlist = new QAction(tr("Save netlist"), this);
save_netlist->setStatusTip(tr("Save netlist"));
save_netlist->setWhatsThis(tr(QString::fromUtf8("Save netlist to %1").arg(a_netlist2Console ? "console" : "file").toLatin1().constData()));
2023-02-25 16:59:57 +03:00
connect(save_netlist, SIGNAL(triggered()), SLOT(slotSaveNetlist()));
saveCdlNetlist = new QAction(tr("Save CDL netlist"), this);
saveCdlNetlist->setStatusTip(tr("Save CDL netlist"));
saveCdlNetlist->setWhatsThis(tr(QString::fromUtf8("Save CDL netlist to %1").arg(a_netlist2Console ? "console" : "file").toLatin1().constData()));
connect(saveCdlNetlist, SIGNAL(triggered()), SLOT(slotSaveCdlNetlist()));
2023-10-16 13:56:29 +03:00
setMarker = new QAction(QIcon((":/bitmaps/svg/marker.svg")), tr("Set Marker on Graph"), this);
2023-03-13 16:05:15 +03:00
setMarker->setShortcut(Qt::CTRL|Qt::Key_B);
2006-03-28 06:10:52 +00:00
setMarker->setStatusTip(tr("Sets a marker on a diagram's graph"));
2023-01-14 21:59:20 +03:00
setMarker->setWhatsThis(tr("Set Marker\n\nSets a marker on a diagram's graph"));
setMarker->setCheckable(true);
2006-03-28 06:10:52 +00:00
connect(setMarker, SIGNAL(toggled(bool)), SLOT(slotSetMarker(bool)));
setDiagramLimits = new QAction(QIcon((":/bitmaps/svg/viewwave.svg")), tr("Set Diagram Limits"), this);
//setDiagramLimits->setShortcut(tr("Ctrl+E"));
setDiagramLimits->setStatusTip(tr("Pick the diagram limits using the mouse. Right click for default."));
setDiagramLimits->setWhatsThis(tr("Set Diagram Limits\n\nPick the diagram limits using the mouse. Right click for default."));
setDiagramLimits->setCheckable(true);
connect(setDiagramLimits, SIGNAL(toggled(bool)), SLOT(slotSetDiagramLimits(bool)));
resetDiagramLimits = new QAction(tr("Reset Diagram Limits"), this);
resetDiagramLimits->setShortcut(tr("Ctrl+Shift+E"));
resetDiagramLimits->setStatusTip(tr("Resets the limits for all axis to auto."));
resetDiagramLimits->setWhatsThis(tr("Reset Diagram Limits\n\nResets the limits for all axis to auto."));
connect(resetDiagramLimits, SIGNAL(triggered()), SLOT(slotResetDiagramLimits()));
showGrid = new QAction(tr("Show Grid (current document)"), this);
showGrid->setCheckable(true);
showGrid->setShortcut(tr("Alt+G"));
showGrid->setStatusTip(tr("Show or hide the grid for the current document."));
showGrid->setWhatsThis(tr("Show / Hide Grid\n\nShow or hide the grid for the current document."));
connect(showGrid, SIGNAL(triggered()), SLOT(slotShowGrid()));
showMsg = new QAction(tr("Show Last Messages"), this);
showMsg->setShortcut(Qt::Key_F5);
2006-03-28 06:10:52 +00:00
showMsg->setStatusTip(tr("Shows last simulation messages"));
2023-01-14 21:59:20 +03:00
showMsg->setWhatsThis(tr("Show Last Messages\n\nShows the messages of the last simulation"));
2015-01-10 23:15:41 +08:00
connect(showMsg, SIGNAL(triggered()), SLOT(slotShowLastMsg()));
2006-03-28 06:10:52 +00:00
showNet = new QAction(tr("Show Last Netlist"), this);
showNet->setShortcut(Qt::Key_F6);
2006-03-28 06:10:52 +00:00
showNet->setStatusTip(tr("Shows last simulation netlist"));
2023-01-14 21:59:20 +03:00
showNet->setWhatsThis(tr("Show Last Netlist\n\nShows the netlist of the last simulation"));
2015-01-10 23:15:41 +08:00
connect(showNet, SIGNAL(triggered()), SLOT(slotShowLastNetlist()));
2006-03-28 06:10:52 +00:00
2023-06-15 19:24:02 +03:00
simSettings = new QAction(tr("Simulators Settings..."),this);
2022-02-15 21:26:33 +01:00
connect(simSettings,SIGNAL(triggered()),SLOT(slotSimSettings()));
2015-07-19 14:33:42 +03:00
buildVAModule = new QAction(tr("Build Verilog-A module from subcircuit"),this);
2022-02-15 21:26:33 +01:00
connect(buildVAModule,SIGNAL(triggered()),SLOT(slotBuildVAModule()));
//buildIFS = new QAction(tr("Build XSPICE IFS file from subcircuit"),this);
//connect(buildIFS,SIGNAL(triggered()),SLOT(slotBuildXSPICEIfs()));
2015-07-19 14:33:42 +03:00
viewBrowseDock = new QAction(tr("&Dock Window"), this);
viewBrowseDock->setCheckable(true);
2006-07-17 06:02:57 +00:00
viewBrowseDock->setStatusTip(tr("Enables/disables the browse dock window"));
2023-01-14 21:59:20 +03:00
viewBrowseDock->setWhatsThis(tr("Browse Window\n\nEnables/disables the browse dock window"));
2006-07-17 06:02:57 +00:00
connect(viewBrowseDock, SIGNAL(toggled(bool)), SLOT(slotViewBrowseDock(bool)));
2006-03-28 06:10:52 +00:00
viewOctaveDock = new QAction(tr("&Octave Window"), this);
viewOctaveDock->setCheckable(true);
viewOctaveDock->setStatusTip(tr("Shows/hides the Octave dock window"));
2023-01-14 21:59:20 +03:00
viewOctaveDock->setWhatsThis(tr("Octave Window\n\nShows/hides the Octave dock window"));
connect(viewOctaveDock, SIGNAL(toggled(bool)), SLOT(slotViewOctaveDock(bool)));
helpIndex = new QAction(tr("Help Index..."), this);
helpIndex->setShortcut(Qt::Key_F1);
2006-03-28 06:10:52 +00:00
helpIndex->setStatusTip(tr("Index of Qucs Help"));
helpIndex->setWhatsThis(tr("Help Index\n\nIndex of intern Qucs help"));
2015-01-10 23:15:41 +08:00
connect(helpIndex, SIGNAL(triggered()), SLOT(slotHelpIndex()));
2006-03-28 06:10:52 +00:00
/*helpQucsIndex = new QAction(tr("Help Index (basic Qucs version)"), this);
helpQucsIndex->setStatusTip(tr("Index of basic Qucs Help"));
helpQucsIndex->setWhatsThis(tr("Help Index\n\nIndex of basic Qucs help"));
connect(helpQucsIndex, SIGNAL(triggered()), SLOT(slotHelpQucsIndex()));*/
helpGetStart = new QAction(tr("Getting Started..."), this);
2006-03-28 06:10:52 +00:00
helpGetStart->setStatusTip(tr("Getting Started with Qucs"));
2023-01-14 21:59:20 +03:00
helpGetStart->setWhatsThis(tr("Getting Started\n\nShort introduction into Qucs"));
2015-01-10 23:15:41 +08:00
connect(helpGetStart, SIGNAL(triggered()), SLOT(slotGettingStarted()));
2006-03-28 06:10:52 +00:00
2024-07-04 15:58:04 +03:00
helpAboutApp = new QAction(tr("&About Qucs-S"), this);
helpAboutApp->setStatusTip(tr("About the application"));
2006-03-28 06:10:52 +00:00
helpAboutApp->setWhatsThis(tr("About\n\nAbout the application"));
2024-07-04 10:00:36 +03:00
connect(helpAboutApp, SIGNAL(triggered()),this, SLOT(slotHelpAbout()));
2006-03-28 06:10:52 +00:00
2024-07-04 10:00:36 +03:00
helpAboutQt = new QAction(tr("&About Qt"), this);
helpAboutQt->setStatusTip(tr("About Qt"));
2006-03-28 06:10:52 +00:00
helpAboutQt->setWhatsThis(tr("About Qt\n\nAbout Qt by Trolltech"));
2015-01-10 23:17:26 +08:00
connect(helpAboutQt, SIGNAL(triggered()), qApp, SLOT(aboutQt()));
2006-03-28 06:10:52 +00:00
}
2006-04-10 06:12:35 +00:00
// ----------------------------------------------------------
2006-03-28 06:10:52 +00:00
void QucsApp::initMenuBar()
{
fileMenu = new QMenu(tr("&File")); // menuBar entry fileMenu
fileMenu->addAction(fileNew);
fileMenu->addAction(textNew);
2024-06-15 17:12:14 +03:00
fileMenu->addAction(symNew);
fileMenu->addAction(fileOpen);
fileMenu->addAction(fileClose);
2013-11-10 14:45:04 +04:00
recentFilesMenu = new QMenu(tr("Open Recent"),fileMenu);
fileMenu->addMenu(recentFilesMenu);
2023-01-14 21:59:20 +03:00
for (auto & i : fileRecentAction) {
recentFilesMenu->addAction(i);
}
recentFilesMenu->addSeparator();
recentFilesMenu->addAction(fileClearRecent);
2013-11-10 14:45:04 +04:00
fileMenu->addSeparator();
fileMenu->addAction(fileSave);
fileMenu->addAction(fileSaveAll);
fileMenu->addAction(fileSaveAs);
fileMenu->addAction(exportAsImage);
fileMenu->addAction(filePrint);
fileMenu->addAction(filePrintFit);
fileMenu->addSeparator();
2013-05-21 16:39:04 +02:00
fileMenu->addAction(fileExamples);
fileMenu->addSeparator();
fileMenu->addAction(fileSettings);
fileMenu->addAction(symEdit);
fileMenu->addSeparator();
fileMenu->addAction(applSettings);
fileMenu->addAction(refreshSchPath);
fileMenu->addSeparator();
fileMenu->addAction(fileQuit);
2006-03-28 06:10:52 +00:00
editMenu = new QMenu(tr("&Edit")); // menuBar entry editMenu
editMenu->addAction(undo);
editMenu->addAction(redo);
editMenu->addSeparator();
editMenu->addAction(editCut);
editMenu->addAction(editCopy);
editMenu->addAction(editPaste);
editMenu->addAction(editDelete);
editMenu->addSeparator();
editMenu->addAction(select);
editMenu->addAction(selectAll);
editMenu->addAction(selectMarker);
editMenu->addAction(editFind);
editMenu->addAction(changeProps);
editMenu->addAction(editRotate);
editMenu->addAction(editMirror);
editMenu->addAction(editMirrorY);
editMenu->addAction(editActivate);
editMenu->addSeparator();
editMenu->addAction(intoH);
editMenu->addAction(popH);
2006-03-28 06:10:52 +00:00
alignMenu = new QMenu(tr("P&ositioning")); // menuBar entry alignMenu
alignMenu->addAction(moveText);
alignMenu->addAction(onGrid);
alignMenu->addSeparator();
alignMenu->addAction(centerHor);
alignMenu->addAction(centerVert);
alignMenu->addSeparator();
alignMenu->addAction(alignTop);
alignMenu->addAction(alignBottom);
alignMenu->addAction(alignLeft);
alignMenu->addAction(alignRight);
alignMenu->addSeparator();
alignMenu->addAction(distrHor);
alignMenu->addAction(distrVert);
insMenu = new QMenu(tr("&Insert")); // menuBar entry insMenu
insMenu->addAction(insWire);
insMenu->addAction(insLabel);
insMenu->addAction(insEquation);
insMenu->addAction(insGround);
insMenu->addAction(insPort);
insMenu->addAction(setMarker);
insMenu->addAction(insEntity);
projMenu = new QMenu(tr("&Project")); // menuBar entry projMenu
projMenu->addAction(projNew);
projMenu->addAction(projOpen);
projMenu->addAction(addToProj);
projMenu->addAction(projClose);
projMenu->addAction(projDel);
projMenu->addSeparator();
projMenu->addAction(createLib);
projMenu->addSeparator();
projMenu->addAction(graph2csv);
// TODO only enable if document is VA file
2022-12-19 18:59:00 +03:00
if (QucsSettings.DefaultSimulator == spicecompat::simQucsator ||
QucsSettings.DefaultSimulator == spicecompat::simNgspice) {
2016-01-16 16:31:11 +03:00
// There is no VA-modules builder available for Ngspice etc.
projMenu->addSeparator();
2016-01-16 16:31:11 +03:00
projMenu->addAction(buildModule);
projMenu->addAction(loadModule);
}
2006-03-28 06:10:52 +00:00
toolMenu = new QMenu(tr("&Tools")); // menuBar entry toolMenu
toolMenu->addAction(callEditor);
toolMenu->addAction(callFilter);
toolMenu->addAction(callActiveFilter);
toolMenu->addAction(callLine);
2023-10-25 15:13:34 +03:00
toolMenu->addAction(callMatch);
toolMenu->addAction(callAtt);
2022-09-25 15:26:50 +03:00
toolMenu->addAction(callPwrComb);
toolMenu->addAction(callConverter);
2024-03-20 09:26:11 +03:00
toolMenu->addAction(callRFLayout);
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
toolMenu->addAction(callSPAR_Viewer);
toolMenu->addSeparator();
cmMenu = new QMenu(tr("Compact modelling"));
cmMenu->addAction(buildVAModule);
//cmMenu->addAction(buildIFS);
toolMenu->addMenu(cmMenu);
simMenu = new QMenu(tr("&Simulation")); // menuBar entry simMenu
simMenu->addAction(simulate);
simMenu->addAction(tune);
simMenu->addAction(dpl_sch);
simMenu->addAction(dcbias);
simMenu->addAction(showMsg);
simMenu->addAction(showNet);
2023-02-25 16:59:57 +03:00
simMenu->addAction(save_netlist);
simMenu->addAction(saveCdlNetlist);
simMenu->addAction(simSettings);
viewMenu = new QMenu(tr("&View")); // menuBar entry viewMenu
viewMenu->addAction(magAll);
2023-10-17 21:29:39 +03:00
viewMenu->addAction(magSel);
viewMenu->addAction(magOne);
viewMenu->addAction(magPlus);
viewMenu->addAction(magMinus);
viewMenu->addAction(setDiagramLimits);
viewMenu->addSeparator();
viewMenu->addAction(showGrid);
viewMenu->addSeparator();
//viewMenu->setCheckable(true);
viewMenu->addAction(viewBrowseDock);
viewMenu->addAction(viewOctaveDock);
helpMenu = new QMenu(tr("&Help")); // menuBar entry helpMenu
helpMenu->addAction(helpIndex);
//helpMenu->addAction(helpQucsIndex);
helpMenu->addAction(helpGetStart);
helpMenu->addSeparator();
2013-05-21 16:39:04 +02:00
//Fill submenu's with filenames of PDF documents
2013-05-22 11:39:26 +02:00
QDir TechnicalDir = QDir(QucsSettings.DocDir.replace('\\','/'));
2013-05-23 09:55:11 +02:00
2013-05-21 16:39:04 +02:00
if(TechnicalDir.cd("technical"))
{
helpTechnical = new QMenu(tr("&Technical Papers"));
helpMenu->addMenu(helpTechnical);
TechnicalDir.setFilter(QDir::Files);
QStringList entries = TechnicalDir.entryList();
for(int i=0;i<entries.size();i++)
{
QAction* helpTechnicalActions = new QAction(entries[i], this);
helpTechnicalActions->setObjectName ( entries[i] );
2013-05-21 16:39:04 +02:00
helpTechnicalActions->setStatusTip(tr("Open ")+entries[i]);
helpTechnicalActions->setWhatsThis(entries[i]+tr("\n\nOpen ")+entries[i]);
2015-01-10 23:15:41 +08:00
connect(helpTechnicalActions, SIGNAL(triggered()), SLOT(slotHelpTechnical()));
2013-05-21 16:39:04 +02:00
helpTechnical->addAction(helpTechnicalActions);
}
2013-05-21 16:39:04 +02:00
}
//Fill submenu's with filenames of PDF documents
2013-05-22 11:39:26 +02:00
QDir ReportDir = QDir(QucsSettings.DocDir.replace('\\','/'));
2013-05-21 16:39:04 +02:00
if(ReportDir.cd("report"))
{
helpReport = new QMenu(tr("Technical &Reports"));
helpMenu->addMenu(helpReport);
ReportDir.setFilter(QDir::Files);
QStringList entries = ReportDir.entryList();
for(int i=0;i<entries.size();i++)
{
QAction* helpReportActions = new QAction(entries[i], this);
helpReportActions->setObjectName ( entries[i] );
2013-05-21 16:39:04 +02:00
helpReportActions->setStatusTip(tr("Open ")+entries[i]);
helpReportActions->setWhatsThis(entries[i]+tr("\n\nOpen ")+entries[i]);
2015-01-10 23:15:41 +08:00
connect(helpReportActions, SIGNAL(triggered()), SLOT(slotHelpReport()));
2013-05-21 16:39:04 +02:00
helpReport->addAction(helpReportActions);
}
}
//Fill submenu's with filenames of PDF documents
2013-05-22 11:39:26 +02:00
QDir TutorialDir = QDir(QucsSettings.DocDir.replace('\\','/'));
2013-05-21 16:39:04 +02:00
if(TutorialDir.cd("tutorial"))
{
helpTutorial = new QMenu(tr("T&utorials"));
helpMenu->addMenu(helpTutorial);
TutorialDir.setFilter(QDir::Files);
QStringList entries = TutorialDir.entryList();
for(int i=0;i<entries.size();i++)
{
QAction* helpTutorialActions = new QAction(entries[i], this);
helpTutorialActions->setObjectName ( entries[i] );
2013-05-21 16:39:04 +02:00
helpTutorialActions->setStatusTip(tr("Open ")+entries[i]);
helpTutorialActions->setWhatsThis(entries[i]+tr("\n\nOpen ")+entries[i]);
2015-01-10 23:15:41 +08:00
connect(helpTutorialActions, SIGNAL(triggered()), SLOT(slotHelpTutorial()));
2013-05-21 16:39:04 +02:00
helpTutorial->addAction(helpTutorialActions);
}
}
helpMenu->addSeparator();
helpMenu->addAction(helpAboutApp);
helpMenu->addAction(helpAboutQt);
2013-05-21 16:39:04 +02:00
menuBar()->addMenu(fileMenu);
menuBar()->addMenu(editMenu);
menuBar()->addMenu(alignMenu);
menuBar()->addMenu(insMenu);
menuBar()->addMenu(projMenu);
menuBar()->addMenu(toolMenu);
menuBar()->addMenu(simMenu);
menuBar()->addMenu(viewMenu);
menuBar()->addSeparator();
menuBar()->addMenu(helpMenu);
2006-03-28 06:10:52 +00:00
}
2006-04-10 06:12:35 +00:00
// ----------------------------------------------------------
2006-03-28 06:10:52 +00:00
void QucsApp::initToolBar()
{
fileToolbar = new QToolBar(tr("File"));
this->addToolBar(fileToolbar);
fileToolbar->addAction(fileNew);
fileToolbar->addAction(textNew);
2024-06-15 17:12:14 +03:00
fileToolbar->addAction(symNew);
fileToolbar->addAction(fileOpen);
fileToolbar->addAction(fileSave);
fileToolbar->addAction(fileSaveAll);
fileToolbar->addAction(fileClose);
fileToolbar->addAction(filePrint);
editToolbar = new QToolBar(tr("Edit"));
this->addToolBar(editToolbar);
editToolbar->addAction(editCut);
editToolbar->addAction(editCopy);
editToolbar->addAction(editPaste);
editToolbar->addAction(editDelete);
editToolbar->addAction(undo);
editToolbar->addAction(redo);
viewToolbar = new QToolBar(tr("View"));
this->addToolBar(viewToolbar);
viewToolbar->addAction(magAll);
2023-10-17 21:29:39 +03:00
viewToolbar->addAction(magSel);
viewToolbar->addAction(magOne);
viewToolbar->addAction(magPlus);
viewToolbar->addAction(magMinus);
workToolbar = new QToolBar(tr("Work"));
this->addToolBar(workToolbar);
workToolbar->addAction(select);
workToolbar->addAction(editActivate);
workToolbar->addAction(editMirror);
workToolbar->addAction(editMirrorY);
workToolbar->addAction(editRotate);
workToolbar->addAction(intoH);
workToolbar->addAction(popH);
workToolbar->addAction(insWire);
workToolbar->addAction(insLabel);
workToolbar->addAction(insEquation);
workToolbar->addAction(insGround);
workToolbar->addAction(insPort);
2023-06-07 01:45:39 +03:00
//workToolbar->addSeparator(); // <<<=======================
simulateToolbar = new QToolBar(tr("Simulate"));
this->addToolBar(simulateToolbar);
simulateToolbar->addWidget(reinterpret_cast<QWidget *>(simulatorsCombobox));
simulateToolbar->addAction(simulate);
simulateToolbar->addAction(tune);
2023-06-07 01:45:39 +03:00
simulateToolbar->addAction(dpl_sch);
simulateToolbar->addAction(setMarker);
simulateToolbar->addAction(setDiagramLimits);
2006-03-28 06:10:52 +00:00
}
2006-04-10 06:12:35 +00:00
// ----------------------------------------------------------
2006-03-28 06:10:52 +00:00
void QucsApp::initStatusBar()
{
2024-01-24 11:34:49 +03:00
DiagramValuesLabel = new QLabel("", statusBar());
statusBar()->addPermanentWidget(DiagramValuesLabel, 0);
2006-03-28 06:10:52 +00:00
// To reserve enough space, insert the longest text and rewrite it afterwards.
//SimulatorLabel = new QLabel(spicecompat::getDefaultSimulatorName(QucsSettings.DefaultSimulator));
//statusBar()->addPermanentWidget(SimulatorLabel, 0);
2006-04-10 06:12:35 +00:00
WarningLabel = new QLabel(tr("no warnings"), statusBar());
2024-01-24 11:47:50 +03:00
statusBar()->addWidget(WarningLabel, 0);
2006-04-10 06:12:35 +00:00
PositionLabel = new QLabel("0 : 0", statusBar());
#ifndef __APPLE__
2006-04-10 06:12:35 +00:00
PositionLabel->setAlignment(Qt::AlignRight);
#endif
statusBar()->addPermanentWidget(PositionLabel, 0);
2006-04-10 06:12:35 +00:00
statusBar()->showMessage(tr("Ready."), 2000);
2006-03-28 06:10:52 +00:00
}
2006-04-10 06:12:35 +00:00
// ----------------------------------------------------------
2006-03-28 06:10:52 +00:00
void QucsApp::slotShowWarnings()
{
static int ResultState = 0;
if(ResultState == 0) {
QFont f = WarningLabel->font();
f.setWeight(QFont::DemiBold);
WarningLabel->setFont(f);
WarningLabel->setText(tr("Warnings in last simulation! Press F5"));
}
ResultState++;
if(ResultState & 1)
misc::setWidgetForegroundColor(WarningLabel,Qt::red);
2006-03-28 06:10:52 +00:00
else
misc::setWidgetForegroundColor(WarningLabel,Qt::black);
2006-03-28 06:10:52 +00:00
if(ResultState < 9)
QTimer::singleShot(500, this, SLOT(slotShowWarnings()));
else
2006-03-28 06:10:52 +00:00
ResultState = 0;
}
2006-04-10 06:12:35 +00:00
// ----------------------------------------------------------
2006-03-28 06:10:52 +00:00
void QucsApp::slotResetWarnings()
{
QFont f = WarningLabel->font(); // reset warning label
f.setWeight(QFont::Normal);
WarningLabel->setFont(f);
misc::setWidgetForegroundColor(WarningLabel,Qt::black);
2006-03-28 06:10:52 +00:00
WarningLabel->setText(tr("no warnings"));
}
2006-04-10 06:12:35 +00:00
// ----------------------------------------------------------
2024-01-24 11:34:49 +03:00
void QucsApp::printCursorPosition(int x, int y, QString text)
2006-04-10 06:12:35 +00:00
{
PositionLabel->setText(QString::number(x)+" : "+QString::number(y));
PositionLabel->setMinimumWidth(PositionLabel->width());
2024-01-24 11:34:49 +03:00
DiagramValuesLabel->setText(text);
2006-04-10 06:12:35 +00:00
}
2014-12-10 16:47:32 +08:00
// --------------------------------------------------------------
// called by document, update undo state
void QucsApp::slotUpdateUndo(bool isEnabled)
{
undo->setEnabled(isEnabled);
}
// --------------------------------------------------------------
// called by document, update redo state
void QucsApp::slotUpdateRedo(bool isEnabled)
{
redo->setEnabled(isEnabled);
}
2006-07-17 06:02:57 +00:00
// ----------------------------------------------------------
// turn Browse Dock Window on or off
2006-07-17 06:02:57 +00:00
void QucsApp::slotViewBrowseDock(bool toggle)
{
dock->setVisible(toggle);
2006-07-17 06:02:57 +00:00
}
2006-03-28 06:10:52 +00:00
2006-07-17 06:02:57 +00:00
// ----------------------------------------------------------
void QucsApp::slotToggleDock(bool on)
{
viewBrowseDock->blockSignals(true);
viewBrowseDock->setChecked(on);
2006-07-17 06:02:57 +00:00
viewBrowseDock->blockSignals(false);
2006-03-28 06:10:52 +00:00
}
2006-04-10 06:12:35 +00:00
// ----------------------------------------------------------
// turn Octave Dock Window on or off
void QucsApp::slotViewOctaveDock(bool toggle)
{
octDock->setVisible(toggle);
if (toggle) {
octave->startOctave();
}
}
// ----------------------------------------------------------
void QucsApp::slotToggleOctave(bool on)
{
viewOctaveDock->blockSignals(true);
viewOctaveDock->setChecked(on);
viewOctaveDock->blockSignals(false);
}