qucs_s/qucs/paintings/ellipsearc.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

58 lines
1.9 KiB
C++

/***************************************************************************
ellipsearc.h
--------------
begin : Thu Sep 9 2004
copyright : (C) 2004 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 ELLIPSEARC_H
#define ELLIPSEARC_H
#include "painting.h"
#include <QPen>
class EllipseArc : public Painting {
public:
EllipseArc();
~EllipseArc();
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);
bool resizeTouched(float, float, float);
void MouseResizeMoving(int, int, Schematic*);
void rotate(int, int);
void mirrorX();
void mirrorY();
bool Dialog(QWidget *parent = 0);
QPen Pen;
int Angle, ArcLen; // start angle and arc length
};
#endif