mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
57 lines
1.8 KiB
C++
57 lines
1.8 KiB
C++
/***************************************************************************
|
|
wirelabel.h
|
|
-------------
|
|
begin : Sun Feb 29 2004
|
|
copyright : (C) 2004 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 WIRELABEL_H
|
|
#define WIRELABEL_H
|
|
|
|
#include "conductor.h"
|
|
|
|
#include <QString>
|
|
|
|
class QPainter;
|
|
|
|
|
|
class WireLabel : public Element {
|
|
public:
|
|
WireLabel(const QString& _Name=0, int _cx=0, int _cy=0,
|
|
int _x1=0, int _y1=0, int _Type=isNodeLabel);
|
|
~WireLabel();
|
|
|
|
void paintScheme(QPainter *p);
|
|
void setCenter(int x, int y, bool relative=false);
|
|
bool getSelected(int, int);
|
|
void setName(const QString& Name_);
|
|
void setHighlighted (bool newval) { isHighlighted = newval; };
|
|
|
|
|
|
Conductor *pOwner; // Wire or Node where label belongs to
|
|
QString Name, initValue;
|
|
|
|
void paint(QPainter* painter) const;
|
|
void rotate();
|
|
QString save();
|
|
bool load(const QString& s);
|
|
bool isHorizontal();
|
|
void getLabelBounding(int& _xmin, int& _ymin, int& _xmax, int& _ymax);
|
|
|
|
private:
|
|
bool isHighlighted;
|
|
|
|
};
|
|
|
|
#endif
|