Age | Commit message (Collapse) | Author |
|
Due to fucking AT&T vs BSD suit copyright defaults to all rights
reserved. Fuck Berne Convention as well.
|
|
|
|
C++ expects pointer so let it have it.
|
|
|
|
|
|
QSlider and value<t> messed up the value in a feedback loop.
Incidentally, for our use cases QSlider and value<t> are on the same
thread and they'll connect directly.
Issue: #427
Reported-by: @DaMichel
|
|
The generic QVariant comparison works badly for QList<QPointF>.
Create a comparator between two QVariants for base_value in value<tp>
ctor, using QVariant::value<tp> which returns right results once it's
converted to tp.
If a value was registered for a name in a bundle, use that comparator as
the comparator for that name. In case conflicting value types were
registered always use generic comparison for that name.
std::type_index needs to be used here since value<t> can be instantiated
in different modules (libraries), resulting in different value for the
comparator function pointer.
Move group::operator== to bundle type to avoid circular include for
connector.h.
Also use element_type more consistently in value<tp>.
|
|
|
|
|
|
|
|
|
|
- adjust usages
- add support for QList signals and metatype
|