qucs_s/qucs-lib/symbolwidget.h

81 lines
2.3 KiB
C
Raw Normal View History

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
#include <QWidget>
#include <QSize>
#include <QPen>
#include <QBrush>
#include <QColor>
#include <QString>
#include <QList>
#include <QMouseEvent>
#include <QPaintEvent>
#include <QMessageBox>
2005-05-30 06:19:42 +00:00
2014-01-31 16:59:40 +00:00
#include "element.h"
/*!
* \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();
int setSymbol( QString&, const QString&, const QString&);
2005-06-23 06:06:40 +00:00
// component properties
int Text_x, Text_y;
QString Prefix, LibraryPath, ComponentName;
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:
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);
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;
QList<qucs::Line *> Lines;
QList<qucs::Arc *> Arcs;
QList<qucs::Area *> Rects, Ellips;
QList<Text *> Texts;
2005-05-30 06:19:42 +00:00
};
2014-01-31 16:59:40 +00:00
#endif // SYMBOLWIDGET_H