67 void setComponents(QList<ComponentInfo>);
69 void setWires(QList<WireInfo>);
70 void setNodes(QList<NodeInfo>);
72 void setTexts(QList<QGraphicsTextItem*>);
82 void keyPressEvent(QKeyEvent* event);
84 void wheelEvent(QWheelEvent* event);
86 void scaleView(qreal scaleFactor);
90 std::deque<Component*> Components;
91 std::deque<Wire*> Wires;
92 std::deque<Node*> Nodes;
93 std::deque<QGraphicsTextItem*> Texts;
Definition SchematicContent.h:33