qucs_s/qucs/paintings/graphictext.h

61 lines
1.9 KiB
C
Raw Normal View History

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
#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();
QString saveCpp();
2014-02-19 10:01:32 +01:00
QString saveJSON();
void paint(QPainter* painter);
void MouseMoving(Schematic*, int, int, int, int, Schematic*, int, int);
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&);
void rotate(int, int);
2004-03-28 19:51:04 +00:00
void mirrorX();
void mirrorY();
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