qucs_s/qucs/qucs_init.cpp

867 lines
34 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
#include <qaction.h>
#include <qaccel.h>
#include <qmenubar.h>
#include <qstatusbar.h>
#include <qlabel.h>
#include <qtimer.h>
#include <qimage.h>
#include <qwhatsthis.h>
#include <qmessagebox.h>
#include "main.h"
#include "qucs.h"
2006-04-10 06:12:35 +00:00
// ----------------------------------------------------------
2006-03-28 06:10:52 +00:00
// initializes all QActions of the application
void QucsApp::initActions()
{
// to connect more than one key to an action
mainAccel = new QAccel(this);
activeAction = 0; // no active action
// note: first argument of QAction() for backward compatibility Qt < 3.2
fileNew = new QAction("New",
2006-03-28 06:10:52 +00:00
QIconSet(QImage(QucsSettings.BitmapDir + "filenew.png")),
tr("&New"), CTRL+Key_N, this);
fileNew->setStatusTip(tr("Creates a new document"));
fileNew->setWhatsThis(
tr("New\n\nCreates a new schematic or data display document"));
connect(fileNew, SIGNAL(activated()), SLOT(slotFileNew()));
textNew = new QAction("New Text",
2006-03-28 06:10:52 +00:00
QIconSet(QImage(QucsSettings.BitmapDir + "textnew.png")),
2006-05-22 06:01:55 +00:00
tr("New &Text"), CTRL+SHIFT+Key_V, this);
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"));
connect(textNew, SIGNAL(activated()), SLOT(slotTextNew()));
fileOpen = new QAction("Open",
2006-03-28 06:10:52 +00:00
QIconSet(QImage(QucsSettings.BitmapDir + "fileopen.png")),
tr("&Open..."), CTRL+Key_O, this);
fileOpen->setStatusTip(tr("Opens an existing document"));
fileOpen->setWhatsThis(tr("Open File\n\nOpens an existing document"));
connect(fileOpen, SIGNAL(activated()), SLOT(slotFileOpen()));
fileSave = new QAction("Save",
2006-03-28 06:10:52 +00:00
QIconSet(QImage(QucsSettings.BitmapDir + "filesave.png")),
tr("&Save"), CTRL+Key_S, this);
fileSave->setStatusTip(tr("Saves the current document"));
fileSave->setWhatsThis(tr("Save File\n\nSaves the current document"));
connect(fileSave, SIGNAL(activated()), SLOT(slotFileSave()));
fileSaveAs = new QAction("Save as...",
tr("Save as..."), CTRL+Key_Minus, this);
2006-03-28 06:10:52 +00:00
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"));
connect(fileSaveAs, SIGNAL(activated()), SLOT(slotFileSaveAs()));
fileSaveAll = new QAction("Save All",
2006-03-28 06:10:52 +00:00
QIconSet(QImage(QucsSettings.BitmapDir + "filesaveall.png")),
tr("Save &All"), CTRL+Key_Plus, this);
fileSaveAll->setStatusTip(tr("Saves all open documents"));
fileSaveAll->setWhatsThis(
tr("Save All Files\n\nSaves all open documents"));
connect(fileSaveAll, SIGNAL(activated()), SLOT(slotFileSaveAll()));
fileClose = new QAction("Close",
2006-03-28 06:10:52 +00:00
QIconSet(QImage(QucsSettings.BitmapDir + "fileclose.png")),
tr("&Close"), CTRL+Key_W, this);
fileClose->setStatusTip(tr("Closes the current document"));
fileClose->setWhatsThis(
tr("Close File\n\nCloses the current document"));
connect(fileClose, SIGNAL(activated()), SLOT(slotFileClose()));
symEdit = new QAction("Edit Circuit Symbol",
tr("&Edit Circuit Symbol"), Key_F9, this);
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"));
connect(symEdit, SIGNAL(activated()), SLOT(slotSymbolEdit()));
fileSettings = new QAction("Document Settings...",
2006-04-18 06:03:52 +00:00
tr("&Document Settings..."), CTRL+Key_Period, this);
2006-03-28 06:10:52 +00:00
fileSettings->setWhatsThis(
tr("Settings\n\nSets properties of the file"));
connect(fileSettings, SIGNAL(activated()), SLOT(slotFileSettings()));
filePrint = new QAction("Print...",
2006-03-28 06:10:52 +00:00
QIconSet(QImage(QucsSettings.BitmapDir + "fileprint.png")),
tr("&Print..."), CTRL+Key_P, this);
filePrint->setStatusTip(tr("Prints the current document"));
filePrint->setWhatsThis(
tr("Print File\n\nPrints the current document"));
connect(filePrint, SIGNAL(activated()), SLOT(slotFilePrint()));
filePrintSel = new QAction("Print Selection...",
2006-05-22 06:01:55 +00:00
tr("Print Selection..."), CTRL+SHIFT+Key_P, this);
2006-03-28 06:10:52 +00:00
filePrintSel->setWhatsThis(
tr("Print Selected Elements\n\n"
"Prints selected elements of the current document"));
connect(filePrintSel, SIGNAL(activated()), SLOT(slotFilePrintSelected()));
fileQuit = new QAction("Exit", tr("E&xit"), CTRL+Key_Q, this);
2006-03-28 06:10:52 +00:00
fileQuit->setStatusTip(tr("Quits the application"));
fileQuit->setWhatsThis(tr("Exit\n\nQuits the application"));
connect(fileQuit, SIGNAL(activated()), SLOT(slotFileQuit()));
applSettings = new QAction("Application Settings...",
2006-03-28 06:10:52 +00:00
tr("Application Settings..."), CTRL+Key_Comma, this);
applSettings->setWhatsThis(
tr("Qucs Settings\n\nSets properties of the application"));
connect(applSettings, SIGNAL(activated()), SLOT(slotApplSettings()));
alignTop = new QAction("Align top", tr("Align top"), CTRL+Key_T, this);
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"));
connect(alignTop, SIGNAL(activated()), SLOT(slotAlignTop()));
alignBottom = new QAction("Align bottom", tr("Align bottom"), 0, this);
2006-03-28 06:10:52 +00:00
alignBottom->setStatusTip(tr("Align bottom selected elements"));
alignBottom->setWhatsThis(
tr("Align bottom\n\nAlign selected elements to their lower edge"));
connect(alignBottom, SIGNAL(activated()), SLOT(slotAlignBottom()));
alignLeft = new QAction("Align left", tr("Align left"), 0, this);
2006-03-28 06:10:52 +00:00
alignLeft->setStatusTip(tr("Align left selected elements"));
alignLeft->setWhatsThis(
tr("Align left\n\nAlign selected elements to their left edge"));
connect(alignLeft, SIGNAL(activated()), SLOT(slotAlignLeft()));
alignRight = new QAction("Align right", tr("Align right"), 0, this);
2006-03-28 06:10:52 +00:00
alignRight->setStatusTip(tr("Align right selected elements"));
alignRight->setWhatsThis(
tr("Align right\n\nAlign selected elements to their right edge"));
connect(alignRight, SIGNAL(activated()), SLOT(slotAlignRight()));
distrHor = new QAction("Distribute horizontally",
tr("Distribute horizontally"), 0, this);
2006-03-28 06:10:52 +00:00
distrHor->setStatusTip(tr("Distribute equally horizontally"));
distrHor->setWhatsThis(
tr("Distribute horizontally\n\n"
"Distribute horizontally selected elements"));
connect(distrHor, SIGNAL(activated()), SLOT(slotDistribHoriz()));
distrVert = new QAction("Distribute vertically",
2006-03-28 06:10:52 +00:00
tr("Distribute vertically"), 0, this);
distrVert->setStatusTip(tr("Distribute equally vertically"));
distrVert->setWhatsThis(
tr("Distribute vertically\n\n"
"Distribute vertically selected elements"));
connect(distrVert, SIGNAL(activated()), SLOT(slotDistribVert()));
onGrid = new QAction("Set on Grid", tr("Set on Grid"), CTRL+Key_U, this);
2006-03-28 06:10:52 +00:00
onGrid->setWhatsThis(
tr("Set on Grid\n\nSets selected elements on grid"));
onGrid->setToggleAction(true);
connect(onGrid, SIGNAL(toggled(bool)), SLOT(slotOnGrid(bool)));
moveText = new QAction("Move Component Text",
tr("Move Component Text"), CTRL+Key_K, this);
2006-03-28 06:10:52 +00:00
moveText->setWhatsThis(
tr("Move Component Text\n\nMoves the property text of components"));
moveText->setToggleAction(true);
connect(moveText, SIGNAL(toggled(bool)), SLOT(slotMoveText(bool)));
changeProps = new QAction("Replace...", tr("Replace..."), Key_F7, this);
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"));
2006-03-28 06:10:52 +00:00
connect(changeProps, SIGNAL(activated()), SLOT(slotChangeProps()));
editCut = new QAction("Cut",
2006-03-28 06:10:52 +00:00
QIconSet(QImage(QucsSettings.BitmapDir + "editcut.png")),
tr("Cu&t"), CTRL+Key_X, this);
editCut->setStatusTip(
2006-04-18 06:03:52 +00:00
tr("Cuts out the selection and puts it into the clipboard"));
2006-03-28 06:10:52 +00:00
editCut->setWhatsThis(
2006-04-18 06:03:52 +00:00
tr("Cut\n\nCuts out the selection and puts it into the clipboard"));
2006-03-28 06:10:52 +00:00
connect(editCut, SIGNAL(activated()), SLOT(slotEditCut()));
editCopy = new QAction("Copy",
2006-03-28 06:10:52 +00:00
QIconSet(QImage(QucsSettings.BitmapDir + "editcopy.png")),
tr("&Copy"), CTRL+Key_C, this);
editCopy->setStatusTip(
2006-04-18 06:03:52 +00:00
tr("Copies the selection into the clipboard"));
2006-03-28 06:10:52 +00:00
editCopy->setWhatsThis(
2006-04-18 06:03:52 +00:00
tr("Copy\n\nCopies the selection into the clipboard"));
2006-03-28 06:10:52 +00:00
connect(editCopy, SIGNAL(activated()), SLOT(slotEditCopy()));
editPaste = new QAction("Paste",
2006-03-28 06:10:52 +00:00
QIconSet(QImage(QucsSettings.BitmapDir + "editpaste.png")),
tr("&Paste"), CTRL+Key_V, this);
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->setToggleAction(true);
connect(editPaste, SIGNAL(toggled(bool)), SLOT(slotEditPaste(bool)));
editDelete = new QAction("Delete",
2006-03-28 06:10:52 +00:00
QIconSet(QImage(QucsSettings.BitmapDir + "editdelete.png")),
tr("&Delete"), Key_Delete, this);
editDelete->setStatusTip(tr("Deletes the selected components"));
editDelete->setWhatsThis(
tr("Delete\n\nDeletes the selected components"));
editDelete->setToggleAction(true);
connect(editDelete, SIGNAL(toggled(bool)), SLOT(slotEditDelete(bool)));
editFind = new QAction("Find...", tr("Find..."), CTRL+Key_F, this);
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"));
connect(editFind, SIGNAL(activated()), SLOT(slotEditFind()));
editFindAgain = new QAction("Find Again", tr("Find Again"), Key_F3, this);
2006-04-10 06:12:35 +00:00
editFindAgain->setStatusTip(tr("Find same text again"));
editFindAgain->setWhatsThis(
tr("Find\n\nSearches for the same piece of text again"));
connect(editFindAgain, SIGNAL(activated()), SLOT(slotEditFindAgain()));
2006-03-28 06:10:52 +00:00
// to ease usage with notebooks, backspace can also be used to delete
mainAccel->connectItem(mainAccel->insertItem(Key_Backspace),
editDelete, SLOT(toggle()) );
// cursor left/right to move marker on a graph
mainAccel->connectItem(mainAccel->insertItem(Key_Left),
this, SLOT(slotCursorLeft()));
mainAccel->connectItem(mainAccel->insertItem(Key_Right),
this, SLOT(slotCursorRight()));
mainAccel->connectItem(mainAccel->insertItem(Key_Up),
this, SLOT(slotCursorUp()));
mainAccel->connectItem(mainAccel->insertItem(Key_Down),
this, SLOT(slotCursorDown()));
mainAccel->connectItem(mainAccel->insertItem(Key_Tab),
this, SLOT(slotNextTab()));
undo = new QAction("Undo",
2006-03-28 06:10:52 +00:00
QIconSet(QImage(QucsSettings.BitmapDir + "undo.png")),
tr("&Undo"), CTRL+Key_Z, this);
undo->setStatusTip(tr("Undoes the last command"));
undo->setWhatsThis(tr("Undo\n\nMakes the last action undone"));
connect(undo, SIGNAL(activated()), SLOT(slotEditUndo()));
redo = new QAction("Redo",
2006-03-28 06:10:52 +00:00
QIconSet(QImage(QucsSettings.BitmapDir + "redo.png")),
tr("&Redo"), CTRL+Key_Y, this);
redo->setStatusTip(tr("Redoes the last command"));
redo->setWhatsThis(tr("Redo\n\nRepeats the last action once more"));
connect(redo, SIGNAL(activated()), SLOT(slotEditRedo()));
projNew = new QAction("New Project...",
tr("&New Project..."), CTRL+SHIFT+Key_N, this);
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"));
connect(projNew, SIGNAL(activated()), SLOT(slotProjNewButt()));
projOpen = new QAction("Open Project...", tr("&Open Project..."),
2006-03-28 06:10:52 +00:00
CTRL+SHIFT+Key_O, this);
projOpen->setWhatsThis(
tr("Open Project\n\nOpens an existing project"));
connect(projOpen, SIGNAL(activated()), SLOT(slotMenuOpenProject()));
projDel = new QAction("Delete Project...",
tr("&Delete Project..."), CTRL+SHIFT+Key_D, this);
2006-03-28 06:10:52 +00:00
projDel->setWhatsThis(
tr("Delete Project\n\nDeletes an existing project"));
connect(projDel, SIGNAL(activated()), SLOT(slotMenuDelProject()));
projClose = new QAction("Close Project",
tr("&Close Project"), CTRL+SHIFT+Key_W, this);
2006-03-28 06:10:52 +00:00
projClose->setWhatsThis(
tr("Close Project\n\nCloses the current project"));
connect(projClose, SIGNAL(activated()), SLOT(slotMenuCloseProject()));
addToProj = new QAction("Add Files to Project...",
tr("&Add Files to Project..."), CTRL+SHIFT+Key_A, this);
2006-03-28 06:10:52 +00:00
addToProj->setStatusTip(tr("Copies files to project directory"));
addToProj->setWhatsThis(
tr("Add Files to Project\n\nCopies files to project directory"));
connect(addToProj, SIGNAL(activated()), SLOT(slotAddToProject()));
2006-06-06 06:14:17 +00:00
createLib = new QAction("Create Library...",
tr("Create &Library..."), CTRL+SHIFT+Key_L, this);
createLib->setStatusTip(tr("Create Library from Subcircuits"));
createLib->setWhatsThis(
tr("Create Library\n\nCreate Library from Subcircuits"));
connect(createLib, SIGNAL(activated()), SLOT(slotCreateLib()));
magAll = new QAction("View All",
2006-03-28 06:10:52 +00:00
QIconSet(QImage(QucsSettings.BitmapDir + "viewmagfit.png")),
tr("View All"), Key_0, this);
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"));
connect(magAll, SIGNAL(activated()), SLOT(slotShowAll()));
magOne = new QAction("View 1:1",
2006-03-28 06:10:52 +00:00
QIconSet(QImage(QucsSettings.BitmapDir + "viewmag1.png")),
tr("View 1:1"), Key_1, this);
magOne->setStatusTip(tr("Views without magnification"));
magOne->setWhatsThis(
tr("View 1:1\n\nShows the page content without magnification"));
connect(magOne, SIGNAL(activated()), SLOT(slotShowOne()));
magPlus = new QAction("Zoom in",
2006-03-28 06:10:52 +00:00
QIconSet(QImage(QucsSettings.BitmapDir + "viewmag+.png")),
tr("Zoom in"), Key_Plus, this);
magPlus->setStatusTip(tr("Zooms into the current view"));
magPlus->setWhatsThis(tr("Zoom in\n\nZooms the current view"));
magPlus->setToggleAction(true);
connect(magPlus, SIGNAL(toggled(bool)), SLOT(slotZoomIn(bool)));
magMinus = new QAction("Zoom out",
2006-03-28 06:10:52 +00:00
QIconSet(QImage(QucsSettings.BitmapDir + "viewmag-.png")),
tr("Zoom out"), Key_Minus, this);
magMinus->setStatusTip(tr("Zooms out the current view"));
magMinus->setWhatsThis(tr("Zoom out\n\nZooms out the current view"));
connect(magMinus, SIGNAL(activated()), SLOT(slotZoomOut()));
select = new QAction("Select",
2006-03-28 06:10:52 +00:00
QIconSet(QImage(QucsSettings.BitmapDir + "pointer.png")),
tr("Select"), Key_Escape, this);
2006-04-18 06:03:52 +00:00
select->setStatusTip(tr("Activate select mode"));
select->setWhatsThis(tr("Select\n\nActivates select mode"));
2006-03-28 06:10:52 +00:00
select->setToggleAction(true);
connect(select, SIGNAL(toggled(bool)), SLOT(slotSelect(bool)));
selectAll = new QAction("Select All", tr("Select All"), CTRL+Key_A, this);
2006-03-28 06:10:52 +00:00
selectAll->setStatusTip(tr("Selects all elements"));
selectAll->setWhatsThis(
tr("Select All\n\nSelects all elements of the document"));
connect(selectAll, SIGNAL(activated()), SLOT(slotSelectAll()));
2006-05-22 06:01:55 +00:00
selectMarker = new QAction("Select Markers", tr("Select Markers"), CTRL+SHIFT+Key_M, this);
selectMarker->setStatusTip(tr("Selects all markers"));
selectMarker->setWhatsThis(
tr("Select Markers\n\nSelects all diagram markers of the document"));
connect(selectMarker, SIGNAL(activated()), SLOT(slotSelectMarker()));
editRotate = new QAction("Rotate",
2006-03-28 06:10:52 +00:00
QIconSet(QImage(QucsSettings.BitmapDir + "rotate_ccw.png")),
tr("Rotate"), CTRL+Key_R, this);
editRotate->setStatusTip(tr("Rotates the selected component by 90<39>"));
editRotate->setWhatsThis(
tr("Rotate\n\nRotates the selected component by 90<39> counter-clockwise"));
editRotate->setToggleAction(true);
connect(editRotate, SIGNAL(toggled(bool)), SLOT(slotEditRotate(bool)));
editMirror = new QAction("Mirror about X Axis",
2006-03-28 06:10:52 +00:00
QIconSet(QImage(QucsSettings.BitmapDir + "mirror.png")),
tr("Mirror about X Axis"), CTRL+Key_J, this);
editMirror->setWhatsThis(
tr("Mirror about X Axis\n\nMirrors the selected item about X Axis"));
editMirror->setToggleAction(true);
connect(editMirror, SIGNAL(toggled(bool)), SLOT(slotEditMirrorX(bool)));
editMirrorY = new QAction("Mirror about Y Axis",
2006-03-28 06:10:52 +00:00
QIconSet(QImage(QucsSettings.BitmapDir + "mirrory.png")),
tr("Mirror about Y Axis"), CTRL+Key_M, this);
editMirrorY->setWhatsThis(
tr("Mirror about Y Axis\n\nMirrors the selected item about Y Axis"));
editMirrorY->setToggleAction(true);
connect(editMirrorY, SIGNAL(toggled(bool)), SLOT(slotEditMirrorY(bool)));
intoH = new QAction("Go into Subcircuit",
2006-03-28 06:10:52 +00:00
QIconSet(QImage(QucsSettings.BitmapDir + "bottom.png")),
tr("Go into Subcircuit"), CTRL+Key_I, this);
intoH->setWhatsThis(
tr("Go into Subcircuit\n\nGoes inside the selected subcircuit"));
connect(intoH, SIGNAL(activated()), SLOT(slotIntoHierarchy()));
popH = new QAction("Pop out",
2006-03-28 06:10:52 +00:00
QIconSet(QImage(QucsSettings.BitmapDir + "top.png")),
tr("Pop out"), CTRL+Key_H, this);
popH->setStatusTip(tr("Pop outside subcircuit"));
popH->setWhatsThis(
tr("Pop out\n\nGoes up one hierarchy level, i.e. leaves subcircuit"));
connect(popH, SIGNAL(activated()), SLOT(slotPopHierarchy()));
popH->setEnabled(false); // only enabled if useful !!!!
editActivate = new QAction("Deactivate/Activate",
2006-03-28 06:10:52 +00:00
QIconSet(QImage(QucsSettings.BitmapDir + "deactiv.png")),
tr("Deactivate/Activate"), CTRL+Key_D, this);
editActivate->setStatusTip(
2006-05-05 06:00:05 +00:00
tr("Deactivate/Activate selected components"));
2006-03-28 06:10:52 +00:00
editActivate->setWhatsThis(
2006-05-05 06:00:05 +00:00
tr("Deactivate/Activate\n\nDeactivate/Activate the selected components"));
2006-03-28 06:10:52 +00:00
editActivate->setToggleAction(true);
connect(editActivate, SIGNAL(toggled(bool)), SLOT(slotEditActivate(bool)));
insEquation = new QAction("Insert Equation",
2006-03-28 06:10:52 +00:00
QIconSet(QImage(QucsSettings.BitmapDir + "equation.png")),
2006-04-18 06:03:52 +00:00
tr("Insert Equation"), CTRL+Key_Less, this);
2006-03-28 06:10:52 +00:00
insEquation->setWhatsThis(
tr("Insert Equation\n\nInserts a user defined equation"));
insEquation->setToggleAction(true);
connect(insEquation, SIGNAL(toggled(bool)), SLOT(slotInsertEquation(bool)));
insGround = new QAction("Insert Ground",
2006-03-28 06:10:52 +00:00
QIconSet(QImage(QucsSettings.BitmapDir + "ground.png")),
tr("Insert Ground"), CTRL+Key_G, this);
insGround->setWhatsThis(
tr("Insert Ground\n\nInserts a ground symbol"));
insGround->setToggleAction(true);
connect(insGround, SIGNAL(toggled(bool)), SLOT(slotInsertGround(bool)));
insPort = new QAction("Insert Port",
2006-03-28 06:10:52 +00:00
QIconSet(QImage(QucsSettings.BitmapDir + "port.png")),
tr("Insert Port"), 0, this);
insPort->setWhatsThis(tr("Insert Port\n\nInserts a port symbol"));
insPort->setToggleAction(true);
connect(insPort, SIGNAL(toggled(bool)), SLOT(slotInsertPort(bool)));
insWire = new QAction("Wire",
2006-03-28 06:10:52 +00:00
QIconSet(QImage(QucsSettings.BitmapDir + "wire.png")),
tr("Wire"), CTRL+Key_E, this);
insWire->setWhatsThis(tr("Wire\n\nInserts a wire"));
insWire->setToggleAction(true);
connect(insWire, SIGNAL(toggled(bool)), SLOT(slotSetWire(bool)));
insLabel = new QAction("Wire Label",
2006-03-28 06:10:52 +00:00
QIconSet(QImage(QucsSettings.BitmapDir + "nodename.png")),
tr("Wire Label"), CTRL+Key_L, this);
insLabel->setStatusTip(tr("Inserts a wire or pin label"));
insLabel->setWhatsThis(
tr("Wire Label\n\nInserts a wire or pin label"));
insLabel->setToggleAction(true);
connect(insLabel, SIGNAL(toggled(bool)), SLOT(slotInsertLabel(bool)));
insEntity = new QAction("VHDL entity",
tr("VHDL entity"), CTRL+Key_Space, this);
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"));
2006-04-18 06:03:52 +00:00
connect(insEntity, SIGNAL(activated()), SLOT(slotInsertEntity()));
callEditor = new QAction("Text Editor", tr("Text Editor"), CTRL+Key_1, this);
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"));
connect(callEditor, SIGNAL(activated()), SLOT(slotCallEditor()));
callFilter = new QAction("Filter synthesis",
tr("Filter synthesis"), CTRL+Key_2, this);
2006-03-28 06:10:52 +00:00
callFilter->setStatusTip(tr("Starts QucsFilter"));
callFilter->setWhatsThis(
tr("Filter synthesis\n\nStarts QucsFilter"));
connect(callFilter, SIGNAL(activated()), SLOT(slotCallFilter()));
callLine = new QAction("Line calculation",
tr("Line calculation"), CTRL+Key_3, this);
2006-03-28 06:10:52 +00:00
callLine->setStatusTip(tr("Starts QucsTrans"));
callLine->setWhatsThis(
tr("Line calculation\n\nStarts transmission line calculator"));
connect(callLine, SIGNAL(activated()), SLOT(slotCallLine()));
callLib = new QAction("Component Library",
tr("Component Library"), CTRL+Key_4, this);
2006-03-28 06:10:52 +00:00
callLib->setStatusTip(tr("Starts QucsLib"));
callLib->setWhatsThis(
tr("Component Library\n\nStarts component library program"));
connect(callLib, SIGNAL(activated()), SLOT(slotCallLibrary()));
callMatch = new QAction("Matching Circuit",
tr("Matching Circuit"), CTRL+Key_5, this);
2006-03-28 06:10:52 +00:00
callMatch->setStatusTip(tr("Creates Matching Circuit"));
callMatch->setWhatsThis(
tr("Matching Circuit\n\nDialog for Creating Matching Circuit"));
connect(callMatch, SIGNAL(activated()), SLOT(slotCallMatch()));
simulate = new QAction("Simulate",
2006-03-28 06:10:52 +00:00
QIconSet(QImage(QucsSettings.BitmapDir + "gear.png")),
tr("Simulate"), Key_F2, this);
simulate->setStatusTip(tr("Simulates the current schematic"));
simulate->setWhatsThis(
tr("Simulate\n\nSimulates the current schematic"));
connect(simulate, SIGNAL(activated()), SLOT(slotSimulate()));
dpl_sch = new QAction("View Data Display/Schematic",
2006-03-28 06:10:52 +00:00
QIconSet(QImage(QucsSettings.BitmapDir + "rebuild.png")),
tr("View Data Display/Schematic"), Key_F4, this);
dpl_sch->setStatusTip(tr("Changes to data display or schematic page"));
dpl_sch->setWhatsThis(
tr("View Data Display/Schematic\n\n")+
tr("Changes to data display or schematic page"));
connect(dpl_sch, SIGNAL(activated()), SLOT(slotToPage()));
dcbias = new QAction("Calculate DC bias",
tr("Calculate DC bias"), Key_F8, this);
2006-03-28 06:10:52 +00:00
dcbias->setStatusTip(tr("Calculates DC bias and shows it"));
dcbias->setWhatsThis(
tr("Calculate DC bias\n\nCalculates DC bias and shows it"));
connect(dcbias, SIGNAL(activated()), SLOT(slotDCbias()));
setMarker = new QAction("Set Marker on Graph",
2006-03-28 06:10:52 +00:00
QIconSet(QImage(QucsSettings.BitmapDir + "marker.png")),
tr("Set Marker on Graph"), CTRL+Key_B, this);
setMarker->setStatusTip(tr("Sets a marker on a diagram's graph"));
setMarker->setWhatsThis(
tr("Set Marker\n\nSets a marker on a diagram's graph"));
setMarker->setToggleAction(true);
connect(setMarker, SIGNAL(toggled(bool)), SLOT(slotSetMarker(bool)));
showMsg = new QAction("Show Last Messages",
tr("Show Last Messages"), Key_F5, this);
2006-03-28 06:10:52 +00:00
showMsg->setStatusTip(tr("Shows last simulation messages"));
showMsg->setWhatsThis(
tr("Show Last Messages\n\nShows the messages of the last simulation"));
connect(showMsg, SIGNAL(activated()), SLOT(slotShowLastMsg()));
showNet = new QAction("Show Last Netlist",
tr("Show Last Netlist"), Key_F6, this);
2006-03-28 06:10:52 +00:00
showNet->setStatusTip(tr("Shows last simulation netlist"));
showNet->setWhatsThis(
tr("Show Last Netlist\n\nShows the netlist of the last simulation"));
connect(showNet, SIGNAL(activated()), SLOT(slotShowLastNetlist()));
viewToolBar = new QAction("Toolbar", tr("Tool&bar"), 0, this);
2006-04-18 06:03:52 +00:00
viewToolBar->setToggleAction(true);
2006-03-28 06:10:52 +00:00
viewToolBar->setStatusTip(tr("Enables/disables the toolbar"));
viewToolBar->setWhatsThis(tr("Toolbar\n\nEnables/disables the toolbar"));
connect(viewToolBar, SIGNAL(toggled(bool)),
this, SLOT(slotViewToolBar(bool)));
viewStatusBar = new QAction("Statusbar", tr("&Statusbar"), 0, this);
2006-04-18 06:03:52 +00:00
viewStatusBar->setToggleAction(true);
2006-03-28 06:10:52 +00:00
viewStatusBar->setStatusTip(tr("Enables/disables the statusbar"));
viewStatusBar->setWhatsThis(
tr("Statusbar\n\nEnables/disables the statusbar"));
connect(viewStatusBar, SIGNAL(toggled(bool)),
this, SLOT(slotViewStatusBar(bool)));
helpIndex = new QAction("Help Index...", tr("Help Index..."), Key_F1, this);
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"));
connect(helpIndex, SIGNAL(activated()), SLOT(slotHelpIndex()));
helpGetStart = new QAction("Getting Started...",
tr("Getting Started..."), 0, this);
2006-03-28 06:10:52 +00:00
helpGetStart->setStatusTip(tr("Getting Started with Qucs"));
helpGetStart->setWhatsThis(
tr("Getting Started\n\nShort introduction into Qucs"));
connect(helpGetStart, SIGNAL(activated()), SLOT(slotGettingStarted()));
helpAboutApp = new QAction("About Qucs...", tr("&About Qucs..."), 0, this);
2006-03-28 06:10:52 +00:00
helpAboutApp->setWhatsThis(tr("About\n\nAbout the application"));
connect(helpAboutApp, SIGNAL(activated()), SLOT(slotHelpAbout()));
helpAboutQt = new QAction("About Qt...", tr("About Qt..."), 0, this);
2006-03-28 06:10:52 +00:00
helpAboutQt->setWhatsThis(tr("About Qt\n\nAbout Qt by Trolltech"));
connect(helpAboutQt, SIGNAL(activated()), SLOT(slotHelpAboutQt()));
}
2006-04-10 06:12:35 +00:00
// ----------------------------------------------------------
2006-03-28 06:10:52 +00:00
void QucsApp::initMenuBar()
{
fileMenu = new QPopupMenu(); // menuBar entry fileMenu
fileNew->addTo(fileMenu);
textNew->addTo(fileMenu);
fileOpen->addTo(fileMenu);
fileClose->addTo(fileMenu);
fileMenu->insertSeparator();
fileSave->addTo(fileMenu);
fileSaveAll->addTo(fileMenu);
fileSaveAs->addTo(fileMenu);
filePrint->addTo(fileMenu);
filePrintSel->addTo(fileMenu);
fileMenu->insertSeparator();
fileSettings->addTo(fileMenu);
symEdit->addTo(fileMenu);
fileMenu->insertSeparator();
applSettings->addTo(fileMenu);
fileMenu->insertSeparator();
fileQuit->addTo(fileMenu);
alignMenu = new QPopupMenu(); // submenu for "editMenu"
alignTop->addTo(alignMenu);
alignBottom->addTo(alignMenu);
alignLeft->addTo(alignMenu);
alignRight->addTo(alignMenu);
alignMenu->insertSeparator();
distrHor->addTo(alignMenu);
distrVert->addTo(alignMenu);
editMenu = new QPopupMenu(); // menuBar entry editMenu
undo->addTo(editMenu);
redo->addTo(editMenu);
editMenu->insertSeparator();
editCut->addTo(editMenu);
editCopy->addTo(editMenu);
editPaste->addTo(editMenu);
editDelete->addTo(editMenu);
editMenu->insertSeparator();
select->addTo(editMenu);
selectAll->addTo(editMenu);
2006-05-22 06:01:55 +00:00
selectMarker->addTo(editMenu);
2006-04-10 06:12:35 +00:00
editFind->addTo(editMenu);
editFindAgain->addTo(editMenu);
2006-05-05 06:00:05 +00:00
changeProps->addTo(editMenu);
2006-03-28 06:10:52 +00:00
editRotate->addTo(editMenu);
editMirror->addTo(editMenu);
editMirrorY->addTo(editMenu);
editActivate->addTo(editMenu);
2006-05-26 06:03:15 +00:00
editMenu->insertItem(tr("Align/Distribute"), alignMenu);
2006-03-28 06:10:52 +00:00
onGrid->addTo(editMenu);
moveText->addTo(editMenu);
editMenu->insertSeparator();
intoH->addTo(editMenu);
popH->addTo(editMenu);
insMenu = new QPopupMenu(); // menuBar entry insMenu
insWire->addTo(insMenu);
insLabel->addTo(insMenu);
insEquation->addTo(insMenu);
insGround->addTo(insMenu);
insPort->addTo(insMenu);
setMarker->addTo(insMenu);
2006-04-18 06:03:52 +00:00
insEntity->addTo(insMenu);
2006-03-28 06:10:52 +00:00
projMenu = new QPopupMenu(); // menuBar entry projMenu
projNew->addTo(projMenu);
projOpen->addTo(projMenu);
addToProj->addTo(projMenu);
projClose->addTo(projMenu);
projDel->addTo(projMenu);
2006-06-06 06:14:17 +00:00
projMenu->insertSeparator();
createLib->addTo(projMenu);
2006-03-28 06:10:52 +00:00
toolMenu = new QPopupMenu(); // menuBar entry toolMenu
callEditor->addTo(toolMenu);
callFilter->addTo(toolMenu);
callLine->addTo(toolMenu);
callLib->addTo(toolMenu);
callMatch->addTo(toolMenu);
simMenu = new QPopupMenu(); // menuBar entry simMenu
simulate->addTo(simMenu);
dpl_sch->addTo(simMenu);
dcbias->addTo(simMenu);
showMsg->addTo(simMenu);
showNet->addTo(simMenu);
viewMenu = new QPopupMenu(); // menuBar entry viewMenu
magAll->addTo(viewMenu);
magOne->addTo(viewMenu);
magPlus->addTo(viewMenu);
magMinus->addTo(viewMenu);
viewMenu->insertSeparator();
viewMenu->setCheckable(true);
viewToolBar->addTo(viewMenu);
viewStatusBar->addTo(viewMenu);
helpMenu = new QPopupMenu(); // menuBar entry helpMenu
helpIndex->addTo(helpMenu);
helpGetStart->addTo(helpMenu);
helpMenu->insertSeparator();
helpAboutApp->addTo(helpMenu);
helpAboutQt->addTo(helpMenu);
menuBar()->insertItem(tr("&File"), fileMenu); // MENUBAR CONFIGURATION
menuBar()->insertItem(tr("&Edit"), editMenu);
menuBar()->insertItem(tr("&Insert"), insMenu);
menuBar()->insertItem(tr("&Project"), projMenu);
menuBar()->insertItem(tr("&Tools"), toolMenu);
menuBar()->insertItem(tr("&Simulation"), simMenu);
menuBar()->insertItem(tr("&View"), viewMenu);
menuBar()->insertSeparator();
menuBar()->insertItem(tr("&Help"), helpMenu);
}
2006-04-10 06:12:35 +00:00
// ----------------------------------------------------------
2006-03-28 06:10:52 +00:00
void QucsApp::initToolBar()
{
fileToolbar = new QToolBar(this);
fileNew->addTo(fileToolbar);
textNew->addTo(fileToolbar);
fileOpen->addTo(fileToolbar);
fileSave->addTo(fileToolbar);
fileSaveAll->addTo(fileToolbar);
fileClose->addTo(fileToolbar);
filePrint->addTo(fileToolbar);
editToolbar = new QToolBar(this);
editCut->addTo(editToolbar);
editCopy->addTo(editToolbar);
editPaste->addTo(editToolbar);
editDelete->addTo(editToolbar);
undo->addTo(editToolbar);
redo->addTo(editToolbar);
viewToolbar = new QToolBar(this);
magAll->addTo(viewToolbar);
magOne->addTo(viewToolbar);
magPlus->addTo(viewToolbar);
magMinus->addTo(viewToolbar);
workToolbar = new QToolBar(this);
select->addTo(workToolbar);
2006-04-18 06:03:52 +00:00
editActivate->addTo(workToolbar);
2006-03-28 06:10:52 +00:00
editMirror->addTo(workToolbar);
editMirrorY->addTo(workToolbar);
editRotate->addTo(workToolbar);
intoH->addTo(workToolbar);
popH->addTo(workToolbar);
insWire->addTo(workToolbar);
insLabel->addTo(workToolbar);
insEquation->addTo(workToolbar);
insGround->addTo(workToolbar);
insPort->addTo(workToolbar);
simulate->addTo(workToolbar);
dpl_sch->addTo(workToolbar);
setMarker->addTo(workToolbar);
workToolbar->addSeparator(); // <<<=======================
QWhatsThis::whatsThisButton(workToolbar);
}
2006-04-10 06:12:35 +00:00
// ----------------------------------------------------------
2006-03-28 06:10:52 +00:00
void QucsApp::initStatusBar()
{
// To reserve enough space, insert the longest text and rewrite it afterwards.
2006-04-10 06:12:35 +00:00
WarningLabel = new QLabel(tr("no warnings"), statusBar());
2006-03-28 06:10:52 +00:00
statusBar()->addWidget(WarningLabel, 0, true);
2006-04-10 06:12:35 +00:00
PositionLabel = new QLabel("0 : 0", statusBar());
PositionLabel->setAlignment(Qt::AlignRight);
statusBar()->addWidget(PositionLabel, 0, true);
2006-03-28 06:10:52 +00:00
statusBar()->message(tr("Ready."), 2000);
}
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)
WarningLabel->setPaletteForegroundColor(Qt::red);
else
WarningLabel->setPaletteForegroundColor(Qt::black);
if(ResultState < 9)
QTimer::singleShot(500, this, SLOT(slotShowWarnings()));
else
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);
WarningLabel->setPaletteForegroundColor(Qt::black);
WarningLabel->setText(tr("no warnings"));
}
2006-04-10 06:12:35 +00:00
// ----------------------------------------------------------
2006-04-18 06:03:52 +00:00
void QucsApp::printCursorPosition(int x, int y)
2006-04-10 06:12:35 +00:00
{
PositionLabel->setText(QString::number(x)+" : "+QString::number(y));
PositionLabel->setMinimumWidth(PositionLabel->width());
}
// ----------------------------------------------------------
2006-03-28 06:10:52 +00:00
// turn Toolbar on or off
void QucsApp::slotViewToolBar(bool toggle)
{
statusBar()->message(tr("Toggle toolbar..."));
if (toggle== false) {
fileToolbar->hide();
editToolbar->hide();
viewToolbar->hide();
workToolbar->hide();
}
else {
fileToolbar->show();
editToolbar->show();
viewToolbar->show();
workToolbar->show();
}
statusBar()->message(tr("Ready."));
}
2006-04-10 06:12:35 +00:00
// ----------------------------------------------------------
2006-03-28 06:10:52 +00:00
// turn Statusbar on or off
void QucsApp::slotViewStatusBar(bool toggle)
{
statusBar()->message(tr("Toggle statusbar..."));
if (toggle == false) statusBar()->hide();
else statusBar()->show();
statusBar()->message(tr("Ready."));
}
2006-04-10 06:12:35 +00:00
// ----------------------------------------------------------
2006-03-28 06:10:52 +00:00
void QucsApp::slotHelpAbout()
{
QMessageBox::about(this, tr("About..."),
tr("Qucs Version")+" "+PACKAGE_VERSION+"\n"+
tr("Quite Universal Circuit Simulator")+"\n"+
tr("Copyright (C)")+" 2003, 2004, 2005, 2006 "+
tr("by Michael Margraf")+"\n"+
"\nThis is free software; see the source for copying conditions."
"\nThere is NO warranty; not even for MERCHANTABILITY or "
"\nFITNESS FOR A PARTICULAR PURPOSE.\n\n"+
tr("Simulator by Stefan Jahn")+"\n"+
tr("VHDL simulator 'FreeHDL' by Edwin Naroska and Marius Vollmer")+"\n"+
tr("Special thanks to Jens Flucke and Raimund Jacob")+"\n"+
tr("Many thanks to Mike Brinson for correcting the VHDL output")+"\n\n"+
tr("Translations:")+"\n"+
tr("German by Stefan Jahn")+"\n"+
tr("Polish by Dariusz Pienkowski")+"\n"+
tr("Romanian by Radu Circa")+"\n"+
tr("French by Vincent Habchi, F5RCS")+"\n"+
tr("Portuguese by Luciano Franca")+"\n"+
tr("Spanish by Jose L. Redrejo Rodriguez")+"\n"+
tr("Japanese by Toyoyuki Ishikawa")+"\n"+
tr("Italian by Giorgio Luparia and Claudio Girardi")+"\n"+
tr("Hebrew by Dotan Nahum")+"\n"+
tr("Swedish by Peter Landgren")+"\n"+
tr("Turkish by Onur and Ozgur Cobanoglu")+"\n"+
2006-04-19 06:56:21 +00:00
tr("Hungarian by Jozsef Bus")+"\n"+
tr("Russian by Igor Gorbounov"));
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::slotHelpAboutQt()
{
QMessageBox::aboutQt(this, tr("About Qt"));
}