2022-08-19 13:59:17 +03: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
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
#include <QSize>
|
|
|
|
#include <QPen>
|
|
|
|
#include <QBrush>
|
|
|
|
#include <QColor>
|
|
|
|
#include <QString>
|
|
|
|
#include <QList>
|
|
|
|
#include <QMouseEvent>
|
|
|
|
#include <QPaintEvent>
|
|
|
|
#include <QMessageBox>
|
|
|
|
|
|
|
|
#include "element.h"
|
|
|
|
|
|
|
|
/*!
|
|
|
|
* \file symbolwidget.h
|
|
|
|
* \brief Definition of the SymbolWidget class.
|
|
|
|
*/
|
|
|
|
|
|
|
|
class QPaintEvent;
|
|
|
|
class QSizePolicy;
|
|
|
|
|
|
|
|
class SymbolWidget : public QWidget {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
SymbolWidget(QWidget *parent = 0);
|
|
|
|
~SymbolWidget();
|
|
|
|
|
|
|
|
QString theModel();
|
|
|
|
int setSymbol( QString&, const QString&, const QString&);
|
2024-06-11 19:44:03 +03:00
|
|
|
int loadSymFile(const QString &file);
|
2022-08-19 20:21:02 +03:00
|
|
|
void enableDragNDrop();
|
|
|
|
void disableDragNDrop();
|
|
|
|
bool dragNDropEnabled() { return dragNDrop; }
|
2024-06-12 12:33:15 +03:00
|
|
|
void enableShowPinNumbers() { showPinNumbers = true; }
|
|
|
|
void disableShowPinNumbers() { showPinNumbers = false; }
|
|
|
|
bool showPinNumbersEnabled() { return showPinNumbers; }
|
2024-06-12 15:21:00 +03:00
|
|
|
int getPortsNumber() { return portsNumber; }
|
2024-06-21 14:58:04 +03:00
|
|
|
void setPaintText(const QString &txt);
|
|
|
|
void setWarning(const QString &warn) { Warning = warn; }
|
2022-08-19 13:59:17 +03:00
|
|
|
// component properties
|
|
|
|
int Text_x, Text_y;
|
|
|
|
QString Prefix, LibraryPath, ComponentName;
|
2022-08-20 18:20:57 +03:00
|
|
|
QString ModelString, VerilogModelString, VHDLModelString,
|
|
|
|
SpiceString;
|
2022-08-19 13:59:17 +03:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void mouseMoveEvent(QMouseEvent*);
|
|
|
|
|
|
|
|
private:
|
|
|
|
int createStandardSymbol(const QString&, const QString&);
|
|
|
|
|
|
|
|
void paintEvent(QPaintEvent*);
|
|
|
|
|
|
|
|
int analyseLine(const QString&);
|
|
|
|
|
2023-11-27 22:59:34 +03:00
|
|
|
static bool getPen (const QString&, QPen&, int);
|
2022-08-19 13:59:17 +03:00
|
|
|
bool getBrush(const QString&, QBrush&, int);
|
|
|
|
|
2022-08-19 20:21:02 +03:00
|
|
|
bool dragNDrop;
|
2024-06-12 12:33:15 +03:00
|
|
|
bool showPinNumbers;
|
2024-06-12 15:21:00 +03:00
|
|
|
int portsNumber;
|
2022-08-19 13:59:17 +03:00
|
|
|
QString PaintText;
|
|
|
|
QString DragNDropText;
|
|
|
|
QString Warning;
|
|
|
|
int TextWidth, DragNDropWidth, TextHeight;
|
|
|
|
int cx, cy, x1, x2, y1, y2;
|
|
|
|
QList<qucs::Line *> Lines;
|
|
|
|
QList<qucs::Arc *> Arcs;
|
2024-04-14 13:16:22 +03:00
|
|
|
QList<qucs::Rect *> Rects;
|
2024-04-14 13:05:21 +03:00
|
|
|
QList<qucs::Ellips *> Ellipses;
|
2022-08-19 13:59:17 +03:00
|
|
|
QList<Text *> Texts;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SYMBOLWIDGET_H
|