Move 'Conductor' to a separate header file

This commit is contained in:
Andrey Kalmykov 2024-07-14 18:14:21 +02:00
parent b6750a1bf6
commit 6e5493b13b
6 changed files with 5 additions and 17 deletions

View File

@ -132,6 +132,7 @@ SET(QUCS_SRCS
SET(QUCS_HDRS SET(QUCS_HDRS
element.h element.h
conductor.h
main.h main.h
messagedock.h messagedock.h
misc.h misc.h

View File

@ -41,7 +41,6 @@
#include <vector> #include <vector>
class Node; class Node;
class WireLabel;
class Schematic; class Schematic;
namespace qucs { // otherwise conflict with <windows.h> namespace qucs { // otherwise conflict with <windows.h>
@ -207,14 +206,4 @@ public:
int cx, cy, x1, y1, x2, y2; // center and relative boundings int cx, cy, x1, y1, x2, y2; // center and relative boundings
}; };
/** \class Conductor
* \brief label for Node and Wire classes
*
*/
class Conductor : public Element {
public:
WireLabel *Label;
};
#endif #endif

View File

@ -24,6 +24,7 @@
#include <qt3_compat/qt_compat.h> #include <qt3_compat/qt_compat.h>
class Wire; class Wire;
class WireLabel;
class Schematic; class Schematic;
class Diagram; class Diagram;
class QPainter; class QPainter;

View File

@ -18,7 +18,7 @@
#ifndef NODE_H #ifndef NODE_H
#define NODE_H #define NODE_H
#include "element.h" #include "conductor.h"
#include "qt3_compat/qt_compat.h" #include "qt3_compat/qt_compat.h"

View File

@ -18,8 +18,7 @@
#ifndef WIRE_H #ifndef WIRE_H
#define WIRE_H #define WIRE_H
#include "element.h" #include "conductor.h"
#include "components/component.h" // because of struct Port
#include "wirelabel.h" #include "wirelabel.h"
class Schematic; class Schematic;

View File

@ -18,13 +18,11 @@
#ifndef WIRELABEL_H #ifndef WIRELABEL_H
#define WIRELABEL_H #define WIRELABEL_H
#include "element.h" #include "conductor.h"
#include <QString> #include <QString>
class QPainter; class QPainter;
class Wire;
class Node;
class WireLabel : public Element { class WireLabel : public Element {