2005-05-30 06:19:42 +00:00
|
|
|
/***************************************************************************
|
|
|
|
symbolwidget.h
|
|
|
|
----------------
|
|
|
|
begin : Sat May 29 2005
|
|
|
|
copyright : (C) 2005 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 SYMBOLWIDGET_H
|
|
|
|
#define SYMBOLWIDGET_H
|
|
|
|
|
2013-02-27 21:45:16 +01:00
|
|
|
#include <QWidget>
|
|
|
|
#include <QSize>
|
|
|
|
#include <QPen>
|
|
|
|
#include <QBrush>
|
|
|
|
#include <QColor>
|
|
|
|
#include <QString>
|
|
|
|
#include <QList>
|
2012-10-31 09:15:06 +01:00
|
|
|
#include <QMouseEvent>
|
|
|
|
#include <QPaintEvent>
|
2016-08-16 01:15:42 +02:00
|
|
|
#include <QMessageBox>
|
2005-05-30 06:19:42 +00:00
|
|
|
|
2014-01-31 16:59:40 +00:00
|
|
|
#include "element.h"
|
2013-02-27 21:45:16 +01:00
|
|
|
|
2014-12-14 21:58:56 +01:00
|
|
|
/*!
|
|
|
|
* \file symbolwidget.h
|
|
|
|
* \brief Definition of the SymbolWidget class.
|
|
|
|
*/
|
|
|
|
|
2005-05-30 06:19:42 +00:00
|
|
|
class QPaintEvent;
|
|
|
|
class QSizePolicy;
|
|
|
|
|
|
|
|
class SymbolWidget : public QWidget {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
SymbolWidget(QWidget *parent = 0);
|
|
|
|
~SymbolWidget();
|
|
|
|
|
2006-07-03 06:02:08 +00:00
|
|
|
QString theModel();
|
2013-05-26 16:09:26 +02:00
|
|
|
int setSymbol( QString&, const QString&, const QString&);
|
2005-06-23 06:06:40 +00:00
|
|
|
|
|
|
|
// component properties
|
|
|
|
int Text_x, Text_y;
|
2016-11-15 22:04:57 +01:00
|
|
|
QString Prefix, LibraryPath, ComponentName;
|
2007-05-12 17:15:11 +00:00
|
|
|
QString ModelString, VerilogModelString, VHDLModelString;
|
2006-07-03 06:02:08 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void mouseMoveEvent(QMouseEvent*);
|
2005-05-30 06:19:42 +00:00
|
|
|
|
|
|
|
private:
|
2016-11-13 11:21:54 +01:00
|
|
|
int createStandardSymbol(const QString&, const QString&);
|
|
|
|
|
2005-05-30 06:19:42 +00:00
|
|
|
void paintEvent(QPaintEvent*);
|
|
|
|
|
|
|
|
int analyseLine(const QString&);
|
2014-01-31 16:59:40 +00:00
|
|
|
|
2005-05-30 06:19:42 +00:00
|
|
|
bool getPen (const QString&, QPen&, int);
|
|
|
|
bool getBrush(const QString&, QBrush&, int);
|
|
|
|
|
2015-10-02 16:30:23 +02:00
|
|
|
QString PaintText;
|
|
|
|
QString DragNDropText;
|
|
|
|
QString Warning;
|
2006-07-03 06:02:08 +00:00
|
|
|
int TextWidth, DragNDropWidth, TextHeight;
|
|
|
|
int cx, cy, x1, x2, y1, y2;
|
2022-02-20 16:27:02 +01:00
|
|
|
QList<qucs::Line *> Lines;
|
|
|
|
QList<qucs::Arc *> Arcs;
|
|
|
|
QList<qucs::Area *> Rects, Ellips;
|
2013-02-27 21:45:16 +01:00
|
|
|
QList<Text *> Texts;
|
2005-05-30 06:19:42 +00:00
|
|
|
};
|
|
|
|
|
2014-01-31 16:59:40 +00:00
|
|
|
#endif // SYMBOLWIDGET_H
|