-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>
-Replaced qucs_s manual commandline parsing with QCommandLineParser
-Introduced new cli-parameter for netlisting to console
Signed-off-by: ThomasZecha <zecha@ihp-microelectronics.com>
Qt6 QTranslator::load() uses [[nodiscard]] which currently leads to
compiler warnings. This is fixed using static_cast<void>.
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>
Both ellipses and rectangles are drawn from a single object named
"Area". Drawing logic depends on the source of an object: if it's
from "rectangles" container, then draw a rectangle, otherwise
draw an ellipse.
This commit creates new separate "Ellips" type, which allows to:
- hide a dedicated ellipsis rectangle drawing logic in a method
associated only with "Ellips" objects
- distinguish ellipses and rectangles by their types, not by the
place they come from
The name ("Ellips") has no "e" at the end because "Ellipse"
conflicts with a painting with the same name, which is declared in
the same namespace. I didn't want to go into any additional trouble
and chose to go with this type of a "workaround".
With this commit creating of workspace dir is done *after* loading
of settings, so the workspace path from settings is taken into
account.
Previous behaviour was to create workspace dir before loading of
settings which led to path from settings to be ignored.
See comment:
https://github.com/ra3xdh/qucs_s/issues/145#issuecomment-1229151878
With this commit the root path for temporary files produced
by Qucs-S is set to StandardPaths::CacheLocation which is
~/.cache/qucs-s on Linux.
This path is set automatically and can't be changed.
This change adds an extra entry to the settings dialog to allow the
user to choose a default font for any documents opened in the text
editor. The initial default value follows the system setting for a
monospaced font.