264 Commits

Author SHA1 Message Date
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
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
Iwbnwif Yiw
b38f3e6f8e Allow document grid visibilty to be toggled via menu and shortcut key 2024-11-15 22:34:02 +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
andresmmera
f4d1c4a225 S-parameter viewer - Initial development (squashed)
This commit contains the first draft of the user interface
Read Touchstone files

It was implemented a basic function to read Touchstone files.

It can only read Touchstone files up to 4 ports and only S-parameter data.


Please see "Touchstone Specification, Version 2.1, ratified January 26 2024 by the IBIS Open Forum": https://ibis.org/touchstone_ver2.1/ 
Add QScrollArea widgets to the files and traces lists

Large number of files and traces are expected, so there is a need for scrollable areas in the files and traces lists.
Basic plotting structure


Add default behaviour when loading one single s2p

A default behavior is added. When a single s2p file is selected, the program automatically displays S21, S11 and S22
Replace the "Delete" message by a trash image

The delete image was taken from here

https://commons.wikimedia.org/wiki/File:Delete-button.svg

This file is licensed under the Creative Commons Attribution-Share Alike 4.0 International license.

    You are free:

        to share – to copy, distribute and transmit the work
        to remix – to adapt the work

    Under the following conditions:

        attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
        share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.
Read Touchstone files with more than two ports


Update traces combobox depending on the selected dataset

If the user has loaded data with different number of ports, the traces combobox must be refreshed each time the user changes the dataset selection. Otherwise, this may cause that the user selects a non existing trace
Fix style in buttons for removing files

The QPushButtons were replaced by QToolButtons. With the QPushButtons the widget was too wide
Fix style in buttons for removing traces

QPushButton was converted into QToolButton
Delete dataset and its traces when the user decides to remove a file


Remove files and traces

Rework on the logic on how to remove datasets and traces
After removing a file, remove the associated widgets


Remove trace from Chart


Update file widget position in the grid after removing


Function handler for changing the color of a trace


Change linestyle depending on the combo selection


Set initial color of the color pickers


Added a spinbox control to control the trace width

It was added a spinbox that controls the width of the traces displayed. This is very convenient when a bunch of traces are being displayed and the user wants to highlight one of them easily
Added function  handler for controlling the x-axis

A handler function was added to control the x-axis settings as the user changes the minimum, maximum or the tick interval
Update traces when changing the axis settings


Fix trace plotting refresh


Fix frequency limits when loading a GHz range file


Dockable widgets


Autoadjust y-axis settings


Automatically add K, delta, mu_s, m_p, MAG and MSG traces in S2P files

When a Touchtone file has two ports, the stability metrics are automatically computed and added to the dataset
Add marker table feature

It was added a new dock consisting on a marker table and some widgets for its management
Add dot marker and vertical lines in the QChart


Make case insensitive the frequency scale

Files were found were the frequency scale is all in capital letters. This creates a problem when reading the spar data. This commit fixes this by putting the frequency scale in lower case
Auto adjust x-axis when changing the units


Put x_div values as a ComboBox

It makes no much sense in having a decimal spinbox for defining the tick interval. It leads to decimal ticks. It's better to have a closed list of possible values
y axis tick in combobox


Fix vertical line markers


Fix bad "About Qt" connection 

The "About Qt" message was not properly connected. As a consequence, when the user went to "Help-> About Qt..." nothing showed up.

This commit is intended to fix this by connecting the menu with the handler as it's done in the filter design tool
Link S-parameter viewer to Qucs-S


Add Re{Zin}, Im{Zin} traces to s1p and s2p files


Hide y-axis units

It makes no much sense for now to have it since it may happen that the y-axis represent dB, Ohm or simply its unitless (e.g. K, mu, ...)
Fix segfault when removing one single file

In previous commits, it was observed a segfault when removing one single s-par file. This happened because the program was freeing widgets already freed. This situation is avoided by ordering the list of widgets to remove
Autoadjust y-axis


Remove widgets for marker placement

They are actually not needed. The SpinBox and the combo with units just add clutter. The user can set the marker freq once added
Update x-axis limits after removing file


Increase maximum x-ticks


Get suffix using Qt method

This is more robust than the previous approach
Fix frequency scale in markers


Enable drag and drop to open files


Fix segfault when removing file


Readjust frequency limits when dataset has no traces


Fix read touchstone

Files were found whose header contains no !
Fix initial marker step


Fix autoscale y-axis


Prevent docks from closing

It makes no sense the user can close the docks
Solve infinite loop when fmax=3000 [unit]


Implemented button for removing all files on a row


Implement button for removing all markers on a row
2024-09-08 08:35:42 +02:00
Vadim Kuznetsov
0ef0b067d7 Put relative path for libcomps except user libraries 2024-09-02 16:53:24 +03:00
Vadim Kuznetsov
c626ee7afe Toolbar and status bar must be always visible 2024-07-20 19:19:46 +03:00
Vadim Kuznetsov
72220651a5 Remove GUI controls for creating *.qucs packages 2024-07-09 11:48:13 +03:00
Vadim Kuznetsov
cf3e5f31ed Add new symbol action 2024-06-15 17:12:14 +03:00
Iwbnwif Yiw
0169c2518d Merge branch 'current' into static_settings_object 2024-04-09 22:50:38 +01: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
Vadim Kuznetsov
e4ffc54009 Move qucsconv GUI to Tools menu; allow to run it outside projects 2024-03-22 09:39:48 +03:00
Vadim Kuznetsov
4c940a940d Add GUI controls to run RFLayout 2024-03-20 09:26:11 +03:00
ivandi
13b7d305ed Add support for relative file paths 2024-03-12 21:04:10 -04:00
Iwbnwif Yiw
c35fb1f489 Implement a singleton / static settingsManager
This change implements a QucsSingleton class that can be used to
make any class singleton. It also provides a new settingsManager
class which uses QucsSingleton to provide a single, static access
point to the standard QSettings functionality. A shortcut is provided
and a new method for providing a default value if the requested key
is not set.
2024-02-05 20:43:11 +00:00
Krasilnikov Sergey
2e0e86b191 remove simulator from status bar - it duplicate combobox for now 2024-01-24 11:41:16 +03:00
Krasilnikov Sergey
f23de0ee00 show diagram values in statusbar 2024-01-24 11:34:49 +03:00
Iwbnwif Yiw
0660bd9332 Allow zooming of diagrams using the mouse.
Initial commit of new feature, only rectangular diagrams are supported.
Behaviour with other diagram types is undefined.
This change also provides a preliminary refactoring of the code that
transforms between the various coordinate systems.
2024-01-21 20:32:18 +00:00
Krasilnikov Sergey
fa9698cf84 git commit hash in title 2023-11-29 12:18:20 +03:00
Krasilnikov Sergey
adaefdc015 zoom to selection implementation 2023-10-17 21:29:39 +03:00
Vadim Kuznetsov
92c6181d92 Impelemented tuning from DPL files 2023-09-21 16:44:45 +03:00
Vadim Kuznetsov
9f91a928f8 ExterSimDlg execution rewritten to enable tuning 2023-09-20 20:08:48 +03:00
Vadim Kuznetsov
9f23c12f65 Imported tuner implementation from Kevin @tipofthesowrd 2023-09-19 17:09:05 +03:00
Krasilnikov Sergey
8ce12c4838 ready 2023-06-15 19:24:02 +03:00
Krasilnikov Sergey
2f05522b13 wip - move combobox to toolbar 2023-06-07 01:45:39 +03:00
Vadim Kuznetsov
f4cb5dc1fa Remove main menu entries related to CM synthesizer 2023-05-29 16:36:55 +03:00
Vadim Kuznetsov
35e4d1f088 Remove CM synthesizer device from build system 2023-05-29 16:28:13 +03:00
Vadim Kuznetsov
380e16bbe4 Add Simulation->Save netlist menu #225 2023-02-25 16:59:57 +03:00
Adam Strzelecki
7c79ef0e48 macOS: Improve main dock and documents tab styling to match modern macOS 2023-02-13 00:08:22 +01:00
Adam Strzelecki
8621131c73 Remember toolbars visibility and don't ask on exit
We are anyway asking if we have some files not saved.
2023-02-12 22:44:48 +01:00
Krasilnikov Sergey
b70e615020 replace foreach macro 2023-01-15 01:17:09 +03:00
Vadim Kuznetsov
69aa8c97ae Add routine to build VA module with OpenVAF 2022-12-19 19:50:18 +03:00
Vadim Kuznetsov
98b1ca187d Merge branch 'master' into current 2022-10-30 12:34:50 +03:00
Vadim Kuznetsov
b72649f552 Add menu entry for the new tool 2022-09-25 15:26:50 +03:00
Vadim Kuznetsov
98d7478e63 Remove qucslib from tools menu 2022-09-24 18:01:38 +03:00
Vadim Kuznetsov
914901fd2b Remove remains of qucs_rescodes utility 2022-08-26 15:29:13 +03:00
Vadim Kuznetsov
f63e0d35d2 Implement library component search #135 2022-08-20 20:32:42 +03:00
Vadim Kuznetsov
628f543823 Implement Show Model button 2022-08-20 18:20:57 +03:00
Vadim Kuznetsov
192620fa6b Show symbol info on click in library tree 2022-08-19 15:40:17 +03:00
luz paz
10c1ee639c Fix various typos (including documenation)
Found via `codespell -q 3 -S *.ts,./qucs/ChangeLog -L ba,coul,inout,leaded,nd,numer,ro`
2022-07-05 07:08:28 -04:00
Krasilnikov Sergey
0dadb0fccc icons and subfolders in projectview + some fixes 2022-07-05 01:40:09 +03:00
Vadim Kuznetsov
19af73bc12 Fix more fontMetrics warnings 2022-02-24 22:30:33 +01:00
Vadim Kuznetsov
a1d014b9c2 Fix obsolete signals and slots 2022-02-15 21:26:33 +01:00
Vadim Kuznetzov
41779a93b8 Remove QucsApp::showHTML 2017-10-20 17:40:27 +03:00
Vadim Kuznetzov
9a1a7b17ec Remove WITH_SPICE CMake switch 2017-10-20 17:37:13 +03:00
Vadim Kuznetzov
8eef39dabc Fixed conflicts 2017-07-02 13:12:55 +03:00
Vadim Kuznetzov
0fe6a7e92c Add 'Compact Modelling' submenu in 'Tools' menu 2017-05-01 16:07:33 +03:00
Vadim Kuznetzov
286d54dbcd Merge branch 'autoifs' into spice4qucs_current 2017-05-01 15:54:37 +03:00
Vadim Kuznetzov
4a2e93b12f Fixed after merge of spic4qucs_current 2016-11-05 17:44:57 +03:00