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

57 lines
2.1 KiB
C++

/***************************************************************************
painting.h
------------
begin : Sat Nov 22 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 PAINTING_H
#define PAINTING_H
#include "element.h"
class Painting : public Element {
public:
Painting();
~Painting() {};
virtual void getCenter(int&, int &) {};
virtual bool getSelected(float, float, float) { return false; };
virtual Painting* newOne();
virtual bool load(const QString&) { return true; };
virtual QString save();
virtual QString saveCpp();
virtual QString saveJSON();
virtual void paint(QPainter*) {};
virtual void MouseMoving(Schematic*, int, int, int, int,
Schematic*, int, int) {};
virtual bool MousePressing(Schematic *sch = 0) { Q_UNUSED(sch) return false; };
virtual void Bounding(int&, int&, int&, int&);
virtual bool resizeTouched(float, float, float) { return false; };
virtual void MouseResizeMoving(int, int, Schematic*) {};
virtual void rotate(int, int) {};
virtual void mirrorX() {};
virtual void mirrorY() {};
virtual bool Dialog(QWidget *parent = 0) { Q_UNUSED(parent) return false; };
QString toPenString (int);
QString toBrushString (int);
QString Name; // name of painting, e.g. for saving
int State; // state for different mouse operations
};
#endif