2003-10-15 21:32:36 +00:00
|
|
|
/***************************************************************************
|
|
|
|
qucsdoc.h - description
|
|
|
|
-------------------
|
|
|
|
begin : Wed Sep 3 2003
|
|
|
|
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 QUCSDOC_H
|
|
|
|
#define QUCSDOC_H
|
|
|
|
|
|
|
|
#include "wire.h"
|
2003-12-26 16:31:25 +00:00
|
|
|
#include "diagrams/diagram.h"
|
|
|
|
#include "paintings/painting.h"
|
2004-03-28 19:51:04 +00:00
|
|
|
#include "components/component.h"
|
|
|
|
|
|
|
|
#include "qucsfile.h"
|
2003-10-15 21:32:36 +00:00
|
|
|
|
|
|
|
#include <qstring.h>
|
|
|
|
#include <qpainter.h>
|
|
|
|
#include <qptrlist.h>
|
|
|
|
#include <qfile.h>
|
|
|
|
#include <qtabbar.h>
|
|
|
|
|
2004-06-21 08:22:13 +00:00
|
|
|
class QucsApp;
|
2003-10-15 21:32:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
class QucsDoc {
|
|
|
|
public:
|
2004-06-21 08:22:13 +00:00
|
|
|
QucsDoc(QucsApp*, const QString&);
|
2004-03-28 19:51:04 +00:00
|
|
|
~QucsDoc();
|
2003-10-15 21:32:36 +00:00
|
|
|
|
2004-06-21 08:22:13 +00:00
|
|
|
void setName(const QString&);
|
2004-06-22 16:49:55 +00:00
|
|
|
void setChanged(bool, bool fillStack=false, char Op='*');
|
2004-06-21 08:22:13 +00:00
|
|
|
|
2004-10-10 16:06:55 +00:00
|
|
|
void paint(ViewPainter*);
|
2004-10-13 19:51:59 +00:00
|
|
|
void paintGrid(ViewPainter*, int, int, int, int);
|
2004-10-16 20:57:38 +00:00
|
|
|
void print(QPainter*, bool);
|
2004-06-21 08:22:13 +00:00
|
|
|
|
2005-06-23 06:06:40 +00:00
|
|
|
float textCorr();
|
|
|
|
Wire *splitWire(Wire*, Node*);
|
2004-06-21 08:22:13 +00:00
|
|
|
int insertWireNode1(Wire*);
|
|
|
|
bool connectHWires1(Wire*);
|
|
|
|
bool connectVWires1(Wire*);
|
|
|
|
int insertWireNode2(Wire*);
|
|
|
|
bool connectHWires2(Wire*);
|
|
|
|
bool connectVWires2(Wire*);
|
|
|
|
int insertWire(Wire*);
|
|
|
|
|
|
|
|
Node* insertNode(int, int, Element*);
|
2004-10-02 16:21:06 +00:00
|
|
|
void insertComponentNodes(Component*);
|
2004-06-21 08:22:13 +00:00
|
|
|
void insertRawComponent(Component*, bool num=false);
|
|
|
|
void insertComponent(Component*);
|
|
|
|
void insertNodeLabel(WireLabel*);
|
|
|
|
|
|
|
|
Component* searchSelSubcircuit();
|
|
|
|
void sizeOfAll(int&, int&, int&, int&);
|
2004-10-16 20:57:38 +00:00
|
|
|
Component* selectedComponent(int, int);
|
2004-06-21 08:22:13 +00:00
|
|
|
Node* selectedNode(int, int);
|
|
|
|
Wire* selectedWire(int, int);
|
|
|
|
Painting* selectedPainting(int, int);
|
|
|
|
void selectWireLine(Element*, Node*, bool);
|
2005-04-19 06:33:22 +00:00
|
|
|
Element* selectElement(int, int, bool, int *index=0);
|
2004-06-21 08:22:13 +00:00
|
|
|
int selectElements(int, int, int, int, bool);
|
|
|
|
void deselectElements(Element*);
|
|
|
|
bool activateComponent(int, int);
|
2003-11-06 07:39:18 +00:00
|
|
|
bool activateComponents();
|
2004-06-21 08:22:13 +00:00
|
|
|
void activateComps(int, int, int, int);
|
|
|
|
void NewMovingWires(QPtrList<Element>*, Node*);
|
|
|
|
void copySelectedElements(QPtrList<Element>*);
|
|
|
|
|
|
|
|
void setComponentNumber(Component*);
|
|
|
|
void oneLabel(Node*);
|
2004-09-25 12:10:08 +00:00
|
|
|
int placeNodeLabel(WireLabel*);
|
2004-06-21 08:22:13 +00:00
|
|
|
Element* getWireLabel(Node*);
|
|
|
|
void setCompPorts(Component*);
|
2004-08-29 14:51:07 +00:00
|
|
|
void copyComponents(int&, int&, int&, int&);
|
|
|
|
void copyComponents2(int&, int&, int&, int&);
|
|
|
|
void copyWires(int&, int&, int&, int&);
|
2004-10-02 16:21:06 +00:00
|
|
|
void copyLabels(int&, int&, int&, int&);
|
2004-08-29 14:51:07 +00:00
|
|
|
void copyPaintings(int&, int&, int&, int&);
|
|
|
|
bool copyComps2WiresPaints(int&, int&, int&, int&);
|
2003-11-27 13:34:25 +00:00
|
|
|
bool rotateElements();
|
2003-10-15 21:32:36 +00:00
|
|
|
bool mirrorXComponents();
|
2003-11-11 07:33:56 +00:00
|
|
|
bool mirrorYComponents();
|
2004-06-21 08:22:13 +00:00
|
|
|
bool oneTwoWires(Node*);
|
|
|
|
void deleteComp(Component*);
|
|
|
|
void deleteWire(Wire*);
|
2003-10-28 11:44:24 +00:00
|
|
|
bool deleteElements();
|
2004-06-21 08:22:13 +00:00
|
|
|
Marker* setMarker(int, int);
|
2004-04-24 11:52:43 +00:00
|
|
|
bool MarkerLeftRight(bool);
|
2004-05-16 15:02:50 +00:00
|
|
|
bool MarkerUpDown(bool);
|
2004-07-28 18:57:52 +00:00
|
|
|
int copyElements(int&, int&, int&, int&);
|
|
|
|
bool aligning(int);
|
|
|
|
bool distribHoriz();
|
|
|
|
bool distribVert();
|
2005-01-06 19:57:39 +00:00
|
|
|
bool elementsOnGrid();
|
2004-09-18 09:46:19 +00:00
|
|
|
void switchPaintMode();
|
2003-11-30 09:54:45 +00:00
|
|
|
|
2004-06-21 08:22:13 +00:00
|
|
|
QString copySelected(bool);
|
|
|
|
bool paste(QTextStream*, QPtrList<Element>*);
|
2004-03-28 19:51:04 +00:00
|
|
|
bool load();
|
|
|
|
int save();
|
2004-09-19 16:38:59 +00:00
|
|
|
int adjustPortNumbers();
|
2004-06-12 12:35:04 +00:00
|
|
|
bool undo();
|
2004-06-21 08:22:13 +00:00
|
|
|
bool redo();
|
2004-03-28 19:51:04 +00:00
|
|
|
|
|
|
|
void reloadGraphs();
|
2004-06-21 08:22:13 +00:00
|
|
|
void setOnGrid(int&, int&);
|
2004-10-16 20:57:38 +00:00
|
|
|
Component* selectCompText(int, int, int&, int&);
|
2003-11-03 10:27:28 +00:00
|
|
|
|
2003-10-15 21:32:36 +00:00
|
|
|
|
2004-03-28 19:51:04 +00:00
|
|
|
QucsFile File; // class to perform load, save, copy, paste
|
2003-10-15 21:32:36 +00:00
|
|
|
|
|
|
|
QString DocName;
|
|
|
|
bool DocChanged;
|
|
|
|
|
2004-06-21 08:22:13 +00:00
|
|
|
QucsApp *App;
|
2003-10-15 21:32:36 +00:00
|
|
|
QTab *Tab;
|
|
|
|
QTabBar *Bar;
|
|
|
|
|
2004-09-11 16:55:12 +00:00
|
|
|
QPtrList<Wire> *Wires, DocWires;
|
|
|
|
QPtrList<Node> *Nodes, DocNodes;
|
|
|
|
QPtrList<Diagram> *Diags, DocDiags;
|
|
|
|
QPtrList<Painting> *Paints, DocPaints;
|
|
|
|
QPtrList<Component> *Comps, DocComps;
|
|
|
|
|
|
|
|
QPtrList<Painting> SymbolPaints; // symbol definition for subcircuit
|
|
|
|
bool symbolMode; // true if in symbol painting mode
|
2003-10-15 21:32:36 +00:00
|
|
|
|
2004-03-28 19:51:04 +00:00
|
|
|
bool SimOpenDpl; // open data display after simulation ?
|
|
|
|
QString DataSet; // name of the default dataset
|
2003-10-28 11:44:24 +00:00
|
|
|
QString DataDisplay; // name of the default data display
|
2004-03-28 19:51:04 +00:00
|
|
|
int GridX, GridY;
|
|
|
|
bool GridOn;
|
2004-09-18 09:46:19 +00:00
|
|
|
|
2004-10-16 20:57:38 +00:00
|
|
|
float Scale;
|
2004-08-14 06:40:55 +00:00
|
|
|
int PosX, PosY; // upper left corner of visible area (only for remembering during seeing another document)
|
2003-11-18 15:12:51 +00:00
|
|
|
int ViewX1, ViewY1, ViewX2, ViewY2; // size of the document area
|
2004-05-20 17:27:41 +00:00
|
|
|
int UsedX1, UsedY1, UsedX2, UsedY2; // document area used by elements
|
2003-10-15 21:32:36 +00:00
|
|
|
|
2004-09-18 09:46:19 +00:00
|
|
|
// Two of those data sets are needed for Schematic and for symbol.
|
|
|
|
// Which one is in "tmp..." depends on "symbolMode".
|
2004-10-16 20:57:38 +00:00
|
|
|
float tmpScale;
|
2004-09-18 09:46:19 +00:00
|
|
|
int tmpPosX, tmpPosY;
|
|
|
|
int tmpViewX1, tmpViewY1, tmpViewX2, tmpViewY2;
|
|
|
|
int tmpUsedX1, tmpUsedY1, tmpUsedX2, tmpUsedY2;
|
|
|
|
|
2003-11-11 07:33:56 +00:00
|
|
|
QPtrList<Element> ElementCache;
|
2004-06-12 12:35:04 +00:00
|
|
|
QPtrList<QString> UndoStack;
|
2004-09-19 16:38:59 +00:00
|
|
|
QPtrList<QString> UndoSymbol; // undo stack for circuit symbol
|
2003-10-15 21:32:36 +00:00
|
|
|
};
|
|
|
|
|
2003-10-28 11:44:24 +00:00
|
|
|
|
2003-10-15 21:32:36 +00:00
|
|
|
#endif
|