qucs_s/qucs/qucs.h

179 lines
6.1 KiB
C
Raw Normal View History

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
2004-05-07 17:31:21 +00:00
#include "qucsinit.h"
2004-05-16 15:02:50 +00:00
#include "qucsactions.h"
2003-10-15 21:32:36 +00:00
#include "qucsview.h"
2004-04-10 11:29:03 +00:00
#include "dialogs/simmessage.h"
2003-10-15 21:32:36 +00:00
2004-05-07 17:31:21 +00:00
2003-10-15 21:32:36 +00:00
/**
2004-05-07 17:31:21 +00:00
* This Class is the base class for the 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 the view.
2003-10-15 21:32:36 +00:00
*/
class QucsApp : public QMainWindow
{
Q_OBJECT
2004-05-07 17:31:21 +00:00
public:
2004-05-29 13:05:04 +00:00
QucsApp();
2003-10-15 21:32:36 +00:00
~QucsApp();
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
2004-05-07 17:31:21 +00:00
protected:
2003-10-28 11:44:24 +00:00
void closeEvent(QCloseEvent* Event);
2004-05-07 17:31:21 +00:00
public slots:
2003-10-15 21:32:36 +00:00
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
2004-05-16 15:02:50 +00:00
void slotEditCut(); // put marked object into clipboard and delete it
2003-10-15 21:32:36 +00:00
void slotEditCopy(); // put the marked object into the clipboard
2004-05-29 13:05:04 +00:00
void slotApplSettings();// open dialog to change application settings
2003-10-15 21:32:36 +00:00
2004-01-18 14:41:45 +00:00
void slotHelpIndex(); // shows a HTML docu: Help Index
void slotGettingStarted(); // shows a HTML docu: Getting started
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
2004-05-07 17:31:21 +00:00
void slotZoomOut(); // Zoom out by 2
2003-10-15 21:32:36 +00:00
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();
2004-05-07 17:31:21 +00:00
// ########################################################################
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-11-18 15:12:51 +00:00
void slotSelectAll();
2003-11-06 07:39:18 +00:00
2004-05-07 17:31:21 +00:00
public:
2004-05-25 19:10:00 +00:00
QucsView *view; // the working area with schematics, data displays etc.
2003-10-15 21:32:36 +00:00
2004-05-29 13:05:04 +00:00
// menu appearing by right mouse button click on content listview
QPopupMenu *ContentMenu;
2004-05-07 17:31:21 +00:00
QAction *fileNew, *fileNewDpl, *fileOpen, *fileSave, *fileSaveAs;
QAction *fileSaveAll, *fileClose, *fileSettings, *filePrint, *fileQuit;
2004-05-29 13:05:04 +00:00
QAction *projNew, *projOpen, *projDel, *applSettings;
2004-05-16 15:02:50 +00:00
QAction *editCut, *editCopy, *undo, *redo, *magAll, *magOne;
QAction *magPlus, *magMinus;
QAction *intoH, *popH;
QAction *simulate, *dpl_sch, *selectAll, *showMsg, *showNet;
2004-05-07 17:31:21 +00:00
QAction *helpIndex, *helpGetStart;
2003-10-15 21:32:36 +00:00
QAction *activeAction; // pointer to the action selected by the user
2004-05-16 15:02:50 +00:00
QucsActions Acts; // contains most of the toggle actions
2004-04-04 15:56:10 +00:00
2004-05-07 17:31:21 +00:00
private:
2004-05-16 15:02:50 +00:00
QPrinter Printer; // printer is global (to remember the user settings)
QucsInit Init; // initializes toolbars, menubar, actions ...
2004-05-07 17:31:21 +00:00
2003-10-15 21:32:36 +00:00
// ********* 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
2004-05-25 19:10:00 +00:00
QPtrList<QString> HierarchyHistory; // keeps track of "go into subcircuit"
2003-10-15 21:32:36 +00:00
2004-05-07 17:31:21 +00:00
QString QucsFileFilter;
2003-10-15 21:32:36 +00:00
// ********** Methods ***************************************************
2003-11-27 13:34:25 +00:00
bool saveCurrentFile();
2004-05-07 17:31:21 +00:00
bool saveAs();
2003-11-27 13:34:25 +00:00
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