2003-10-15 21:32:36 +00:00
|
|
|
/***************************************************************************
|
|
|
|
qucs.h - description
|
|
|
|
-------------------
|
|
|
|
begin : Thu Aug 28 18:17:41 CEST 2003
|
|
|
|
copyright : (C) 2003 by Michael Margraf
|
|
|
|
email : margraf@mwt.ee.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. *
|
|
|
|
* *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef QUCS_H
|
|
|
|
#define QUCS_H
|
|
|
|
|
|
|
|
// include files for QT
|
|
|
|
#include <qapplication.h>
|
|
|
|
#include <qmainwindow.h>
|
|
|
|
#include <qaction.h>
|
|
|
|
#include <qmenubar.h>
|
|
|
|
#include <qpopupmenu.h>
|
|
|
|
#include <qtoolbar.h>
|
|
|
|
#include <qtoolbutton.h>
|
|
|
|
#include <qstatusbar.h>
|
|
|
|
#include <qwhatsthis.h>
|
|
|
|
#include <qstring.h>
|
|
|
|
#include <qpixmap.h>
|
|
|
|
#include <qmessagebox.h>
|
|
|
|
#include <qfiledialog.h>
|
|
|
|
#include <qprinter.h>
|
|
|
|
#include <qpainter.h>
|
|
|
|
#include <qtabbar.h>
|
|
|
|
#include <qlistbox.h>
|
|
|
|
#include <qlistview.h>
|
|
|
|
#include <qpushbutton.h>
|
|
|
|
#include <qiconview.h>
|
|
|
|
#include <qcombobox.h>
|
|
|
|
#include <qtabwidget.h>
|
|
|
|
|
|
|
|
|
|
|
|
// application specific includes
|
|
|
|
#include "qucsview.h"
|
|
|
|
#include "simmessage.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This Class is the base class for your application. It sets up the main
|
|
|
|
* window and providing a menubar, toolbar
|
|
|
|
* and statusbar. For the main view, an instance of class QucsView is
|
|
|
|
* created which creates your view.
|
|
|
|
*/
|
|
|
|
class QucsApp : public QMainWindow
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
QucsApp();
|
|
|
|
~QucsApp();
|
|
|
|
|
2004-02-21 18:38:50 +00:00
|
|
|
bool loadSettings(); // loads the settings file and restores the settings
|
|
|
|
void saveSettings(); // saves the settings in the settings file
|
|
|
|
|
2003-10-15 21:32:36 +00:00
|
|
|
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
|
|
|
|
void initView(); // setup the mainview
|
2004-02-21 18:38:50 +00:00
|
|
|
void initCursorMenu();
|
2003-10-15 21:32:36 +00:00
|
|
|
|
2003-10-28 11:44:24 +00:00
|
|
|
bool closeAllFiles();
|
2003-11-06 07:39:18 +00:00
|
|
|
int testFile(const QString& DocName);
|
2003-10-15 21:32:36 +00:00
|
|
|
|
|
|
|
|
2003-10-28 11:44:24 +00:00
|
|
|
protected:
|
|
|
|
void closeEvent(QCloseEvent* Event);
|
|
|
|
|
2003-10-15 21:32:36 +00:00
|
|
|
public slots:
|
|
|
|
void slotFileNew(); // generate a new schematic in the view TabBar
|
|
|
|
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
|
2003-10-28 11:44:24 +00:00
|
|
|
void slotFileSettings();// open dialog to change file settings
|
2003-10-15 21:32:36 +00:00
|
|
|
void slotFilePrint(); // print the actual file
|
|
|
|
void slotFileQuit(); // exits the application
|
2003-11-18 15:12:51 +00:00
|
|
|
void slotEditCut(); // put marked object into the clipboard and remove it from the document
|
2003-10-15 21:32:36 +00:00
|
|
|
void slotEditCopy(); // put the marked object into the clipboard
|
2003-11-06 07:39:18 +00:00
|
|
|
void slotEditPaste(bool on); // paste the clipboard into the document
|
2003-10-15 21:32:36 +00:00
|
|
|
void slotEditDelete(bool on); // delete the selected components
|
|
|
|
void slotEditRotate(bool on); // rotate the selected components
|
|
|
|
void slotEditMirrorX(bool on); // mirror the selected components about the X axis
|
2003-11-11 07:33:56 +00:00
|
|
|
void slotEditMirrorY(bool on); // mirror the selected components about the Y axis
|
2003-10-15 21:32:36 +00:00
|
|
|
|
|
|
|
void slotViewToolBar(bool toggle); // toggle the toolbar
|
|
|
|
void slotViewStatusBar(bool toggle); // toggle the statusbar
|
|
|
|
|
2004-01-18 14:41:45 +00:00
|
|
|
void slotHelpIndex(); // shows a HTML docu: Help Index
|
|
|
|
void slotGettingStarted(); // shows a HTML docu: Getting started
|
|
|
|
void slotHelpAbout(); // shows an about dialog
|
|
|
|
void slotHelpAboutQt(); // shows the standard about dialog for Qt
|
2003-10-15 21:32:36 +00:00
|
|
|
|
2003-11-18 15:12:51 +00:00
|
|
|
void slotIntoHierarchy();
|
|
|
|
void slotPopHierarchy();
|
2003-10-15 21:32:36 +00:00
|
|
|
|
2003-11-18 15:12:51 +00:00
|
|
|
void slotShowAll();
|
|
|
|
void slotShowOne();
|
2003-10-15 21:32:36 +00:00
|
|
|
void slotZoomIn(); // Zoom in by 2
|
|
|
|
void slotZoomOut(); // Zoom out by 2
|
2003-11-11 07:33:56 +00:00
|
|
|
void slotInsertEquation(bool on);
|
2003-10-15 21:32:36 +00:00
|
|
|
void slotInsertGround(bool on);
|
2003-11-06 07:39:18 +00:00
|
|
|
void slotInsertPort(bool on);
|
2003-10-15 21:32:36 +00:00
|
|
|
void slotSetWire(bool on);
|
|
|
|
|
2004-02-21 18:38:50 +00:00
|
|
|
// for menu that appears by right click in content ListView
|
|
|
|
void slotShowContentMenu(QListViewItem *item, const QPoint& point, int);
|
|
|
|
void slotCMenuOpen();
|
|
|
|
void slotCMenuRename();
|
|
|
|
void slotCMenuDelete();
|
|
|
|
|
2003-10-15 21:32:36 +00:00
|
|
|
// ##########################################################################################
|
|
|
|
// private slots:
|
2003-11-18 15:12:51 +00:00
|
|
|
void slotMenuOpenProject();
|
2003-10-15 21:32:36 +00:00
|
|
|
void slotOpenProject(QListBoxItem *item);
|
|
|
|
void slotSelectComponent(QIconViewItem *item);
|
|
|
|
// void slotOpenContent(QListViewItem *item, const QPoint &, int column); // Qt3.2
|
2003-11-18 15:12:51 +00:00
|
|
|
void slotSelectSubcircuit(QListViewItem *item);
|
2003-10-15 21:32:36 +00:00
|
|
|
void slotOpenContent(QListViewItem *item);
|
|
|
|
void slotSetCompView(int index);
|
|
|
|
void slotProjNewButt();
|
|
|
|
void slotProjOpenButt();
|
|
|
|
void slotProjDelButt();
|
2003-11-18 15:12:51 +00:00
|
|
|
void slotMenuDelProject();
|
2003-10-15 21:32:36 +00:00
|
|
|
void slotChangeView(int id);
|
|
|
|
void slotSimulate();
|
2003-11-18 15:12:51 +00:00
|
|
|
void slotShowLastMsg();
|
|
|
|
void slotShowLastNetlist();
|
2004-03-28 19:51:04 +00:00
|
|
|
void slotAfterSimulation(int Status, SimMessage *sim);
|
2003-10-28 11:44:24 +00:00
|
|
|
void slotChangePage();
|
2003-10-15 21:32:36 +00:00
|
|
|
void slotSelect(bool on);
|
2003-11-18 15:12:51 +00:00
|
|
|
void slotSelectAll();
|
2003-10-15 21:32:36 +00:00
|
|
|
void slotEditActivate(bool on);
|
|
|
|
void slotInsertLabel(bool on);
|
2003-11-06 07:39:18 +00:00
|
|
|
|
|
|
|
// void slotActivateCopy(bool on);
|
2003-10-15 21:32:36 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2003-11-06 07:39:18 +00:00
|
|
|
QucsView *view; // the working area with schematics, data displays etc.
|
|
|
|
QPrinter Printer; // printer global in order to remember the user settings
|
2003-10-15 21:32:36 +00:00
|
|
|
|
|
|
|
|
2003-11-18 15:12:51 +00:00
|
|
|
// menus contain the items of their menubar
|
|
|
|
QPopupMenu *fileMenu, *editMenu, *insMenu, *projMenu, *simMenu, *viewMenu, *helpMenu;
|
2004-02-21 18:38:50 +00:00
|
|
|
QPopupMenu *ContentMenu; // menu appearing by right mouse button on content listview
|
2003-10-15 21:32:36 +00:00
|
|
|
|
|
|
|
QToolBar *fileToolbar, *editToolbar, *viewToolbar, *workToolbar; // the toolbars
|
|
|
|
|
|
|
|
/** actions for the application initialized in initActions() and used to en/disable them
|
|
|
|
* according to your needs during the program */
|
|
|
|
QAction *fileNew, *fileNewDpl, *fileOpen, *fileSave, *fileSaveAs, *fileSaveAll, *fileClose;
|
2003-10-28 11:44:24 +00:00
|
|
|
QAction *fileSettings, *filePrint, *fileQuit;
|
2003-10-15 21:32:36 +00:00
|
|
|
QAction *insWire, *insLabel, *insGround, *insPort, *insEquation;
|
|
|
|
QAction *projNew, *projOpen, *projDel;
|
2003-11-18 15:12:51 +00:00
|
|
|
QAction *editCut, *editCopy, *editPaste, *undo, *redo, *magAll, *magOne, *magPlus, *magMinus;
|
|
|
|
QAction *select, *editRotate, *editMirror, *editMirrorY, *intoH, *popH, *editActivate, *wire;
|
|
|
|
QAction *editDelete, *simulate, *dpl_sch, *selectAll, *showMsg, *showNet;
|
2003-10-15 21:32:36 +00:00
|
|
|
QAction *viewToolBar, *viewStatusBar;
|
2004-01-18 14:41:45 +00:00
|
|
|
QAction *helpAboutApp, *helpAboutQt, *helpIndex, *helpGetStart;
|
2003-10-15 21:32:36 +00:00
|
|
|
|
|
|
|
QAction *activeAction; // pointer to the action selected by the user
|
|
|
|
|
|
|
|
// ********* Widgets on the main area **********************************
|
|
|
|
QTabWidget *TabView;
|
|
|
|
QTabBar *WorkView;
|
|
|
|
|
|
|
|
QListBox *Projects;
|
|
|
|
QListView *Content;
|
|
|
|
QListViewItem *ConSchematics, *ConDisplays, *ConDatasets;
|
|
|
|
|
|
|
|
QComboBox *CompChoose;
|
|
|
|
QIconView *CompComps;
|
|
|
|
|
|
|
|
|
|
|
|
// ********** Properties ************************************************
|
|
|
|
QString ProjName; // name of the project, that is open
|
2003-11-18 15:12:51 +00:00
|
|
|
QPtrList<QString> HierarchyHistory; // keeps track of the "go into subcircuit"
|
2003-10-15 21:32:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
// ********** Methods ***************************************************
|
2003-11-27 13:34:25 +00:00
|
|
|
bool saveCurrentFile();
|
|
|
|
void readProjects();
|
2003-11-18 15:12:51 +00:00
|
|
|
void OpenProject(const QString& Path, const QString& Name);
|
2003-11-27 13:34:25 +00:00
|
|
|
bool DeleteProject(const QString& Path, const QString& Name);
|
2003-11-18 15:12:51 +00:00
|
|
|
void updatePortNumber(int No);
|
|
|
|
bool gotoPage(const QString& Name);
|
2003-10-15 21:32:36 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|