2014-01-29 19:10:05 +00:00
|
|
|
/*
|
2020-06-15 17:42:37 +02:00
|
|
|
Copyright 2006-2020 The QElectroTech Team
|
2014-01-29 19:10:05 +00:00
|
|
|
This file is part of QElectroTech.
|
|
|
|
|
|
|
|
QElectroTech 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.
|
|
|
|
|
|
|
|
QElectroTech is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with QElectroTech. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2014-01-08 16:55:16 +00:00
|
|
|
#ifndef CREATEDXF_H
|
|
|
|
#define CREATEDXF_H
|
|
|
|
#include <QString>
|
|
|
|
#include <QtCore>
|
2015-03-02 20:14:56 +00:00
|
|
|
#include <QtWidgets>
|
2014-01-08 16:55:16 +00:00
|
|
|
|
2020-09-07 22:03:40 +02:00
|
|
|
/**
|
|
|
|
@brief The Createdxf class
|
|
|
|
This class exports the project to DXF Format
|
|
|
|
*/
|
2014-01-08 16:55:16 +00:00
|
|
|
class Createdxf
|
2020-09-07 22:03:40 +02:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
Createdxf();
|
|
|
|
~Createdxf();
|
|
|
|
static void dxfBegin (const QString&);
|
|
|
|
static void dxfEnd(const QString&);
|
|
|
|
// you can add more functions to create more drawings.
|
|
|
|
static void drawCircle(
|
|
|
|
const QString&,
|
|
|
|
double,
|
|
|
|
double,
|
|
|
|
double,
|
|
|
|
int);
|
2020-09-17 21:45:14 +10:00
|
|
|
|
|
|
|
static void drawCircle(
|
|
|
|
const QString& ,
|
|
|
|
QPointF,
|
|
|
|
double,
|
|
|
|
int );
|
|
|
|
|
2020-09-07 22:03:40 +02:00
|
|
|
static void drawArc(
|
|
|
|
const QString&,
|
|
|
|
double x,
|
|
|
|
double y,
|
|
|
|
double rad,
|
|
|
|
double startAngle,
|
|
|
|
double endAngle,
|
|
|
|
int color);
|
|
|
|
static void drawDonut(QString,double,double,double,int);
|
2019-01-13 16:56:12 +00:00
|
|
|
|
2020-09-07 22:03:40 +02:00
|
|
|
static void drawArcEllipse (
|
|
|
|
const QString &file_path,
|
|
|
|
qreal x,
|
|
|
|
qreal y,
|
|
|
|
qreal w,
|
|
|
|
qreal h,
|
|
|
|
qreal startAngle,
|
|
|
|
qreal spanAngle,
|
|
|
|
qreal hotspot_x,
|
|
|
|
qreal hotspot_y,
|
|
|
|
qreal rotation_angle,
|
|
|
|
const int &colorcode);
|
2014-06-14 16:04:34 +00:00
|
|
|
|
2020-08-16 14:22:36 +02:00
|
|
|
static void drawEllipse (const QString &filepath,
|
|
|
|
const QRectF &rect,
|
|
|
|
const int &colorcode);
|
2014-06-14 16:04:34 +00:00
|
|
|
|
2020-09-07 22:03:40 +02:00
|
|
|
static void drawRectangle(
|
|
|
|
const QString &filepath,
|
|
|
|
double,
|
|
|
|
double,
|
|
|
|
double,
|
|
|
|
double,
|
|
|
|
const int &colorcode);
|
|
|
|
static void drawRectangle(
|
|
|
|
const QString &filepath,
|
|
|
|
const QRectF &rect,
|
|
|
|
const int &colorcode);
|
2014-06-14 16:04:34 +00:00
|
|
|
|
2020-09-07 22:03:40 +02:00
|
|
|
static void drawPolygon(
|
|
|
|
const QString &filepath,
|
|
|
|
const QPolygonF &poly,
|
|
|
|
const int &colorcode);
|
2020-09-07 16:16:33 +10:00
|
|
|
|
2020-09-07 22:03:40 +02:00
|
|
|
static void drawLine(
|
|
|
|
const QString &filapath,
|
|
|
|
double,
|
|
|
|
double,
|
|
|
|
double,
|
|
|
|
double,
|
|
|
|
const int &clorcode);
|
|
|
|
static void drawLine(
|
|
|
|
const QString &filepath,
|
|
|
|
const QLineF &line,
|
|
|
|
const int &colorcode);
|
2019-01-13 16:56:12 +00:00
|
|
|
|
2020-09-07 22:03:40 +02:00
|
|
|
static void drawText(
|
|
|
|
const QString&,
|
|
|
|
const QString&,
|
|
|
|
double,double,
|
|
|
|
double,
|
|
|
|
double,
|
2020-09-10 00:12:45 +10:00
|
|
|
int,
|
|
|
|
double xScale=1.0);
|
2020-09-07 22:03:40 +02:00
|
|
|
static void drawTextAligned(
|
|
|
|
const QString& fileName,
|
|
|
|
const QString& text,
|
|
|
|
double x,
|
|
|
|
double y,
|
|
|
|
double height,
|
|
|
|
double rotation,
|
|
|
|
double oblique,
|
|
|
|
int hAlign,
|
|
|
|
int vAlign,
|
|
|
|
double xAlign,
|
|
|
|
double xScale,
|
|
|
|
int colour);
|
2019-01-13 16:56:12 +00:00
|
|
|
|
2020-09-11 11:22:08 +10:00
|
|
|
static void drawPolyline(
|
|
|
|
const QString &filepath,
|
|
|
|
const QPolygonF &poly,
|
|
|
|
const int &colorcode,
|
|
|
|
bool preScaled = false);
|
2019-01-13 16:56:12 +00:00
|
|
|
|
2020-09-07 22:03:40 +02:00
|
|
|
static int getcolorCode (
|
|
|
|
const long red,
|
|
|
|
const long green,
|
|
|
|
const long blue);
|
|
|
|
static long RGBcodeTable[];
|
2020-09-10 18:35:22 +10:00
|
|
|
static int dxfColor(QColor color);
|
|
|
|
static int dxfColor(QPen pen);
|
2018-02-11 16:14:53 +00:00
|
|
|
|
2020-09-07 22:03:40 +02:00
|
|
|
static const double sheetWidth;
|
|
|
|
static const double sheetHeight;
|
|
|
|
static double xScale;
|
|
|
|
static double yScale;
|
2014-01-08 16:55:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CREATEDXF_H
|