-Introduced cli parameter --cdl for netlisting CDL
-Implemented netlisting to console for ngspice and xyce
-Increased readability and introduced smart-pointer semantics for some
qucs-s main.cpp functions
-Increased readability and introduced c++ cast's for casting to
Schematic* for affected QucsApp::slotSimulateWithSpice and QucsApp::slotSaveNetlist
Signed-off-by: ThomasZecha <zecha@ihp-microelectronics.com>
-Implemented conditional netlisting to console for CDL
-forced using trailing a_ for class attributes instead ms-style m_ for
class QucsApp
-removed unused attribute m_projModel from class QucsApp
Signed-off-by: ThomasZecha <zecha@ihp-microelectronics.com>
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>
Introduced very basic c++ coding style for the extsimkernels subsystem
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
Signed-off-by: ThomasZecha <zecha@ihp-microelectronics.com>
'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.
"Insert port" tool is reused it. When in symbol editing mode,
left mouse button click with this tool activated spawns a dialog
asking for port name, then insert a port.
I hope there is no breaking changes and everything is backwards
compatible as I strived to add workarounds everywhere it's needed.
The sad part is that code is not elegant, it increases overall
codebase entropy, doesn't follow any general strategy. It's just
a set of patches.
"Schematic" object already can edit symbols, this commit makes
it able to save and load them.
Implementation is actually quite ugly in terms of code beauty
and industry standards, it's very "hacky". It consists of two
parts:
1. Teach "Save" and "Open" dialogs to deal with "*.sym" files
2. Modify "Schematic" object and some other parts of codebase
so that when a schematic is saved and the filename ends with
"*.sym", then only symbol parts are saved. And vice versa:
when a file with a name ending in "*.sym" is opened, then
skip the path for usual schematic, and load only symbol parts.
The "symbol file" is actually a stripped "schematic file" — no
properties, no components, etc.
With this commit the click on "Examples" entry of "File" menu
instead of opening a new file manager window starts a standard
dialog to select and opend a file.
Closes: ra3xdh#672