qucs_s/qucs/element.h

214 lines
6.5 KiB
C
Raw Normal View History

2003-10-15 21:32:36 +00:00
/***************************************************************************
2005-08-15 06:04:52 +00:00
element.h
-----------
2003-10-15 21:32:36 +00:00
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. *
* *
***************************************************************************/
2014-01-17 16:04:53 +00:00
/** \file element.h
* \brief Defines drawing elements for schematics
*
* element.h contains definitions of various drawing elements used
* used to render schematics and the schematic symbols. The following
* structs are defined to hold information on various drawing types:
*
* Line
* Arc
* Area
* Port
* Text
* Property
*
* The Element class is also defined here which is a superclass
* of every component symbol.
*
*/
2003-10-15 21:32:36 +00:00
#ifndef ELEMENT_H
#define ELEMENT_H
#include <QPen>
#include <vector>
2003-10-28 11:44:24 +00:00
2004-03-28 19:51:04 +00:00
class Node;
class Schematic;
2003-10-15 21:32:36 +00:00
namespace qucs { // otherwise conflict with <windows.h>
// coming from Qt5 headers
class DrawingPrimitive {
public:
virtual ~DrawingPrimitive() {}
virtual void draw([[maybe_unused]] QPainter* painter) const {};
virtual QBrush brushHint() const { return Qt::NoBrush; }
virtual QPen penHint() const { return Qt::NoPen; }
};
struct Line : DrawingPrimitive {
Line(double _x1, double _y1, double _x2, double _y2, QPen _style)
2004-03-28 19:51:04 +00:00
: x1(_x1), y1(_y1), x2(_x2), y2(_y2), style(_style) {};
virtual ~Line() {}
double x1, y1, x2, y2;
2004-03-28 19:51:04 +00:00
QPen style;
void draw(QPainter* painter) const override;
QPen penHint() const override { return style; }
2004-03-28 19:51:04 +00:00
};
struct Arc : DrawingPrimitive {
Arc(double _x, double _y, double _w, double _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) {};
virtual ~Arc() {}
double x, y, w, h;
int angle, arclen;
2004-03-28 19:51:04 +00:00
QPen style;
void draw(QPainter* painter) const override;
QPen penHint() const override { return style; }
2004-03-28 19:51:04 +00:00
};
struct Rect : DrawingPrimitive {
Rect(double _x, double _y, double _w, double _h, QPen _Pen,
2004-10-31 17:55:57 +00:00
QBrush _Brush = QBrush(Qt::NoBrush))
: x(_x), y(_y), w(_w), h(_h), Pen(_Pen), Brush(_Brush) {};
double x, y, w, h;
2004-10-31 17:55:57 +00:00
QPen Pen;
QBrush Brush; // filling style/color
void draw(QPainter* painter) const override;
QPen penHint() const override { return Pen; }
QBrush brushHint() const override { return Brush; }
2004-10-31 17:55:57 +00:00
};
// 'ellipse' conflicts 'ellipse' defined in paintings.h in the same namespace
struct Ellips : DrawingPrimitive {
Ellips(double _x, double _y, double _w, double _h, QPen _Pen,
QBrush _Brush = QBrush(Qt::NoBrush))
: x(_x), y(_y), w(_w), h(_h), Pen(_Pen), Brush(_Brush) {};
double x, y, w, h;
QPen Pen;
QBrush Brush; // filling style/color
void draw(QPainter* painter) const override;
QPen penHint() const override { return Pen; }
QBrush brushHint() const override { return Brush; }
};
struct Polyline : DrawingPrimitive {
std::vector<QPointF> points;
QPen pen;
QBrush brush;
Polyline(const std::vector<QPointF> &pts, QPen p = QPen{Qt::NoPen}, QBrush b = QBrush{Qt::NoBrush})
: points(pts), pen{p}, brush{b} {};
void draw(QPainter* painter) const override;
QPen penHint() const override { return pen; }
QBrush brushHint() const override { return brush; }
};
}
2004-03-28 19:51:04 +00:00
struct Port {
Port() {};
Port(int _x, int _y, bool _avail=true) : x(_x), y(_y), avail(_avail) {
Type=""; Connection=0;};
2004-03-28 19:51:04 +00:00
int x, y;
bool avail;
QString Type;
2004-03-28 19:51:04 +00:00
Node *Connection;
};
struct Text : qucs::DrawingPrimitive {
Text(double _x, double _y, const QString& _s, QColor _Color = QColor(0,0,0),
double _Size = 10.0, double _mCos=1.0, double _mSin=0.0)
2005-04-19 06:33:22 +00:00
: x(_x), y(_y), s(_s), Color(_Color), Size(_Size),
mSin(_mSin), mCos(_mCos) { over = under = false; };
virtual ~Text() {}
double x, y;
2004-03-28 19:51:04 +00:00
QString s;
2004-10-31 17:55:57 +00:00
QColor Color;
double Size, mSin, mCos; // font size and rotation coefficients
bool over, under; // text attributes
void draw(QPainter *painter) const override;
void draw(QPainter* painter, QRectF* br) const;
QPen penHint() const override { return Color; }
double angle() const;
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;
QRect boundingRect() const { return br; };
void paint(int x, int y, QPainter* p);
private:
QRect br;
2004-03-28 19:51:04 +00:00
};
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 !!!
2014-01-31 16:59:40 +00:00
#define isDummyElement 0
2005-04-19 06:33:22 +00:00
#define isSpecialMask -16
2004-03-28 19:51:04 +00:00
2005-10-04 06:18:18 +00:00
#define isComponent 0x30000
#define isComponentText 0x30002
#define isAnalogComponent 0x10000
#define isDigitalComponent 0x20000
#define isGraph 0x0020
#define isNode 0x0040
#define isMarker 0x0080
#define isWire 0x0100
#define isPainting 0x2000
#define isPaintingResize 0x2001
#define isLabel 0x4000
2006-05-26 06:03:15 +00:00
#define isHWireLabel 0x4020
#define isVWireLabel 0x4040
#define isNodeLabel 0x4080
#define isMovingLabel 0x4001
#define isHMovingLabel 0x4002
#define isVMovingLabel 0x4004
2005-10-04 06:18:18 +00:00
#define isDiagram 0x8000
#define isDiagramResize 0x8001
2006-11-06 06:58:05 +00:00
#define isDiagramHScroll 0x8002
#define isDiagramVScroll 0x8003
2005-01-06 19:57:39 +00:00
2004-03-28 19:51:04 +00:00
2014-01-17 16:04:53 +00:00
/** \class Element
* \brief Superclass of all schematic drawing elements
*
*
*/
2003-10-15 21:32:36 +00:00
class Element {
2014-01-17 16:04:53 +00:00
public:
2004-03-28 19:51:04 +00:00
Element();
virtual ~Element();
2003-10-28 11:44:24 +00:00
virtual void paintScheme(Schematic *);
virtual void paintScheme(QPainter *);
2004-08-01 18:49:01 +00:00
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