mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
clean the header include in painting
arrow.cpp: Q3PointArray -> QPolygon * unused header: arrowdialog.cpp ellipse.cpp ellipsearc.cpp graphicline.cpp painting.cpp rectangle.cpp graphictext.cpp * unnecessary include: filldialog.h graphictextdialog.h id_dialog.h * add include: graphicline.h: add QPen graphictext.h: add QFont, QColor, QString portsymbol.h: add QString * remove comment painting.h
This commit is contained in:
parent
2b97908ece
commit
0ac0f87f1f
@ -19,11 +19,7 @@
|
||||
#include "arrowdialog.h"
|
||||
#include "schematic.h"
|
||||
|
||||
#include <QLineEdit>
|
||||
#include <QPushButton>
|
||||
#include <QComboBox>
|
||||
//Added by qt3to4:
|
||||
#include <Q3PointArray>
|
||||
#include <QPolygon>
|
||||
#include <math.h>
|
||||
|
||||
|
||||
@ -50,7 +46,7 @@ Arrow::~Arrow()
|
||||
// --------------------------------------------------------------------------
|
||||
void Arrow::paint(ViewPainter *p)
|
||||
{
|
||||
Q3PointArray Points;
|
||||
QPolygon Points;
|
||||
int x1_, y1_, x2_, y2_, x3_, y3_;
|
||||
if(isSelected) {
|
||||
p->Painter->setPen(QPen(Qt::darkGray,Pen.width()+5));
|
||||
|
@ -17,7 +17,6 @@
|
||||
|
||||
#include "arrowdialog.h"
|
||||
|
||||
//#include <QLayout>
|
||||
#include <QLabel>
|
||||
#include <QValidator>
|
||||
#include <QColorDialog>
|
||||
|
@ -18,10 +18,6 @@
|
||||
#include "ellipse.h"
|
||||
#include "filldialog.h"
|
||||
#include "schematic.h"
|
||||
#include <QPushButton>
|
||||
#include <QLineEdit>
|
||||
#include <QComboBox>
|
||||
#include <QCheckBox>
|
||||
|
||||
|
||||
Ellipse::Ellipse(bool _filled)
|
||||
|
@ -19,9 +19,6 @@
|
||||
#include "filldialog.h"
|
||||
#include "main.h"
|
||||
#include "schematic.h"
|
||||
#include <QPushButton>
|
||||
#include <QLineEdit>
|
||||
#include <QComboBox>
|
||||
|
||||
#include <math.h>
|
||||
|
||||
|
@ -19,8 +19,6 @@
|
||||
#define FILLDIALOG_H
|
||||
|
||||
#include <QDialog>
|
||||
#include <QLabel>
|
||||
#include <QVBoxLayout>
|
||||
|
||||
class QVBoxLayout;
|
||||
class QLabel;
|
||||
|
@ -18,9 +18,6 @@
|
||||
#include "graphicline.h"
|
||||
#include "filldialog.h"
|
||||
#include "schematic.h"
|
||||
#include <QPushButton>
|
||||
#include <QLineEdit>
|
||||
#include <QComboBox>
|
||||
|
||||
#include <math.h>
|
||||
|
||||
|
@ -20,6 +20,8 @@
|
||||
|
||||
#include "painting.h"
|
||||
|
||||
#include <QPen>
|
||||
|
||||
|
||||
class GraphicLine : public Painting {
|
||||
public:
|
||||
|
@ -22,11 +22,6 @@
|
||||
#include "graphictextdialog.h"
|
||||
#include "schematic.h"
|
||||
#include "qucs.h"
|
||||
#include <QWidget>
|
||||
#include <QPainter>
|
||||
#include <QLineEdit>
|
||||
#include <Q3TextEdit>
|
||||
#include <QPushButton>
|
||||
|
||||
#include <math.h>
|
||||
|
||||
|
@ -20,6 +20,10 @@
|
||||
|
||||
#include "painting.h"
|
||||
|
||||
#include <QColor>
|
||||
#include <QFont>
|
||||
#include <QString>
|
||||
|
||||
|
||||
class GraphicText : public Painting {
|
||||
public:
|
||||
|
@ -19,7 +19,6 @@
|
||||
#define GRAPHICTEXTDIALOG_H
|
||||
|
||||
#include <QDialog>
|
||||
#include <QVBoxLayout>
|
||||
|
||||
class QLineEdit;
|
||||
class QTextEdit;
|
||||
|
@ -20,9 +20,6 @@
|
||||
|
||||
#include <QDialog>
|
||||
#include <QRegExp>
|
||||
//Added by qt3to4:
|
||||
#include <Q3VBoxLayout>
|
||||
|
||||
|
||||
class ID_Text;
|
||||
class Q3ListView;
|
||||
|
@ -16,8 +16,6 @@
|
||||
***************************************************************************/
|
||||
#include <QtGui>
|
||||
#include "painting.h"
|
||||
#include <iostream>
|
||||
using namespace std;
|
||||
|
||||
Painting::Painting()
|
||||
{
|
||||
|
@ -20,8 +20,6 @@
|
||||
|
||||
#include "element.h"
|
||||
#include "viewpainter.h"
|
||||
//class QPainter;
|
||||
//class Schematic;
|
||||
|
||||
|
||||
class Painting : public Element {
|
||||
|
@ -20,6 +20,7 @@
|
||||
|
||||
#include "painting.h"
|
||||
|
||||
#include <QString>
|
||||
|
||||
class PortSymbol : public Painting {
|
||||
public:
|
||||
|
@ -17,11 +17,6 @@
|
||||
#include <QtGui>
|
||||
#include "rectangle.h"
|
||||
#include "filldialog.h"
|
||||
|
||||
#include <QPushButton>
|
||||
#include <QLineEdit>
|
||||
#include <QComboBox>
|
||||
#include <QCheckBox>
|
||||
#include "schematic.h"
|
||||
|
||||
Rectangle::Rectangle(bool _filled)
|
||||
|
Loading…
x
Reference in New Issue
Block a user