40 Commits

Author SHA1 Message Date
ThomasZecha
0d97f032bb Fix compiler warnings
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>
2025-01-07 12:11:57 +01:00
Vadim Kuznetsov
7fde61997c Remove conditional Qt5 code 2025-01-04 12:15:41 +03:00
Vadim Kuznetsov
6b39fda03c Remove WITH_QT6; switch to Qt6 by default 2025-01-03 22:06:56 +03:00
Vadim Kuznetsov
b0523fa392
Merge pull request #1133 from andresmmera/SPAR_Viewer_Improvements
S-parameter Viewer: Some improvements
2024-12-16 15:49:29 +01:00
Muhammet Şükrü Demir
fb686be61f add some compiler opt. flag 2024-11-26 21:05:14 +00:00
Integral
30f8ddd583
refactor: replace non-empty QString constructors with QStringLiteral() 2024-11-04 15:53:11 +08:00
andresmmera
50dc69b0e9 Fix trace style when loading a session file 2024-10-31 06:57:28 +01:00
andresmmera
fa36ac584f Improvement: Save only S-par data on session files
Before this commit, all traces associated to a S-parameter file were saved in the session file even if the user was not displaying them. This causes a heavy overhead specially in large files.

Now, the session file only contains S-parameter data. If the user wants to display additional traces such as K, mu, |delta|, etc., they are computed on demand
2024-10-31 06:49:58 +01:00
andresmmera
b25d59dc07 Fix: Wrong pen width when loading traces from file
It was found that when a session file is loaded the width of the traces was 1 regardless the trace setting. 

The pen width was omitted... This commit fixes this problem.
2024-10-29 18:37:47 +01:00
andresmmera
ebaf0897d1 Recent files feature
It was found useful to have a "Recent Files" list with the last 10 sessions, this allows the user to quickly load a session file he/she worked recently.
2024-10-29 18:29:20 +01:00
andresmmera
8a7d158067 Note taking feature
A simple code editor example provided by Qt [1] was included in the tool. It is very convenient to have a text pad to include comments on the traces displayed.

The notes are saved into the session file and they are restored when a session file is opened.

[1] https://doc.qt.io/qt-5/qtwidgets-widgets-codeeditor-example.html
2024-10-29 18:29:20 +01:00
andresmmera
1ce2092ac9 Markers: Add the frequency text in the marker line
Now when the user adds a marker, the program adds a little text at the top of the marker line indicating the frequency.
2024-10-23 16:53:00 +02:00
andresmmera
588d1ed737 Limits offset feature
It was added an offset feature to move all the limits on a row.
2024-10-20 07:29:49 +02:00
andresmmera
e8759659b6 Fix: Widgets overlap when after removing trace/limit/marker
It was found that after a trace/limit/marker is removed, if the user adds a new trace/limit/marker, the new widgets overlap the last ones. 

This happened because the position of the widgets in the QGridLayoyt were not updated after a trace/limit/marker is removed.

This commit addresses this issue.
2024-10-19 16:03:39 +02:00
andresmmera
0ac78f52fc Remove separators when deleting limits
It was found that when a limit was removed, the separator related to it stayed there. This commit fixes this.
2024-10-19 08:30:48 +02:00
andresmmera
63a09bcad4 Set chart limits when loading session file 2024-10-19 08:25:47 +02:00
andresmmera
7c1fe57b5d Put the x-axis unit inside parenthesis 2024-10-19 08:16:24 +02:00
andresmmera
2d00287e3f Fix: Load session problem
It was found that before this commit the program had problems to load session files. Specifically, it didn't catch the axes limit and it also had problems if the previous session was saved with the lock status = true
2024-10-19 08:14:00 +02:00
andresmmera
1ab379af36 Fix: The tool crashed if it has traces and a session file is loaded
Before loading a session file it is needed to clear the current dataset and traces.
2024-10-18 19:47:10 +02:00
andresmmera
2d0bb97d6e Lock button: Remove checkable behavior
It is quite weird to have this button checkable. It gives the feeling that the GUI is frozen.
2024-10-18 19:42:13 +02:00
andresmmera
dec1949a56 Use QStringLiteral instead of direct comparison
Trying to solve CI errors
2024-10-10 19:49:00 +02:00
andresmmera
6d3e8ed655 Finer step in limit line spinboxes
5 points per div. It's smooth enough
2024-10-10 19:03:11 +02:00
andresmmera
9d643d7ac1 Handle file names with more than one "." 2024-10-10 18:52:38 +02:00
andresmmera
833ca35504 When opening a saved session, take this file as the path to "Save as" 2024-10-10 18:52:38 +02:00
andresmmera
61483ce681 Fix coupled limits when saving session 2024-10-10 18:52:38 +02:00
andresmmera
150d123be5 Update copyright text in qucs-s-spar-viewer.cpp 2024-10-10 18:52:38 +02:00
andresmmera
e83038470e Load session from xml file
Fixed save() function


Load session feature


Load settings file with drag and drop


Load session feature
2024-10-10 18:52:38 +02:00
andresmmera
cf09fbfcb7 Save session into a xml file 2024-10-10 16:50:21 +02:00
andresmmera
9310ca1899 Limit lines feature 2024-10-10 16:50:21 +02:00
andresmmera
b8b271a0b0 Set the minimum step in the QSpinBoxes to 1/10 of the div unit
This is settings allows the changes on the graph to be more dynamic
2024-10-10 16:50:21 +02:00
andresmmera
758a502f27 Lock feature
A toogle button was added to lock the axes. Sometimes it's annoying to have the axes changing the settings constantly when managing traces
2024-10-10 16:50:21 +02:00
andresmmera
1a97969960 Grab marker data from dataset instead from traces
This was showing clipped data from the display
2024-10-10 16:50:21 +02:00
andresmmera
54bd742ffc Remove warnings
1) The warning is related to a potential performance issue with Qt containers when used in C++11 range-based for loops

"c++11 range-loop might detach Qt container (QList) [clazy-range-loop-detach]"

2) tmp variable unused in exit() function
2024-10-10 16:50:21 +02:00
andresmmera
eb8762132b Color button update
This commit gets rid of QPalette. It doesn't work well on Windows. The color of the button is forced using the stylesheet.
2024-09-13 09:37:31 +02:00
andresmmera
ab835c09b6 Prevent the tool from adding the same file twice 2024-09-13 07:13:54 +02:00
andresmmera
9b67b2ef45 Fix auto-adjust x-axis 2024-09-10 17:50:49 +02:00
andresmmera
1317db595c Fix warnings 2024-09-10 17:49:45 +02:00
andresmmera
933d130ec4 Fix auto-adjust y-axis 2024-09-10 17:38:43 +02:00
andresmmera
0258a7eada Ci fixes (squashed)
Remove unneeded CMakeLists in bitmaps folder


Add qucs-s-spar-viewer.icns

This is required for the "build-mac-universal" and "build-mac-intel" jobs
Install libqt5charts5-dev dependency

I set up a fresh Lubuntu 24.04 on a VM and compiled the code from source using the instructions provided in the Qucs-S page. I found that to avoid the above error in the build, you need to install "libqt5charts5-dev" first. 

After that the compilation went fine. I'm not sure if it works with "libqt6charts6-dev". I'll check later.
Typo in CMakeLists


Remove unneeded include causing trouble in build appImage-Qt6

/home/runner/work/qucs_s/qucs_s/qucs-s-spar-viewer/main.cpp:28:10: fatal error: QDesktopWidget: No such file or directory
   28 | #include <QDesktopWidget>


Missing line in windows build


Patch provided by ra3xdh QtCharts


Update cmake.yml and deploy.yml

Added qt6-charts to Windows build and qt5charts to Qt5 build
2024-09-10 17:33:39 +02: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