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

56 lines
1.9 KiB
C++

/***************************************************************************
portsymbol.h
--------------
begin : Sun Sep 5 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 PORTSYMBOL_H
#define PORTSYMBOL_H
#include "painting.h"
#include <QString>
class PortSymbol : public Painting {
public:
PortSymbol(int cx_=0, int cy_=0, const QString& numberStr_="1",
const QString& nameStr_="");
~PortSymbol();
void paintScheme(Schematic*);
void getCenter(int&, int&);
void setCenter(int, int, bool relative=false);
void MouseMoving(Schematic*, int, int, int, int, Schematic*, int, int) override;
bool MousePressing(Schematic*sch) override;
Painting* newOne() override;
bool Dialog(QWidget *Doc) override;
bool load(const QString&);
QString save();
QString saveCpp();
QString saveJSON();
void paint(QPainter* painter);
bool getSelected(float, float, float);
void Bounding(int&, int&, int&, int&);
void rotate(int, int);
void mirrorX();
void mirrorY();
int Angel;
QString numberStr, nameStr;
};
#endif