1186 Commits

Author SHA1 Message Date
Uwe Rathmann
d52542c79b avoid QskComboBox::openPopup crash, when not having a window yet 2024-09-26 12:05:25 +02:00
Uwe Rathmann
3ecd1e90cc qskHasEnvironment moved from QskSetup.cpp to QskFunctions.cpp 2024-09-24 10:02:48 +02:00
Uwe Rathmann
8390aeb4fa QskSimpleListBox::removeAt fixed 2024-09-24 07:33:28 +02:00
Uwe Rathmann
46e5630f48 handling of background node improved 2024-09-17 17:52:52 +02:00
Uwe Rathmann
6c391b831d functionality of QskBoxFillNode/QskRectangleNode moved into QskBoxRectangleNode 2024-09-17 13:57:10 +02:00
Uwe Rathmann
3fb9ac8495 TODO markers added 2024-09-12 09:05:54 +02:00
Uwe Rathmann
cc64460a80 QskProgressRingSkinlet::contentsSizeHint with constraints 2024-09-09 09:54:23 +02:00
Uwe Rathmann
c61e3c7f36 CircularProgressBar removed, using QskProgressRing instead 2024-09-04 17:50:42 +02:00
Uwe Rathmann
86942d4226 code duplication eliminated 2024-09-04 17:08:40 +02:00
Uwe Rathmann
e8db2581f4 popup origin chenged to bottomLeft 2024-04-22 11:39:04 +02:00
Uwe Rathmann
3f77b01737 enable QskItem::PreferRasterForTextures as default setting.
using QSK_PREFER_FBO_PAINTING instead of QSK_PREFER_RASTER
2024-04-09 08:28:29 +02:00
Uwe Rathmann
fb7ab1e1e4 spinbox for material3 more like what Qt does 2024-02-27 14:14:17 +01:00
Uwe Rathmann
7f8bc6caef wrong constexpr removed 2024-02-27 07:56:52 +01:00
Uwe Rathmann
82bd6f1420 QskSpinBox text alignment fixed 2024-02-26 17:58:49 +01:00
Aldo Nicolas Bruno
f614117d96 Q_PROPERTY USER true 2024-02-25 09:04:58 +01:00
Uwe Rathmann
d0a888ab74 smooth transition of font sizes added 2024-02-23 13:46:23 +01:00
Uwe Rathmann
d2d0382ca8 Minimum/Maximum states removed 2024-02-22 10:05:10 +01:00
Uwe Rathmann
d0dd2ac93b the emphasis might also have an impact on the sizeHints 2024-02-22 09:37:17 +01:00
Peter Hartmann
7901157b2f push button: Update after setting the emphasis
Otherwise we won't re-read the possibly new skin hints
2024-02-22 09:34:39 +01:00
Uwe Rathmann
8fd8034d2a Qt5 incompatibility fixed 2024-02-20 13:31:53 +01:00
Uwe Rathmann
f3b4a3d8da QskFontRole introduced 2024-02-19 15:51:55 +01:00
Uwe Rathmann
d8dd07d305 combo box improved 2024-02-17 13:24:14 +01:00
Uwe Rathmann
49dda7ec04 QskSkinnable::effectiveFont accepts QFont ( beside font roles ). This
allows to assign individual fonts in application code without having to
define font roles
2024-02-09 09:11:41 +01:00
Uwe Rathmann
36fab6a9c2 QskItem::polishOnParentResize flag introduced 2024-02-08 11:33:42 +01:00
Uwe Rathmann
955d2f6c20 reducing the dialogs from what was once inspired from Qt/Widgets to
something simpler - inspired from QC2 dialogs - work i progress
2024-02-06 15:41:50 +01:00
Uwe Rathmann
2585385e28 QskSetup is a namespace now 2024-02-02 15:01:43 +01:00
Uwe Rathmann
995736ef83 global graphic provider map moved from QskSetup.cpp to QskGraphicProvider.cpp 2024-02-02 14:55:41 +01:00
Uwe Rathmann
4862b2b467 QskQuickItem shortened to QskItem 2024-02-02 14:13:33 +01:00
Uwe Rathmann
4fddc4db24 code moved from QskSetup to QskQuickItem 2024-02-02 12:38:03 +01:00
Uwe Rathmann
9d2414fd89 focusPolicy/wheelEnabled moved from QskControl to QskQuickItem 2024-02-02 09:48:26 +01:00
Uwe Rathmann
ceae1fef27 pointless handling of unused QEvent::FontChange/QEvent::PaletteChange
removed
2024-02-02 09:02:12 +01:00
Uwe Rathmann
5453cac209 initial size policy set to Fixed/Fixed 2024-02-01 17:09:02 +01:00
Uwe Rathmann
0f9c86d63b handling of selection states for sampled subcontrols added 2024-02-01 17:07:50 +01:00
Uwe Rathmann
330df7308a QskSkinTransition fixed 2024-02-01 15:40:16 +01:00
Uwe Rathmann
463187d048 no need to interpolate the metrics, when the color scheme changes 2024-02-01 15:35:31 +01:00
Uwe Rathmann
9117ccce1d trigger updates on eometry changes (
https://github.com/uwerat/qskinny/issues/379 )
2024-02-01 11:24:12 +01:00
Uwe Rathmann
59c2e8ca33 handling QStyleHints::colorSchemeChanged 2024-01-30 16:46:01 +01:00
Uwe Rathmann
5aa46b3ccc Qt::ColorScheme handling added to QskSkin - no more multiple skins for
dark/light.
2024-01-30 14:52:40 +01:00
Uwe Rathmann
3873e07765 Qt5 incompatibilities fixed 2024-01-30 14:41:38 +01:00
Uwe Rathmann
c1fdb03563 Qt5 incompatibility fixed 2024-01-30 13:30:58 +01:00
Uwe Rathmann
9ca02d7f1c moving away from std::unordered_map towards QHash. For transitions between
color schemes we need to copy out hash tables, what is way much easier
with the COW concept of the Qt containers. Also: according to
https://tessil.github.io/2016/08/29/benchmark-hopscotch-map.html QHash
seems to be faster in the most relevant category "Random full reads: execution time (integers)"
2024-01-30 13:04:38 +01:00
Uwe Rathmann
38e00addd6 code moved from QskSetup to QskSkinManager 2024-01-30 10:43:27 +01:00
Uwe Rathmann
0aff128eec obsolete qml bindings of QskSetup removed 2024-01-30 10:09:14 +01:00
Uwe Rathmann
57ebeec2df obsolete methods removed 2024-01-29 13:37:25 +01:00
Uwe Rathmann
0bdc7f5f86 flickering fixed, when moving over the scroll bar handle 2024-01-24 17:35:47 +01:00
Uwe Rathmann
158960fd80 dangling pointer crash ( skin changes ) fixed 2024-01-24 17:34:58 +01:00
Uwe Rathmann
511db2650e copyright notice generalised 2024-01-17 14:31:45 +01:00
Uwe Rathmann
81cecb6ec4 supoort of experimental Qt5/RHI dropped ( use Qt6 for RHI ). Building
the qsb files from the makefiles. See https://github.com/uwerat/qskinny/issues/356
2024-01-08 16:06:43 +01:00
Uwe Rathmann
e63b064f5a QskArcShadowNode introduced ( kudos to Rick ) 2024-01-06 15:05:30 +01:00
Uwe Rathmann
972f839cad Qt5 implementation of QskSceneTexture 2023-12-22 13:52:01 +01:00