771 Commits

Author SHA1 Message Date
ThomasZecha
b79d94ef2a Introduce optional netlisting to console
-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>
2025-01-19 14:19:21 +01:00
ThomasZecha
e6f35a35ff Introduce optional netlisting to console
-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>
2025-01-19 14:19:21 +01:00
Vadim Kuznetsov
2261b6caf2 Remove remains of XSPICE CM builder 2025-01-19 14:31:44 +03:00
Vadim Kuznetsov
ac24a25bfb
Merge pull request #1165 from ThomasZecha/dev/tze/featureExportCdlNetlist
New feature CDL netlist export
2025-01-07 10:45:50 +01:00
Thomas Zecha
efb112d74d
Update qucs.cpp
Fixed typo
2025-01-07 10:22:31 +01:00
Vadim Kuznetsov
7fde61997c Remove conditional Qt5 code 2025-01-04 12:15:41 +03:00
Vadim Kuznetsov
3742c83e20 Select extension when saving text file 2025-01-01 20:18:26 +03:00
ThomasZecha
f2fd2fe204 New feature CDL netlist export
-integrated CdlNetlistWriter in application GUI

Signed-off-by: ThomasZecha <zecha@ihp-microelectronics.com>
2024-12-23 11:12:21 +01:00
Vadim Kuznetsov
0fe4bc40c9
Merge pull request #1124 from dsm/fix_path
fix path.
2024-12-10 09:31:35 +01:00
Muhammet Şükrü Demir
5913133324 search ngspice using homebrew path on macos. 2024-12-07 22:36:46 +03:00
Muhammet Şükrü Demir
eb3aad2452 fix ngspice and qucsator_rf path search. 2024-12-07 20:08:08 +03:00
Muhammet Şükrü Demir
1d3441eedf fixed simulatorsCombobox size. 2024-12-05 20:06:59 +03:00
Muhammet Şükrü Demir
673e38002d fix! MSVC build drag component cause a crash.
- after this commit QVariant::save warning gone.
2024-11-22 23:02:24 +03:00
Vadim Kuznetsov
86144ab8ee
Merge pull request #1065 from iwbnwif/show_grid_menu
Allow document grid visibilty to be toggled via menu and shortcut key
2024-11-16 07:21:46 +01:00
Iwbnwif Yiw
b38f3e6f8e Allow document grid visibilty to be toggled via menu and shortcut key 2024-11-15 22:34:02 +00:00
Iwbnwif Yiw
4bab808750 Move component search box to top of component pane ('Main Dock'). 2024-11-15 21:15:37 +00:00
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
ThomasZecha
9d55075db8 New Feature: CDL netlist export
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>
2024-11-15 12:35:05 +01:00
Integral
30f8ddd583
refactor: replace non-empty QString constructors with QStringLiteral() 2024-11-04 15:53:11 +08:00
Sergei Krasilnikov
99560a19b1 fix leaks 2024-09-24 00:25:48 +03:00
Muhammet Şükrü Demir
6a26ae980d
set windows icon using qucs.svg 2024-09-05 18:08:30 +03:00
dsm
3bb0003d50 add app icon using cmake and rc file.
it also adds app icon to qucs.exe
2024-09-05 17:30:10 +03:00
Vadim Kuznetsov
0ef0b067d7 Put relative path for libcomps except user libraries 2024-09-02 16:53:24 +03:00
Vadim Kuznetsov
bd210e9820
Merge pull request #844 from wawuwo/get-rid-of-mouseactions-drawn
Get rid of MouseActions::drawn
2024-08-02 19:19:49 +02:00
Muhammet Şükrü Demir
b7a0e1be81 rename getFirst and getLast to front,back.
QList, std::vector etc. has front and back so this changes will reduce refactoring effort.
2024-07-31 12:02:39 +03:00
Muhammet Şükrü Demir
71aeb179cc
fixed component highlighting. 2024-07-30 12:59:33 +03:00
Vadim Kuznetsov
78b11d6e4e Remove dark/light icons setting 2024-07-21 11:12:56 +03:00
Vadim Kuznetsov
c626ee7afe Toolbar and status bar must be always visible 2024-07-20 19:19:46 +03:00
Vadim Kuznetsov
e6290b5bf2 Remove hardcoded .qucs directory path 2024-07-18 10:56:52 +03: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
Vadim Kuznetsov
670825aa95 Add Schematic::isSymbolOnly and its processing 2024-06-15 18:02:11 +03:00
Vadim Kuznetsov
cf3e5f31ed Add new symbol action 2024-06-15 17:12:14 +03:00
Vadim Kuznetsov
9a1e0b98bc Add explicit deprecation warning on attaching symbol to VA-file 2024-06-05 16:19:08 +03:00
Andrey Kalmykov
be8c1bd122 Replace umbrella 'components.h' with only required headers 2024-05-31 18:30:50 +03:00
Vadim Kuznetsov
ae63391e85
Merge pull request #700 from wawuwo/feature-export-symbol
Add symbol editor
2024-05-03 14:31:40 +02:00
Iwbnwif Yiw
bd9361e628 Use Qt standard window geometry persistence 2024-04-28 09:48:10 +01:00
Andrey Kalmykov
44eda495d0 Allow inserting ports when editing a symbol
"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.
2024-04-20 11:05:32 +03:00
Andrey Kalmykov
f00c6ef8c3 Add feature: saving symbol to file
"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.
2024-04-13 19:16:17 +03:00
Iwbnwif Yiw
0169c2518d Merge branch 'current' into static_settings_object 2024-04-09 22:50:38 +01:00
Vadim Kuznetsov
2aecb6177e
Merge pull request #658 from wawuwo/145-qucs-dirs-paths
Change Qucs-S workspace and tempfile paths
2024-04-08 08:19:58 +02:00
Andrey Kalmykov
a49a2d032d Reflow component icons when main dock size is changed 2024-04-07 22:36:49 +03:00
Andrey Kalmykov
1577e73cc9 Set ~/QucsWorkspace as default workspace path
This commit
1. changes ~/.qucs to ~/QucsWorkspace
2. assignes more descriptive name to config property which holds
   this path
2024-04-07 20:44:42 +03:00
Vadim Kuznetsov
da0779253f Fill project libraries group 2024-04-07 18:12:23 +03:00
Vadim Kuznetsov
4914e24335 Refactor QucsApp::fillLibrariesTreeView 2024-04-07 18:03:05 +03:00
Vadim Kuznetsov
632627224a
Merge pull request #640 from ivandi69/relative-file-path
Add support for relative file paths
2024-04-07 12:55:52 +02:00
Andrey Kalmykov
2e7b9a9b8c Use standard open-file dialog to open example schematics
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
2024-04-06 20:56:02 +03:00
Vadim Kuznetsov
4f173c5bc6 Supress popup window when simulating DC bias 2024-03-21 20:53:47 +03:00
Vadim Kuznetsov
fc98d247aa Fix Windows build 2024-03-20 16:37:23 +03:00
Vadim Kuznetsov
0940ca721f Find qucsator_rf if not configured 2024-03-20 08:33:24 +03:00
Vadim Kuznetsov
7e24e3fbcf Find QucsatorRF automatically on first run 2024-03-19 09:59:45 +03:00