qucs_s/qucs/qucs.h

310 lines
11 KiB
C
Raw Normal View History

2003-10-15 21:32:36 +00:00
/***************************************************************************
2005-08-15 06:04:52 +00:00
qucs.h
--------
2006-03-28 06:10:52 +00:00
begin : Thu Aug 28 2003
2003-10-15 21:32:36 +00:00
copyright : (C) 2003 by Michael Margraf
2004-06-12 12:35:04 +00:00
email : michael.margraf@alumni.tu-berlin.de
2003-10-15 21:32:36 +00:00
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef QUCS_H
#define QUCS_H
#include <qmainwindow.h>
#include <qstring.h>
#include <qdir.h>
2004-10-31 17:55:57 +00:00
2006-03-28 06:10:52 +00:00
class QucsDoc;
class Schematic;
2004-10-31 17:55:57 +00:00
class SimMessage;
2006-03-28 06:10:52 +00:00
class MouseActions;
2006-04-10 06:12:35 +00:00
class SearchDialog;
2006-03-28 06:10:52 +00:00
class QLabel;
class QAction;
class QPrinter;
class QToolBar;
class QLineEdit;
class QComboBox;
class QTabWidget;
class QPopupMenu;
class QListBox;
class QListBoxItem;
class QListView;
class QListViewItem;
class QIconView;
class QIconViewItem;
typedef bool (Schematic::*pToggleFunc) ();
typedef void (MouseActions::*pMouseFunc) (Schematic*, QMouseEvent*);
typedef void (MouseActions::*pMouseFunc2) (Schematic*, QMouseEvent*, int, int);
2003-10-15 21:32:36 +00:00
extern QDir QucsWorkDir;
extern QDir QucsHomeDir;
2004-05-07 17:31:21 +00:00
2005-11-28 07:17:35 +00:00
2006-03-28 06:10:52 +00:00
class QucsApp : public QMainWindow {
2003-10-15 21:32:36 +00:00
Q_OBJECT
2004-05-07 17:31:21 +00:00
public:
2005-11-28 07:17:35 +00:00
QucsApp();
~QucsApp();
2003-10-15 21:32:36 +00:00
2005-11-28 07:17:35 +00:00
bool closeAllFiles();
static int testFile(const QString&);
bool gotoPage(const QString&); // to load a document
2006-03-28 06:10:52 +00:00
QucsDoc *getDoc(int No=-1);
QString ProjName; // name of the project, that is open
2003-10-15 21:32:36 +00:00
2006-03-28 06:10:52 +00:00
QLineEdit *editText; // for edit component properties on schematic
2006-04-10 06:12:35 +00:00
SearchDialog *SearchDia; // global in order to keep values
2006-03-28 06:10:52 +00:00
// current mouse methods
void (MouseActions::*MouseMoveAction) (Schematic*, QMouseEvent*);
void (MouseActions::*MousePressAction) (Schematic*, QMouseEvent*, int, int);
void (MouseActions::*MouseDoubleClickAction) (Schematic*, QMouseEvent*);
void (MouseActions::*MouseReleaseAction) (Schematic*, QMouseEvent*);
2004-05-07 17:31:21 +00:00
protected:
2005-11-28 07:17:35 +00:00
void closeEvent(QCloseEvent*);
2004-05-07 17:31:21 +00:00
public slots:
2005-11-28 07:17:35 +00:00
void slotFileNew(); // generate a new schematic in the view TabBar
2006-03-28 06:10:52 +00:00
void slotTextNew(); // generate a new text editor in the view TabBar
2005-11-28 07:17:35 +00:00
void slotFileOpen(); // open a document
void slotFileSave(); // save a document
void slotFileSaveAs(); // save a document under a different filename
void slotFileSaveAll(); // save all open documents
void slotFileClose(); // close the actual file
2006-07-03 06:02:08 +00:00
void slotSymbolEdit(); // edit the symbol for the schematic
2005-11-28 07:17:35 +00:00
void slotFileSettings();// open dialog to change file settings
void slotFilePrint(); // print the current file
2006-07-03 06:02:08 +00:00
void slotFilePrintFit();// Print and fit to page
2005-11-28 07:17:35 +00:00
void slotFileQuit(); // exits the application
void slotEditCut(); // put marked object into clipboard and delete it
void slotEditCopy(); // put the marked object into the clipboard
void slotApplSettings();// open dialog to change application settings
void slotIntoHierarchy();
void slotPopHierarchy();
void slotShowAll();
void slotShowOne();
void slotZoomOut(); // Zoom out by 2
void slotToPage();
void slotSelectComponent(QIconViewItem*);
2006-03-28 06:10:52 +00:00
void slotEditElement();
void slotPowerMatching();
void slot2PortMatching();
2005-11-28 07:17:35 +00:00
// for menu that appears by right click in content ListView
void slotShowContentMenu(QListViewItem*, const QPoint&, int);
void slotCMenuOpen();
void slotCMenuRename();
void slotCMenuDelete();
void slotCMenuDelGroup();
2004-02-21 18:38:50 +00:00
2005-11-28 07:17:35 +00:00
private slots:
void slotMenuOpenProject();
void slotOpenProject(QListBoxItem*);
void slotMenuCloseProject();
void slotSelectSubcircuit(QListViewItem*);
void slotOpenContent(QListViewItem*);
void slotSetCompView(int);
void slotProjNewButt();
void slotProjOpenButt();
void slotProjDelButt();
void slotMenuDelProject();
2006-03-28 06:10:52 +00:00
void slotChangeView(QWidget*);
2005-11-28 07:17:35 +00:00
void slotSimulate();
void slotAfterSimulation(int, SimMessage*);
void slotDCbias();
2006-03-28 06:10:52 +00:00
void slotChangePage(QString&, QString&);
2005-11-28 07:17:35 +00:00
void slotNextTab();
2006-03-28 06:10:52 +00:00
void slotHideEdit();
2003-11-06 07:39:18 +00:00
2004-12-27 18:37:29 +00:00
signals:
2005-11-28 07:17:35 +00:00
void signalKillEmAll();
2004-10-31 17:55:57 +00:00
2004-05-07 17:31:21 +00:00
public:
2006-03-28 06:10:52 +00:00
MouseActions *view;
QTabWidget *DocumentTab;
QIconView *CompComps;
2005-04-19 06:33:22 +00:00
// menu appearing by right mouse button click on content listview
QPopupMenu *ContentMenu;
2006-03-28 06:10:52 +00:00
QAction *fileNew, *textNew, *fileNewDpl, *fileOpen, *fileSave, *fileSaveAs,
2005-04-19 06:33:22 +00:00
*fileSaveAll, *fileClose, *fileSettings, *filePrint, *fileQuit,
*projNew, *projOpen, *projDel, *projClose, *applSettings,
2006-07-03 06:02:08 +00:00
*editCut, *editCopy, *magAll, *magOne, *magMinus, *filePrintFit,
2005-08-15 06:04:52 +00:00
*symEdit, *intoH, *popH, *simulate, *dpl_sch, *undo, *redo, *dcbias;
2005-04-19 06:33:22 +00:00
QAction *activeAction; // pointer to the action selected by the user
2004-04-04 15:56:10 +00:00
2004-05-07 17:31:21 +00:00
private:
2005-06-23 06:06:40 +00:00
QPrinter *Printer; // printer is global (to remember the user settings)
2004-05-07 17:31:21 +00:00
2003-10-15 21:32:36 +00:00
// ********* Widgets on the main area **********************************
2006-07-17 06:02:57 +00:00
QDockWindow *dock;
2005-06-23 06:06:40 +00:00
QTabWidget *TabView;
2003-10-15 21:32:36 +00:00
2005-06-23 06:06:40 +00:00
QListBox *Projects;
QListView *Content;
2006-03-28 06:10:52 +00:00
QListViewItem *ConSchematics, *ConSources, *ConDisplays, *ConDatasets,
*ConOthers;
2003-10-15 21:32:36 +00:00
2005-06-23 06:06:40 +00:00
QComboBox *CompChoose;
2003-10-15 21:32:36 +00:00
// ********** Properties ************************************************
2005-06-23 06:06:40 +00:00
QPtrList<QString> HierarchyHistory; // keeps track of "go into subcircuit"
2005-11-28 07:17:35 +00:00
QString QucsFileFilter;
2004-05-07 17:31:21 +00:00
2003-10-15 21:32:36 +00:00
// ********** Methods ***************************************************
2006-03-28 06:10:52 +00:00
void initView();
void initCursorMenu();
void initContentListView();
2006-07-03 06:02:08 +00:00
void printCurrentDocument(bool);
2006-03-28 06:10:52 +00:00
bool saveFile(QucsDoc *Doc=0);
2005-06-23 06:06:40 +00:00
bool saveAs();
void readProjects();
2006-03-28 06:10:52 +00:00
void readProjectFiles();
2006-07-03 06:02:08 +00:00
void openProject(const QString&, const QString&);
bool deleteProject(const QString&, const QString&);
2006-05-05 06:00:05 +00:00
void updatePortNumber(QucsDoc*, int);
2005-06-23 06:06:40 +00:00
void fillComboBox(bool);
2006-03-28 06:10:52 +00:00
void switchSchematicDoc(bool);
2005-06-23 06:06:40 +00:00
void switchEditMode(bool);
2006-03-28 06:10:52 +00:00
void changeSchematicSymbolMode(Schematic*);
2006-07-03 06:02:08 +00:00
bool deleteDirectoryContent(QDir& Dir);
2006-03-28 06:10:52 +00:00
/* **************************************************
***** The following methods are located in *****
***** "qucs_init.cpp". *****
************************************************** */
public slots:
void slotShowWarnings();
void slotResetWarnings();
2006-04-18 06:03:52 +00:00
void printCursorPosition(int, int);
2006-03-28 06:10:52 +00:00
2006-07-03 06:02:08 +00:00
private slots:
2006-07-17 06:02:57 +00:00
void slotViewToolBar(bool toggle); // toggle the toolbar
void slotViewStatusBar(bool toggle); // toggle the statusbar
void slotViewBrowseDock(bool toggle); // toggle the dock window
void slotToggleDock(bool);
2006-07-03 06:02:08 +00:00
void slotHelpAbout(); // shows an about dialog
void slotHelpAboutQt(); // shows the standard about dialog for Qt
2006-03-28 06:10:52 +00:00
private:
void initActions(); // initializes all QActions of the application
void initMenuBar(); // creates the menu_bar and inserts the menuitems
void initToolBar(); // creates the toolbars
void initStatusBar(); // setup the statusbar
2006-07-17 06:02:57 +00:00
QAction *helpAboutApp, *helpAboutQt, *viewToolBar, *viewStatusBar,
*viewBrowseDock;
2006-03-28 06:10:52 +00:00
// menus contain the items of their menubar
QPopupMenu *fileMenu, *editMenu, *insMenu, *projMenu, *simMenu, *viewMenu,
*helpMenu, *alignMenu, *toolMenu;
QToolBar *fileToolbar, *editToolbar, *viewToolbar, *workToolbar;
QAccel *mainAccel; // to set more than one key to one action
2006-04-10 06:12:35 +00:00
QLabel *WarningLabel, *PositionLabel; // labels in status bar
2006-03-28 06:10:52 +00:00
/* **************************************************
***** The following methods are located in *****
***** "qucs_actions.cpp". *****
************************************************** */
public:
void editFile(const QString&);
QAction *insWire, *insLabel, *insGround, *insPort, *insEquation, *magPlus,
*editRotate, *editMirror, *editMirrorY, *editPaste, *select,
*editActivate, *wire, *editDelete, *setMarker, *onGrid, *moveText,
*helpIndex, *helpGetStart, *callEditor, *callFilter, *callLine,
*showMsg, *showNet, *alignTop, *alignBottom, *alignLeft, *alignRight,
*distrHor, *distrVert, *selectAll, *callLib, *callMatch, *changeProps,
2006-06-06 06:14:17 +00:00
*addToProj, *editFind, *editFindAgain, *insEntity, *selectMarker,
2006-07-24 06:12:23 +00:00
*createLib, *importData, *graph2csv, *createPkg, *extractPkg,
*callAtt;
2006-03-28 06:10:52 +00:00
public slots:
void slotEditRotate(bool); // rotate the selected items
void slotEditMirrorX(bool); // mirror the selected items about X axis
void slotEditMirrorY(bool); // mirror the selected items about Y axis
void slotEditPaste(bool); // paste the clipboard into the document
void slotEditDelete(bool); // delete the selected items
void slotInsertEquation(bool);
void slotInsertGround(bool);
void slotInsertPort(bool);
2006-04-18 06:03:52 +00:00
void slotInsertEntity();
2006-03-28 06:10:52 +00:00
void slotSetWire(bool);
void slotSelect(bool);
void slotEditActivate(bool);
void slotInsertLabel(bool);
void slotSetMarker(bool);
void slotOnGrid(bool); // set selected elements on grid
void slotMoveText(bool); // move property text of components
void slotZoomIn(bool);
void slotEditUndo(); // makes the last operation undone
void slotEditRedo(); // makes the last undo undone
2006-04-10 06:12:35 +00:00
void slotEditFind(); // searches for a piece of text
void slotEditFindAgain(); // searches for the same piece of text again
2006-03-28 06:10:52 +00:00
void slotAlignTop(); // align selected elements with respect to top
void slotAlignBottom(); // align selected elements with respect to bottom
void slotAlignLeft(); // align selected elements with respect to left
void slotAlignRight(); // align selected elements with respect to right
void slotDistribHoriz();// distribute horizontally selected elements
void slotDistribVert(); // distribute vertically selected elements
void slotSelectAll();
2006-05-22 06:01:55 +00:00
void slotSelectMarker();
2006-03-28 06:10:52 +00:00
void slotShowLastMsg();
void slotShowLastNetlist();
void slotCallEditor();
void slotCallFilter();
void slotCallLine();
void slotCallLibrary();
void slotCallMatch();
2006-07-24 06:12:23 +00:00
void slotCallAtt();
2006-03-28 06:10:52 +00:00
void slotHelpIndex(); // shows a HTML docu: Help Index
void slotGettingStarted(); // shows a HTML docu: Getting started
void slotChangeProps();
void slotAddToProject();
void slotApplyCompText();
private slots:
void slotCursorLeft();
void slotCursorRight();
void slotCursorUp();
void slotCursorDown();
2006-05-08 06:13:04 +00:00
void slotResizePropEdit(const QString&);
2006-06-06 06:14:17 +00:00
void slotCreateLib();
2006-07-03 06:02:08 +00:00
void slotImportData();
void slotExportGraphAsCsv();
void slotCreatePackage();
void slotExtractPackage();
2006-03-28 06:10:52 +00:00
private:
void showHTML(const QString&);
bool performToggleAction(bool, QAction*, pToggleFunc, pMouseFunc, pMouseFunc2);
2003-10-15 21:32:36 +00:00
};
2004-10-31 17:55:57 +00:00
#endif