6 Commits

Author SHA1 Message Date
ThomasZecha
62cf2d4bdc New Feature: CDL netlist export
Introduced very basic c++ coding style for the class Schematic and it's
parent-class QucsDoc based on https://google.github.io/styleguide/cppguide.html:
-Prefix class attributes with a_ (much more better readability!)
-Class member initialization via constructor member initialization list
-No public class attributes (where possible with small effort)

Signed-off-by: ThomasZecha <zecha@ihp-microelectronics.com>
2024-11-15 12:39:39 +01:00
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
Andrey Kalmykov
273ae1a4cc Allow passing constref to some of Schematic member functions 2024-07-14 13:15:23 +02:00
Andrey Kalmykov
7ab15b7f08 Remove unused overloads of Schematic::renderModel 2024-02-18 11:02:36 +01:00
Andrey Kalmykov
9341b46076 Add documentation to schematic_render.cpp 2024-02-18 10:57:52 +01:00
Andrey Kalmykov
12e793eb16 Move Schematic's rendering related methods to the separate file 2024-02-18 10:57:42 +01:00