qucs_s/qucs/components/component.h
2004-06-16 17:41:33 +00:00

79 lines
2.4 KiB
C++

/***************************************************************************
component.h - description
-------------------
begin : Sat Aug 23 2003
copyright : (C) 2003 by Michael Margraf
email : michael.margraf@alumni.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 COMPONENT_H
#define COMPONENT_H
#include "../element.h"
#include "../node.h"
#include <qptrlist.h>
#include <qpen.h>
#include <qpoint.h>
#include <qwidget.h>
class QString;
/**
*@author Michael Margraf
*/
class Component : public Element {
public:
Component();
virtual ~Component();
virtual Component* newOne();
virtual void recreate() {};
void paintScheme(QPainter *p);
void setCenter(int x, int y, bool relative=false);
void Bounding(int& _x1, int& _y1, int& _x2, int& _y2);
void entireBounds(int& _x1, int& _y1, int& _x2, int& _y2);
bool getSelected(int x_, int y_);
void paint(QPainter *p);
void rotate();
void mirrorX(); // mirror about X axis
void mirrorY(); // mirror about Y axis
QString NetList();
QString save();
bool load(const QString& s);
// to hold track of the component appearance for saving and copying
bool mirroredX; // is it mirrored about X axis or not
int rotated; // rotation angle divided by 90 degrees
QPtrList<Line> Lines;
QPtrList<Arc> Arcs;
QPtrList<Port> Ports;
QPtrList<Text> Texts;
QPtrList<Property> Props;
bool isActive; // should it be used in simulation or not ?
int tx, ty; // upper left corner of text (position)
QString Description;
QString Model, Name;
};
// prototype of independent function
Component* getComponentFromName(QString& Line);
#endif