qucs_s/qucs/wire.h

51 lines
1.7 KiB
C
Raw Normal View History

2003-10-15 21:32:36 +00:00
/***************************************************************************
2005-08-15 06:04:52 +00:00
wire.h
--------
2003-10-15 21:32:36 +00:00
begin : Wed Sep 3 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 WIRE_H
#define WIRE_H
#include "conductor.h"
2004-03-28 19:51:04 +00:00
#include "wirelabel.h"
2003-10-15 21:32:36 +00:00
2024-01-30 10:56:39 +03:00
class Schematic;
class QPainter;
class QString;
2003-10-15 21:32:36 +00:00
2005-08-15 06:04:52 +00:00
class Wire : public Conductor {
2004-03-28 19:51:04 +00:00
public:
Wire(int _x1=0, int _y1=0, int _x2=0, int _y2=0, Node *n1=0, Node *n2=0);
2005-08-15 06:04:52 +00:00
~Wire();
2004-03-28 19:51:04 +00:00
2024-05-05 12:17:55 +03:00
void paint(QPainter* painter) const;
2024-01-30 10:56:39 +03:00
void paintScheme(QPainter*) override;
void paintScheme(Schematic*) override;
2004-08-01 18:49:01 +00:00
void setCenter(int, int, bool relative=false);
void getCenter(int&, int&);
bool getSelected(int, int);
2004-12-19 16:06:24 +00:00
void setName(const QString&, const QString&, int delta_=0, int x_=0, int y_=0);
2004-03-28 19:51:04 +00:00
Node *Port1, *Port2;
2003-10-15 21:32:36 +00:00
2003-11-11 07:33:56 +00:00
void rotate();
2003-10-15 21:32:36 +00:00
QString save();
2004-08-01 18:49:01 +00:00
bool load(const QString&);
2003-10-15 21:32:36 +00:00
bool isHorizontal();
};
#endif