2003-11-27 13:34:25 +00:00
|
|
|
/***************************************************************************
|
2004-12-04 18:41:22 +00:00
|
|
|
graphictext.h
|
2005-06-23 06:06:40 +00:00
|
|
|
---------------
|
2003-11-27 13:34:25 +00:00
|
|
|
begin : Mon Nov 24 2003
|
|
|
|
copyright : (C) 2003 by Michael Margraf
|
2004-06-16 17:41:33 +00:00
|
|
|
email : michael.margraf@alumni.tu-berlin.de
|
2003-11-27 13:34:25 +00:00
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
* *
|
|
|
|
* 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 GRAPHICTEXT_H
|
|
|
|
#define GRAPHICTEXT_H
|
|
|
|
|
2003-12-26 16:31:25 +00:00
|
|
|
#include "painting.h"
|
2003-11-27 13:34:25 +00:00
|
|
|
|
2014-11-02 21:29:26 +08:00
|
|
|
#include <QColor>
|
|
|
|
#include <QFont>
|
|
|
|
#include <QString>
|
|
|
|
|
2004-12-04 18:41:22 +00:00
|
|
|
|
2003-11-27 13:34:25 +00:00
|
|
|
class GraphicText : public Painting {
|
2004-12-04 18:41:22 +00:00
|
|
|
public:
|
2004-03-28 19:51:04 +00:00
|
|
|
GraphicText();
|
2007-02-08 07:04:54 +00:00
|
|
|
~GraphicText();
|
2004-03-28 19:51:04 +00:00
|
|
|
|
2013-05-27 22:53:11 +02:00
|
|
|
void paintScheme(Schematic*);
|
2004-10-10 16:06:55 +00:00
|
|
|
void getCenter(int&, int&);
|
|
|
|
void setCenter(int, int, bool relative=false);
|
2004-03-28 19:51:04 +00:00
|
|
|
|
2005-02-26 09:01:53 +00:00
|
|
|
Painting* newOne();
|
2005-06-23 06:06:40 +00:00
|
|
|
static Element* info(QString&, char* &, bool getNewOne=false);
|
2004-10-10 16:06:55 +00:00
|
|
|
bool load(const QString&);
|
2004-03-28 19:51:04 +00:00
|
|
|
QString save();
|
2009-10-27 20:36:29 +00:00
|
|
|
QString saveCpp();
|
2014-02-19 10:01:32 +01:00
|
|
|
QString saveJSON();
|
2024-05-07 19:21:52 +03:00
|
|
|
void paint(QPainter* painter);
|
2024-07-14 17:04:23 +02:00
|
|
|
void MouseMoving(Schematic*, int, int, int, int, Schematic*, int, int);
|
2024-01-22 21:02:16 -05:00
|
|
|
bool MousePressing(Schematic *sch = 0);
|
2007-02-08 07:04:54 +00:00
|
|
|
bool getSelected(float, float, float);
|
2004-03-28 19:51:04 +00:00
|
|
|
void Bounding(int&, int&, int&, int&);
|
|
|
|
|
2023-12-11 15:13:33 +03:00
|
|
|
void rotate(int, int);
|
2004-03-28 19:51:04 +00:00
|
|
|
void mirrorX();
|
|
|
|
void mirrorY();
|
2024-01-22 21:02:16 -05:00
|
|
|
bool Dialog(QWidget *parent = 0);
|
2003-11-27 13:34:25 +00:00
|
|
|
|
|
|
|
QColor Color;
|
2004-05-29 13:05:04 +00:00
|
|
|
QFont Font;
|
2003-11-27 13:34:25 +00:00
|
|
|
QString Text;
|
2004-05-07 17:31:21 +00:00
|
|
|
int Angle;
|
2003-11-27 13:34:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|