2003-10-15 21:32:36 +00:00
|
|
|
/***************************************************************************
|
|
|
|
element.cpp - 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. *
|
|
|
|
* *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#include "element.h"
|
2012-12-05 10:12:11 +01:00
|
|
|
//#include "schematic.h"
|
2003-10-15 21:32:36 +00:00
|
|
|
Element::Element()
|
|
|
|
{
|
2014-01-31 16:59:40 +00:00
|
|
|
Type = isDummyElement;
|
2007-05-06 14:37:51 +00:00
|
|
|
isSelected = false;
|
|
|
|
cx = cy = x1 = y1 = x2 = y2 = 0;
|
2003-10-15 21:32:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Element::~Element()
|
|
|
|
{
|
|
|
|
}
|
2003-10-28 11:44:24 +00:00
|
|
|
|
2012-12-05 10:12:11 +01:00
|
|
|
void Element::paintScheme(Schematic *)
|
2003-10-28 11:44:24 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-10-28 14:07:13 +08:00
|
|
|
void Element::paintScheme(QPainter *)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2003-10-28 11:44:24 +00:00
|
|
|
void Element::setCenter(int, int, bool)
|
|
|
|
{
|
|
|
|
}
|
2004-08-01 18:49:01 +00:00
|
|
|
|
|
|
|
void Element::getCenter(int&, int&)
|
|
|
|
{
|
|
|
|
}
|