qucs_s/qucs/element.h

129 lines
3.6 KiB
C
Raw Normal View History

2003-10-15 21:32:36 +00:00
/***************************************************************************
element.h - description
-------------------
begin : Sat Sep 20 2003
copyright : (C) 2003 by Michael Margraf
2004-06-16 17:41:33 +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 ELEMENT_H
#define ELEMENT_H
2004-12-04 18:41:22 +00:00
#include <qpen.h>
#include <qbrush.h>
2003-10-28 11:44:24 +00:00
2004-03-28 19:51:04 +00:00
class Node;
2004-12-04 18:41:22 +00:00
class QPainter;
2003-10-15 21:32:36 +00:00
/**
*@author Michael Margraf
*/
2004-03-28 19:51:04 +00:00
struct Line {
Line(int _x1, int _y1, int _x2, int _y2, QPen _style)
: x1(_x1), y1(_y1), x2(_x2), y2(_y2), style(_style) {};
int x1, y1, x2, y2;
QPen style;
};
struct Arc {
Arc(int _x, int _y, int _w, int _h, int _angle, int _arclen, QPen _style)
2004-06-16 17:41:33 +00:00
: x(_x), y(_y), w(_w), h(_h), angle(_angle),
arclen(_arclen), style(_style) {};
2004-03-28 19:51:04 +00:00
int x, y, w, h, angle, arclen;
QPen style;
};
2004-10-31 17:55:57 +00:00
struct Area {
Area(int _x, int _y, int _w, int _h, QPen _Pen,
QBrush _Brush = QBrush(Qt::NoBrush))
: x(_x), y(_y), w(_w), h(_h), Pen(_Pen), Brush(_Brush) {};
int x, y, w, h;
QPen Pen;
QBrush Brush; // filling style/color
};
2004-03-28 19:51:04 +00:00
struct Port {
Port() {};
Port(int _x, int _y) : x(_x), y(_y) {};
int x, y;
Node *Connection;
};
struct Text {
2004-10-31 17:55:57 +00:00
Text(int _x, int _y, const QString& _s, QColor _Color = QColor(0,0,0),
2005-04-19 06:33:22 +00:00
float _Size = 10.0, float _mCos=1.0, float _mSin=0.0)
: x(_x), y(_y), s(_s), Color(_Color), Size(_Size),
mSin(_mSin), mCos(_mCos) {};
2004-10-31 17:55:57 +00:00
int x, y;
2004-03-28 19:51:04 +00:00
QString s;
2004-10-31 17:55:57 +00:00
QColor Color;
2005-04-19 06:33:22 +00:00
float Size, mSin, mCos; // font size and rotation coefficients
2004-03-28 19:51:04 +00:00
};
struct Property {
2004-06-16 17:41:33 +00:00
Property(const QString& _Name="", const QString& _Value="",
bool _display=false, const QString& Desc="")
: Name(_Name), Value(_Value), display(_display), Description(Desc) {};
2004-03-28 19:51:04 +00:00
QString Name, Value;
bool display; // show on schematic or not ?
QString Description;
};
2005-04-19 06:33:22 +00:00
// valid values for Element.Type
// The 4 least significant bits of each value are reserved for special
// additionals !!!
#define isDummy 0
#define isSpecialMask -16
2004-03-28 19:51:04 +00:00
2005-04-19 06:33:22 +00:00
#define isComponent 0x0010
#define isComponentText 0x0012
2005-01-06 19:57:39 +00:00
2005-04-19 06:33:22 +00:00
#define isGraph 0x0020
#define isNode 0x0040
#define isMarker 0x0080
#define isWire 0x0100
#define isPainting 0x2000
#define isPaintingResize 0x2001
#define isLabel 0x4000
#define isHWireLabel 0x4002
#define isVWireLabel 0x4004
#define isNodeLabel 0x4008
#define isMovingLabel 0x4010
#define isHMovingLabel 0x4020
#define isVMovingLabel 0x4040
#define isDiagram 0x8000
#define isDiagramResize 0x8001
#define isDiagramScroll 0x8002
2005-01-06 19:57:39 +00:00
2004-03-28 19:51:04 +00:00
2003-10-15 21:32:36 +00:00
class Element {
public:
2004-03-28 19:51:04 +00:00
Element();
virtual ~Element();
2003-10-28 11:44:24 +00:00
2004-08-01 18:49:01 +00:00
virtual void paintScheme(QPainter*);
virtual void setCenter(int, int, bool relative=false);
virtual void getCenter(int&, int&);
2003-10-15 21:32:36 +00:00
bool isSelected;
2005-04-19 06:33:22 +00:00
int Type; // whether it is Component, Wire, ...
2003-10-28 11:44:24 +00:00
int cx, cy, x1, y1, x2, y2; // center and relative boundings
2003-10-15 21:32:36 +00:00
};
#endif