qucs_s/qucs/paintings/graphictext.h
Andrey Kalmykov 623bd080fe Get rid of MouseActions::drawn
'drawn' is some obscure flag which is scattered all around
the codebase, it's mostly set to 'false' and only occasionally
to 'true'. It controls blocks of code which are described as
"erase old symbol".

Honestly, I tried to grasp it's meaning and purpose, and I failed.
I believe this flag is just a legacy no one can remember of, and
it's OK to remove it.

Removing 'MouseActions::drawn' completely doesn't seem to change
something, at least at first sight everything looks the same as
usual.

I cram everything in a single large commit for the sake of easier
reverting if it will be needed later.
2024-07-14 17:27:42 +02:00

61 lines
1.9 KiB
C++

/***************************************************************************
graphictext.h
---------------
begin : Mon Nov 24 2003
copyright : (C) 2003 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 GRAPHICTEXT_H
#define GRAPHICTEXT_H
#include "painting.h"
#include <QColor>
#include <QFont>
#include <QString>
class GraphicText : public Painting {
public:
GraphicText();
~GraphicText();
void paintScheme(Schematic*);
void getCenter(int&, int&);
void setCenter(int, int, bool relative=false);
Painting* newOne();
static Element* info(QString&, char* &, bool getNewOne=false);
bool load(const QString&);
QString save();
QString saveCpp();
QString saveJSON();
void paint(QPainter* painter);
void MouseMoving(Schematic*, int, int, int, int, Schematic*, int, int);
bool MousePressing(Schematic *sch = 0);
bool getSelected(float, float, float);
void Bounding(int&, int&, int&, int&);
void rotate(int, int);
void mirrorX();
void mirrorY();
bool Dialog(QWidget *parent = 0);
QColor Color;
QFont Font;
QString Text;
int Angle;
};
#endif