mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00

'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.
63 lines
2.0 KiB
C++
63 lines
2.0 KiB
C++
/***************************************************************************
|
|
ellipse.h
|
|
-----------
|
|
begin : Sun Nov 23 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 ELLIPSE_H
|
|
#define ELLIPSE_H
|
|
|
|
#include "painting.h"
|
|
|
|
#include <QPen>
|
|
|
|
namespace qucs {
|
|
|
|
class Ellipse : public Painting {
|
|
public:
|
|
Ellipse(bool _filled=false);
|
|
~Ellipse();
|
|
|
|
void paintScheme(Schematic*);
|
|
void getCenter(int&, int&);
|
|
void setCenter(int, int, bool relative=false);
|
|
|
|
Painting* newOne();
|
|
static Element* info(QString&, char* &, bool getNewOne=false);
|
|
static Element* info_filled(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;
|
|
QBrush Brush; // filling style/color
|
|
bool filled; // filled or not (for "getSelected" etc.)
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|