mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Remove remains of qucs_rescodes utility
This commit is contained in:
parent
c6064c0ee7
commit
914901fd2b
@ -336,7 +336,7 @@ public:
|
||||
*distrHor, *distrVert, *selectAll, *callLib, *callMatch, *changeProps,
|
||||
*addToProj, *editFind, *insEntity, *selectMarker,
|
||||
*createLib, *importData, *graph2csv, *createPkg, *extractPkg,
|
||||
*callAtt, *callRes, *centerHor, *centerVert, *loadModule, *buildModule;
|
||||
*callAtt, *centerHor, *centerVert, *loadModule, *buildModule;
|
||||
|
||||
QAction *helpQucsIndex;
|
||||
QAction *simSettings;
|
||||
@ -385,7 +385,6 @@ public slots:
|
||||
void slotCallLibrary();
|
||||
void slotCallMatch();
|
||||
void slotCallAtt();
|
||||
void slotCallRes();
|
||||
void slotHelpIndex(); // shows a HTML docu: Help Index
|
||||
void slotHelpQucsIndex();
|
||||
void slotGettingStarted(); // shows a HTML docu: Getting started
|
||||
|
@ -839,13 +839,6 @@ void QucsApp::slotCallAtt()
|
||||
launchTool(QUCS_NAME "attenuator", "attenuator calculation",QStringList(),true);
|
||||
}
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// Is called to start the resistor color code calculation program.
|
||||
void QucsApp::slotCallRes()
|
||||
{
|
||||
launchTool("qucsrescodes", "resistor color code calculation",QStringList(),true);
|
||||
}
|
||||
|
||||
/*!
|
||||
* \brief launch an external application passing arguments
|
||||
*
|
||||
|
@ -561,13 +561,6 @@ void QucsApp::initActions()
|
||||
tr("Attenuator synthesis\n\nStarts attenuator calculation program"));
|
||||
connect(callAtt, SIGNAL(triggered()), SLOT(slotCallAtt()));
|
||||
|
||||
callRes = new QAction(tr("Resistor color codes"), this);
|
||||
callRes->setShortcut(Qt::CTRL+Qt::Key_8);
|
||||
callRes->setStatusTip(tr("Starts Qucs resistor color codes"));
|
||||
callRes->setWhatsThis(
|
||||
tr("Resistor color codes\n\nStarts standard resistor color code computation program"));
|
||||
connect(callRes, SIGNAL(triggered()), SLOT(slotCallRes()));
|
||||
|
||||
simulate = new QAction(QIcon((":/bitmaps/gear.png")), tr("Simulate"), this);
|
||||
simulate->setShortcut(Qt::Key_F2);
|
||||
simulate->setStatusTip(tr("Simulates the current schematic"));
|
||||
@ -790,7 +783,6 @@ void QucsApp::initMenuBar()
|
||||
if (QucsSettings.DefaultSimulator == spicecompat::simQucsator)
|
||||
toolMenu->addAction(callMatch);
|
||||
toolMenu->addAction(callAtt);
|
||||
toolMenu->addAction(callRes);
|
||||
toolMenu->addSeparator();
|
||||
|
||||
cmMenu = new QMenu(tr("Compact modelling"));
|
||||
|
Loading…
x
Reference in New Issue
Block a user