234 Commits

Author SHA1 Message Date
Vadim Kuznetsov
cc7dd5f95f Fix rectangle resize 2025-01-17 18:32:23 +03:00
Vadim Kuznetsov
050665e022 Fix rectangle select after rotate 2025-01-16 20:33:07 +03:00
Vadim Kuznetsov
6b39fda03c Remove WITH_QT6; switch to Qt6 by default 2025-01-03 22:06:56 +03:00
Vadim Kuznetsov
3dec901955 Don't clear imput fields when press Apply in ID_Dialog 2024-12-29 19:09:15 +03: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
Integral
30f8ddd583
refactor: replace non-empty QString constructors with QStringLiteral() 2024-11-04 15:53:11 +08:00
ivandi
f3a46cb77b Fix missing text in schematic after upgrading to Qt-6.8.0 2024-10-15 21:18:07 -04:00
Krasilnikov Sergey
8ad28c5193 fix unneeded setPen 2024-10-09 11:09:52 +03:00
Krasilnikov Sergey
e3dbb0e99e fix wrong selected bounding box for elliptic arc 2024-10-09 10:14:28 +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
d30e32888c Assign port numbers for symbol-only mode; preserve ports order on save 2024-06-16 18:57:30 +03:00
Andrey Kalmykov
dbf13aab42 Process PortSymbol name when it's saved to or loaded from a string 2024-06-12 16:43:27 +02:00
Andrey Kalmykov
c10c7db9fc Make PortSymbol output its number in case its name string is empty
(This actually a fix of what I broke when I was migrating the
rendering from ViewPainter to QPainter)
2024-06-12 16:40:48 +02:00
Andrey Kalmykov
cbd9f00000 Restore qpainter state after paining the id_text element
The 'paint' function of ID_text missed the restore() call on painter,
which led to carrying the changes made to painter further down the
call chain. In other words, the painter state *after* painting the
ID_text wasn't the same as *before* doing it, and everything painted
after the ID_text was affected by this change in painter's state.

This commit add missing restore() call.

Fixes: ra3xdh/qucs_s#739
2024-06-07 23:07:57 +02:00
Andrey Kalmykov
c9d147c7c4 Migrate drawing primitives coordinates from int to double 2024-06-04 22:36:57 +03:00
Andrey Kalmykov
1a05e1310e Remove ViewPainter and related stuff
After switching everything to drawing using bare QPainter, a lot
of ViewPainter-based stuff became unused and basically obsolete,
including the ViewPainter itself.
2024-05-19 00:42:48 +03:00
Andrey Kalmykov
05c186b7c3 Add "QPainter" version of ID_Text::paint 2024-05-19 00:42:47 +03:00
Andrey Kalmykov
17d4f0a203 Add "QPainter" version of PortSymbol::paint 2024-05-19 00:42:47 +03:00
Andrey Kalmykov
c8af7593aa Add "QPainter" version of Painting::paint 2024-05-19 00:42:47 +03:00
Andrey Kalmykov
0cbb3836d3 Add "QPainter" version of EllipseArc::paint 2024-05-19 00:42:47 +03:00
Andrey Kalmykov
1ee8364831 Add "QPainter" version of GraphicLine::paint 2024-05-19 00:42:18 +03:00
Andrey Kalmykov
820ba2d52a Add "QPainter" version of GraphicText::paint 2024-05-19 00:42:17 +03:00
Andrey Kalmykov
44dfae9a8b Add "QPainter" version of Rectangle::paint 2024-05-19 00:42:17 +03:00
Andrey Kalmykov
1cf43cd272 Add "QPainter" version of Ellipse::paint 2024-05-19 00:42:17 +03:00
Andrey Kalmykov
a1813ee823 Add "QPainter" version of Arrow::paint 2024-05-18 23:27:32 +03: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
ca9d201358 Fix: show port numbers when editing *.sym file
- PortSymbol has two members: nameStr and numberStr.
- nameStr is usually empty and is set from Schematic::adjustPortNumber
  after performing some obscure checks.
- numberStr is usually contains a number
- PortSymbol::paint outputs 'nameStr' as ports "label"
- When editing a *.sym file, 'adjustPortNumber' is not called,
  nameStr remains empty

This patch makes PortSymbol use 'numberStr' as fallback value for
cases when 'nameStr' is empty. When editing a *.sym file one won't
see a port without label anymore.
2024-04-19 20:57:39 +03:00
Vadim Kuznetsov
4e83433c49 Fix build when both Qt version are installed 2024-03-06 10:48:56 +03:00
ivandi
8f2faffd10 Fix remaining dialogs with parent=0 or no parent
In sway tiling window manager these dialogs appear as maximized
top-level windows. Setting schematic pointer as parent makes them
appear as normal floating dialogs.
2024-01-22 21:02:16 -05:00
Krasilnikov Sergey
3b31674743 completely rewrite rotation of paintings
fixes #203
2023-12-11 15:13:33 +03:00
Sergei Krasilnikov
1ca2f06a32 fix qt6.6 deprecation 2023-11-27 22:59:34 +03:00
Vadim Kuznetsov
5cbea5602f Correct regexp; fixes #346 2023-11-01 20:40:06 +03:00
Krasilnikov Sergey
5432ec0514 fix print to pdf on windows 2023-06-18 15:28:20 +03:00
dsm
b6cc1916d4 remove versionless cmake function usage 2023-02-13 22:20:42 +03:00
dsm
888feebceb fixed for remove WITH_QT6 2023-02-13 21:58:26 +03:00
Adam Strzelecki
2c4b3c2157 Do not include CMAKE_SOURCE_DIR as this breaks case insensitive FS build
There is not reason we were adding CMAKE_SOURCE_DIR, however it was
breaking building on case insensitive FS e.g. macOS when looking for
<version> header.
2023-02-12 22:44:48 +01:00
Vadim Kuznetsov
caf1aa85d3 Provide CMake option to build with Qt6 2023-01-25 11:07:42 +03:00
Krasilnikov Sergei
05177da97b working with qt6 2023-01-17 13:27:12 +03:00
zergud
cdc17b488f change cmakelist to qt6 2023-01-17 00:37:23 +03:00
Krasilnikov Sergey
b70e615020 replace foreach macro 2023-01-15 01:17:09 +03:00
Vadim Kuznetsov
98b1ca187d Merge branch 'master' into current 2022-10-30 12:34:50 +03:00
Vadim Kuznetsov
94ef8ad21d Fix layout in filldialog #151 2022-09-12 15:03:49 +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
Vadim Kuznetsov
3295a776f5 Fix layout in arrowdialog.cpp #81 2022-03-12 10:45:03 +01:00
Vadim Kuznetsov
c6003e97af More fixed in paintings 2022-02-23 22:54:50 +01:00
Vadim Kuznetsov
bf9a87c520 Set explicit STATIC cmake target for libs 2022-02-20 16:27:02 +01:00
Vadim Kuznetsov
b697cc068b Fix more naming conflicts 2022-02-20 16:25:39 +01:00
Vadim Kuznetsov
2c22127363 Fix some warnings 2022-02-15 22:58:38 +01:00
Vadim Kuznetsov
53059f4fed Compiles everything in dialogs, paintings, and extsimkernels 2022-02-14 00:04:11 +01:00
Vadim Kuznetsov
8affb4e186 diagramdialog.cpp compiles 2022-02-13 19:55:25 +01:00