Commit Graph

1325 Commits

Author SHA1 Message Date
Uwe Rathmann 0354121199 unused lambda capture removed 2022-04-22 08:39:01 +02:00
Uwe Rathmann 293499db23 avoid conflicts with RGB from wingdi.h 2022-04-22 08:21:20 +02:00
Uwe Rathmann 73e35090a2 Merge branch 'master' of https://github.com/uwerat/qskinny 2022-04-22 08:13:44 +02:00
Uwe Rathmann 9e79657a78 avoid warnings about narrowing size_t to int 2022-04-22 08:13:19 +02:00
Uwe Rathmann b13f15823c handling of devicePixelratio for pixmaps fixed 2022-04-21 13:08:50 +02:00
Uwe Rathmann 5fa323cb3f boilerplate code to have QskSegmentedBar in the gallery. 2022-04-20 15:25:15 +02:00
Uwe Rathmann 2444e95f93 formal adjustments 2022-04-20 14:20:41 +02:00
Uwe Rathmann 410a00e89b QskSegmentedBar ( inspired by the IOS segmented control ) added 2022-04-20 14:14:37 +02:00
Uwe Rathmann 29421138ab suing QskMenu::Segement instead of Qskmenu::Cell to be in line with other
controls
2022-04-20 13:58:53 +02:00
Uwe Rathmann e38c2451e0 missing moc include 2022-04-20 13:54:27 +02:00
Uwe Rathmann eb5eb60216 all node role enums should have RoleCount 2022-04-20 13:50:14 +02:00
Uwe Rathmann 357dd9b68c Qsk::Position removed ( Qt::Edge is good enough ) 2022-04-17 13:19:33 +02:00
Uwe Rathmann e0f7397eb7 using Qt::Edge instead of Qsk::Position 2022-04-17 12:37:13 +02:00
Uwe Rathmann 905d2485f3 resetPlacementPolicy added 2022-04-16 20:38:50 +02:00
Uwe Rathmann 894491fda8 moc include added 2022-04-16 20:38:06 +02:00
Uwe Rathmann b12925d171 pre Qt 5.15 code removed 2022-04-16 17:02:53 +02:00
Uwe Rathmann 099890543b dropping support for Qt < 5.15 2022-04-16 16:29:58 +02:00
Uwe Rathmann b64084a561 using left/top/right/bottom 2022-04-16 16:01:40 +02:00
Uwe Rathmann 729b39ee13 obsolete comment removed 2022-04-16 16:00:19 +02:00
Uwe Rathmann 870cfbd27d heuristic for initializing the cascading property moved from skin to
QskMenu
2022-04-16 12:25:39 +02:00
Uwe Rathmann 95a88a7cdb compiler error fixed 2022-04-16 11:32:51 +02:00
Uwe Rathmann 0a6a3e6c5e placementPolicy as property 2022-04-15 13:19:52 +02:00
Uwe Rathmann 9c8c588245 using QMetaObject instead of QTimer for delayed calls 2022-04-14 08:26:49 +02:00
Peter Hartmann 94a186b553 fix build on Windows (#176)
* fix build on Windows

fixes the following error from CI:

common\QskAspect.cpp(199): error C2666: 'QFlags<QskAspect::State>::operator &': 3 overloads have similar conversions
D:\a\qskinny\Qt\5.15.2\msvc2019_64\include\QtCore/qflags.h(146): note: could be 'QFlags<QskAspect::State> QFlags<QskAspect::State>::operator &(Enum) noexcept const'
        with
        [
            Enum=QskAspect::State
        ]
D:\a\qskinny\Qt\5.15.2\msvc2019_64\include\QtCore/qflags.h(145): note: or       'QFlags<QskAspect::State> QFlags<QskAspect::State>::operator &(uint) noexcept const'
D:\a\qskinny\Qt\5.15.2\msvc2019_64\include\QtCore/qflags.h(144): note: or       'QFlags<QskAspect::State> QFlags<QskAspect::State>::operator &(int) noexcept const'
common\QskAspect.cpp(199): note: or       'built-in C++ operator&(QFlags<QskAspect::State>::Int, quint16)'
common\QskAspect.cpp(199): note: while trying to match the argument list '(QskAspect::States, const quint16)'

* fix build on Windows

fixes the following error from CI:

C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.31.31103\include\memory(3124): error C2027: use of undefined type 'QskMenuSkinlet::PrivateData'
D:\a\qskinny\qskinny\src\controls\QskMenuSkinlet.h(54): note: see declaration of 'QskMenuSkinlet::PrivateData'
C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.31.31103\include\memory(3123): note: while compiling class template member function 'void std::default_delete<QskMenuSkinlet::PrivateData>::operator ()(_Ty *) noexcept const'
        with
        [
            _Ty=QskMenuSkinlet::PrivateData
        ]
C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.31.31103\include\memory(3233): note: see reference to function template instantiation 'void std::default_delete<QskMenuSkinlet::PrivateData>::operator ()(_Ty *) noexcept const' being compiled
        with
        [
            _Ty=QskMenuSkinlet::PrivateData
        ]
C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.31.31103\include\memory(3160): note: see reference to class template instantiation 'std::default_delete<QskMenuSkinlet::PrivateData>' being compiled
D:\a\qskinny\qskinny\src\controls\QskMenuSkinlet.h(55): note: see reference to class template instantiation 'std::unique_ptr<QskMenuSkinlet::PrivateData,std::default_delete<QskMenuSkinlet::PrivateData>>' being compiled
C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.31.31103\include\memory(3124): error C2338: can't delete an incomplete type
C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Tools\MSVC\14.31.31103\include\memory(3125): warning C4150: deletion of pointer to incomplete type 'QskMenuSkinlet::PrivateData'; no destructor called
D:\a\qskinny\qskinny\src\controls\QskMenuSkinlet.h(54): note: see declaration of 'QskMenuSkinlet::PrivateData
2022-04-13 11:24:18 +02:00
Uwe Rathmann 0ff98f9532 avoid crash with vnc plugin 2022-04-11 12:05:00 +02:00
Uwe Rathmann e747b59514 respecting the graphicsApi 2022-04-11 10:11:57 +02:00
Uwe Rathmann bd5eb47439 Squashed commit of the following:
commit e2887cdc9d7cbf69445c325fe074578e2f38da6c
Author: Uwe Rathmann <Uwe.Rathmann@tigertal.de>
Date:   Mon Apr 11 09:58:03 2022 +0200

    wip

commit 63efe9f3ad95fdf3d9fb15c929a45b0dc7cc681c
Author: Uwe Rathmann <Uwe.Rathmann@tigertal.de>
Date:   Mon Apr 11 09:39:18 2022 +0200

    wip

commit a2f3621fb6fea787f32c53428eee26f30c69510c
Author: Uwe Rathmann <Uwe.Rathmann@tigertal.de>
Date:   Mon Apr 11 08:04:11 2022 +0200

    wip
2022-04-11 10:01:24 +02:00
Uwe Rathmann 8b362edb29 QskPlacementPolicy introduced 2022-04-08 16:46:20 +02:00
Uwe Rathmann d12bfe014b beautified 2022-04-08 15:37:55 +02:00
Uwe Rathmann eca1ada982 Qsk::Visibility added 2022-04-08 15:37:32 +02:00
Uwe Rathmann b28c7d815f project file fixed 2022-04-07 17:45:38 +02:00
Uwe Rathmann b4fdd468e1 hiding isTransparentForPositioner 2022-04-07 17:19:59 +02:00
Uwe Rathmann 35f98bedbb qskItemSize() removed, QQuickItem::size() is available since Qt 5.10 2022-04-07 15:43:45 +02:00
Uwe Rathmann d9c2227f5c forgotten debug statement removed 2022-04-06 10:56:48 +02:00
Uwe Rathmann 5791a9f6e4 colorswitch example removed 2022-04-06 08:41:32 +02:00
Uwe Rathmann f91bcdaa76 sending a second StyleChange once the transition is done 2022-04-05 15:31:17 +02:00
Uwe Rathmann bf6afd15a9 wip 2022-04-05 11:38:23 +02:00
Uwe Rathmann f0aded9fe1 wip 2022-04-05 10:41:36 +02:00
Uwe Rathmann 9d2e517036 QskCheckBox improvements 2022-04-05 10:15:08 +02:00
Uwe Rathmann cd9211c241 QskCheckBox improvements 2022-04-05 08:48:16 +02:00
Uwe Rathmann 29dbaa2189 the geometry for the tick can change 2022-04-04 18:32:17 +02:00
Uwe Rathmann 94269b0206 spelling aligned with Qt checkboxes ( triState -> tristate ) 2022-04-04 14:39:24 +02:00
Uwe Rathmann c7388cb730 formal cheges, check box added to gallery 2022-04-04 14:14:07 +02:00
Clemens Manert cdf062e5bd Add a Checkbox (#169)
* Add checkbox

* Add checkbox tests

* Add checkbox-groups

* Add checkbox-groups tests
2022-04-04 08:53:20 +02:00
Uwe Rathmann 5a5ad5ddd9 stop animation, when start/endValues are chaged. Otherwise we will run
into crashes, when value types have not been aligned or can't be aligned
2022-04-03 16:32:04 +02:00
Uwe Rathmann a3e07ed417 only check if types do match without doing the conversion 2022-04-03 16:31:54 +02:00
Uwe Rathmann fa0659b575 Q_DECLARE_TYPEINFO fixed 2022-04-03 16:31:34 +02:00
Uwe Rathmann eec8c71ebc compiler error fixed 2022-04-01 17:00:05 +02:00
Uwe Rathmann 919b8ba21d font initialization changed 2022-04-01 14:42:18 +02:00
Uwe Rathmann e2238690e0 using c++11 2022-04-01 14:41:56 +02:00
Uwe Rathmann 89bd7a35ef skin transition heavily changed 2022-03-31 18:09:03 +02:00
Uwe Rathmann 1084609db2 using QVariant::metaType 2022-03-31 12:25:24 +02:00
Uwe Rathmann 17aedfb216 QMetaType definitions added 2022-03-30 18:30:22 +02:00
Uwe Rathmann 0067ed2d8b QskStateCombination operators added 2022-03-30 18:21:31 +02:00
Uwe Rathmann 326783e4df debug operators improved 2022-03-30 12:28:45 +02:00
Uwe Rathmann e772d40350 try to convert if start/end values have different types 2022-03-29 11:15:08 +02:00
Uwe Rathmann b3ed43dc96 interpolation between monochrome gradients improved 2022-03-29 11:14:23 +02:00
Uwe Rathmann 048835a618 using qskEffectiveSkin 2022-03-29 08:09:19 +02:00
Uwe Rathmann 1d4cc69223 making hintTable() public 2022-03-29 08:08:46 +02:00
Uwe Rathmann 3b7a892424 qHash added 2022-03-29 08:08:06 +02:00
Uwe Rathmann cefe16ca28 tracking states of the aspects in a QskSkinHintTable 2022-03-28 21:28:56 +02:00
Uwe Rathmann 2b0c2f70dd more State operators 2022-03-28 20:33:42 +02:00
Uwe Rathmann e392b76f15 making code slightly more readable 2022-03-28 20:17:56 +02:00
Uwe Rathmann 53184fb555 making code more readable 2022-03-27 19:05:40 +02:00
Uwe Rathmann 217f0e0df5 alpha -> opacity 2022-03-27 17:54:16 +02:00
Uwe Rathmann a109f0172a accepting hover events as default 2022-03-26 16:22:47 +01:00
Uwe Rathmann cd2908244d do not like protected keywords in macros 2022-03-25 18:17:14 +01:00
Uwe Rathmann 155d565a0a using QSK_EVENT_DISABLE_COPY 2022-03-25 18:04:41 +01:00
Uwe Rathmann 0c912d2e8d Q_OBJECT added 2022-03-25 16:22:02 +01:00
Uwe Rathmann 9f54d2a335 remove/take fixed 2022-03-25 13:39:18 +01:00
Uwe Rathmann 57c2a25e92 hash calls harmonized 2022-03-25 11:21:32 +01:00
Uwe Rathmann ea88ab6e4c using reserve where possible 2022-03-25 10:29:12 +01:00
Uwe Rathmann e7c056047b introducing QskHashValue to work around Qt5/6 incompatibilities 2022-03-25 10:28:06 +01:00
Uwe Rathmann 41ded3ccf9 making clazy happier 2022-03-25 07:46:48 +01:00
Uwe Rathmann ec3da9af4f making clazy happier 2022-03-24 17:33:40 +01:00
Uwe Rathmann a3e7b96694 reserving memory in advance 2022-03-24 17:33:01 +01:00
Uwe Rathmann 564079c318 making clazy happier 2022-03-24 17:30:50 +01:00
Uwe Rathmann ca6a029b96 using const methods 2022-03-24 17:18:27 +01:00
Uwe Rathmann b04c4b8060 Q_DISABLE_COPY added 2022-03-24 17:13:47 +01:00
Uwe Rathmann d4eadcd004 reserving memory in advance 2022-03-24 17:13:09 +01:00
Uwe Rathmann 24f3cfb893 Q_DISABLE_COPY added 2022-03-24 17:12:34 +01:00
Uwe Rathmann 995b54a497 bad return statements fixed 2022-03-24 17:10:11 +01:00
Uwe Rathmann 065702ad5a QskDialogButtonBox::isDefaultButtonKeyEvent fixed 2022-03-24 11:44:08 +01:00
Uwe Rathmann 3a6d052c30 QskSkinTransition pimpled 2022-03-24 11:17:03 +01:00
Uwe Rathmann d8bc768be8 pimpled 2022-03-24 11:14:46 +01:00
Uwe Rathmann 6e94c5a937 Q_DISABLE_COPY added 2022-03-24 11:12:45 +01:00
Uwe Rathmann 0dbf6cfbd4 using qAsConst 2022-03-24 10:39:33 +01:00
Uwe Rathmann b7faf34ff0 making QskGraphic a Q_GADGET 2022-03-24 10:26:33 +01:00
Uwe Rathmann e33672456e QskStandardSymbol as namespace 2022-03-24 08:50:53 +01:00
Uwe Rathmann 71abc95f8f using reference parameters 2022-03-24 08:45:06 +01:00
Uwe Rathmann 9443111b05 using const method 2022-03-24 08:42:54 +01:00
Uwe Rathmann e306907802 using qAsConst 2022-03-24 08:41:11 +01:00
Uwe Rathmann 5cd3de9943 pointless QObject inheritance removed 2022-03-24 08:27:17 +01:00
Uwe Rathmann 6dd81fad8c using const getter 2022-03-24 08:20:05 +01:00
Uwe Rathmann 4b1552439d using QStringLiteral 2022-03-24 08:19:24 +01:00
Uwe Rathmann 6ae31b856c class moved to anonymous namespace 2022-03-24 08:18:15 +01:00
Uwe Rathmann 1597c0e015 using c++11 2022-03-24 08:11:29 +01:00
Uwe Rathmann d3d4cbb51f beautified 2022-03-24 08:10:57 +01:00
Uwe Rathmann 56a721ff81 using reference parameter 2022-03-24 08:10:29 +01:00
Uwe Rathmann 7d464da5b0 Q_EMIT added 2022-03-24 08:10:04 +01:00