1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929
|
/****************************************************************************
**
** Copyright (C) 2016 The Qt Company Ltd.
** Copyright (C) 2016 BasysKom GmbH.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the QtQuick module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 3 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPL3 included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 3 requirements
** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 2.0 or (at your option) the GNU General
** Public license version 3 or any later version approved by the KDE Free
** Qt Foundation. The licenses are as published by the Free Software
** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-2.0.html and
** https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include <private/qquickvaluetypes_p.h>
#include <private/qquickapplication_p.h>
#include <private/qqmlglobal_p.h>
#include <QtGui/QGuiApplication>
#include <QtGui/qdesktopservices.h>
#include <QtGui/qfontdatabase.h>
#include <QtGui/qstylehints.h>
#include <private/qv4engine_p.h>
#include <private/qv4object_p.h>
#ifdef Q_CC_MSVC
// MSVC2010 warns about 'unused variable t', even if it's used in t->~T()
# pragma warning( disable : 4189 )
#endif
QT_BEGIN_NAMESPACE
class QQuickColorProvider : public QQmlColorProvider
{
public:
QVariant colorFromString(const QString &s, bool *ok) override
{
QColor c(s);
if (c.isValid()) {
if (ok) *ok = true;
return QVariant(c);
}
if (ok) *ok = false;
return QVariant();
}
unsigned rgbaFromString(const QString &s, bool *ok) override
{
QColor c(s);
if (c.isValid()) {
if (ok) *ok = true;
return c.rgba();
}
if (ok) *ok = false;
return 0;
}
QString stringFromRgba(unsigned rgba)
{
QColor c(QColor::fromRgba(rgba));
if (c.isValid()) {
return QVariant(c).toString();
}
return QString();
}
QVariant fromRgbF(double r, double g, double b, double a) override
{
return QVariant(QColor::fromRgbF(r, g, b, a));
}
QVariant fromHslF(double h, double s, double l, double a) override
{
return QVariant(QColor::fromHslF(h, s, l, a));
}
QVariant fromHsvF(double h, double s, double v, double a) override
{
return QVariant(QColor::fromHsvF(h, s, v, a));
}
QVariant lighter(const QVariant &var, qreal factor) override
{
QColor color = var.value<QColor>();
color = color.lighter(int(qRound(factor*100.)));
return QVariant::fromValue(color);
}
QVariant darker(const QVariant &var, qreal factor) override
{
QColor color = var.value<QColor>();
color = color.darker(int(qRound(factor*100.)));
return QVariant::fromValue(color);
}
QVariant tint(const QVariant &baseVar, const QVariant &tintVar) override
{
QColor tintColor = tintVar.value<QColor>();
int tintAlpha = tintColor.alpha();
if (tintAlpha == 0xFF) {
return tintVar;
} else if (tintAlpha == 0x00) {
return baseVar;
}
// tint the base color and return the final color
QColor baseColor = baseVar.value<QColor>();
qreal a = tintColor.alphaF();
qreal inv_a = 1.0 - a;
qreal r = tintColor.redF() * a + baseColor.redF() * inv_a;
qreal g = tintColor.greenF() * a + baseColor.greenF() * inv_a;
qreal b = tintColor.blueF() * a + baseColor.blueF() * inv_a;
return QVariant::fromValue(QColor::fromRgbF(r, g, b, a + inv_a * baseColor.alphaF()));
}
};
// Note: The functions in this class provide handling only for the types
// that the QML engine will currently actually call them for, so many
// appear incompletely implemented. For some functions, the implementation
// would be obvious, but for others (particularly create and createFromString)
// the exact semantics are unknown. For this reason unused functionality
// has been omitted.
class QQuickValueTypeProvider : public QQmlValueTypeProvider
{
public:
#if defined(QT_NO_DEBUG) && !defined(QT_FORCE_ASSERTS)
#define ASSERT_VALID_SIZE(size, min) Q_UNUSED(size)
#else
#define ASSERT_VALID_SIZE(size, min) Q_ASSERT(size >= min)
#endif
static QVector2D vector2DFromString(const QString &s, bool *ok)
{
if (s.count(QLatin1Char(',')) == 1) {
int index = s.indexOf(QLatin1Char(','));
bool xGood, yGood;
float xCoord = s.leftRef(index).toFloat(&xGood);
float yCoord = s.midRef(index + 1).toFloat(&yGood);
if (xGood && yGood) {
if (ok) *ok = true;
return QVector2D(xCoord, yCoord);
}
}
if (ok) *ok = false;
return QVector2D();
}
static QVector3D vector3DFromString(const QString &s, bool *ok)
{
if (s.count(QLatin1Char(',')) == 2) {
int index = s.indexOf(QLatin1Char(','));
int index2 = s.indexOf(QLatin1Char(','), index+1);
bool xGood, yGood, zGood;
float xCoord = s.leftRef(index).toFloat(&xGood);
float yCoord = s.midRef(index + 1, index2 - index - 1).toFloat(&yGood);
float zCoord = s.midRef(index2 + 1).toFloat(&zGood);
if (xGood && yGood && zGood) {
if (ok) *ok = true;
return QVector3D(xCoord, yCoord, zCoord);
}
}
if (ok) *ok = false;
return QVector3D();
}
static QVector4D vector4DFromString(const QString &s, bool *ok)
{
if (s.count(QLatin1Char(',')) == 3) {
int index = s.indexOf(QLatin1Char(','));
int index2 = s.indexOf(QLatin1Char(','), index+1);
int index3 = s.indexOf(QLatin1Char(','), index2+1);
bool xGood, yGood, zGood, wGood;
float xCoord = s.leftRef(index).toFloat(&xGood);
float yCoord = s.midRef(index + 1, index2 - index - 1).toFloat(&yGood);
float zCoord = s.midRef(index2 + 1, index3 - index2 - 1).toFloat(&zGood);
float wCoord = s.midRef(index3 + 1).toFloat(&wGood);
if (xGood && yGood && zGood && wGood) {
if (ok) *ok = true;
return QVector4D(xCoord, yCoord, zCoord, wCoord);
}
}
if (ok) *ok = false;
return QVector4D();
}
static QQuaternion quaternionFromString(const QString &s, bool *ok)
{
if (s.count(QLatin1Char(',')) == 3) {
int index = s.indexOf(QLatin1Char(','));
int index2 = s.indexOf(QLatin1Char(','), index+1);
int index3 = s.indexOf(QLatin1Char(','), index2+1);
bool sGood, xGood, yGood, zGood;
qreal sCoord = s.leftRef(index).toDouble(&sGood);
qreal xCoord = s.midRef(index+1, index2-index-1).toDouble(&xGood);
qreal yCoord = s.midRef(index2+1, index3-index2-1).toDouble(&yGood);
qreal zCoord = s.midRef(index3+1).toDouble(&zGood);
if (sGood && xGood && yGood && zGood) {
if (ok) *ok = true;
return QQuaternion(sCoord, xCoord, yCoord, zCoord);
}
}
if (ok) *ok = false;
return QQuaternion();
}
static QMatrix4x4 matrix4x4FromString(const QString &s, bool *ok)
{
if (s.count(QLatin1Char(',')) == 15) {
float matValues[16];
bool vOK = true;
QStringRef mutableStr(&s);
for (int i = 0; vOK && i < 16; ++i) {
int cidx = mutableStr.indexOf(QLatin1Char(','));
matValues[i] = mutableStr.left(cidx).toDouble(&vOK);
mutableStr = mutableStr.mid(cidx + 1);
}
if (vOK) {
if (ok) *ok = true;
return QMatrix4x4(matValues);
}
}
if (ok) *ok = false;
return QMatrix4x4();
}
static QColorSpace colorSpaceFromObject(const QV4::Value &object, QV4::ExecutionEngine *v4, bool *ok)
{
if (ok)
*ok = false;
QColorSpace retn;
QV4::Scope scope(v4);
QV4::ScopedObject obj(scope, object);
if (!obj) {
if (ok)
*ok = false;
return retn;
}
QV4::ScopedString s(scope);
QV4::ScopedValue vName(scope, obj->get((s = v4->newString(QStringLiteral("namedColorSpace")))));
if (vName->isInt32()) {
if (ok)
*ok = true;
return QColorSpace((QColorSpace::NamedColorSpace)vName->toInt32());
}
QV4::ScopedValue vPri(scope, obj->get((s = v4->newString(QStringLiteral("primaries")))));
QV4::ScopedValue vTra(scope, obj->get((s = v4->newString(QStringLiteral("transferFunction")))));
if (!vPri->isInt32() || !vTra->isInt32()) {
if (ok)
*ok = false;
return retn;
}
QColorSpace::Primaries pri = static_cast<QColorSpace::Primaries>(vPri->integerValue());
QColorSpace::TransferFunction tra = static_cast<QColorSpace::TransferFunction>(vTra->integerValue());
float gamma = 0.0f;
if (tra == QColorSpace::TransferFunction::Gamma) {
QV4::ScopedValue vGam(scope, obj->get((s = v4->newString(QStringLiteral("gamma")))));
if (!vGam->isNumber()) {
if (ok)
*ok = false;
return retn;
}
gamma = vGam->toNumber();
}
if (ok) *ok = true;
return QColorSpace(pri, tra, gamma);
}
static QFont fontFromObject(const QV4::Value &object, QV4::ExecutionEngine *v4, bool *ok)
{
if (ok)
*ok = false;
QFont retn;
QV4::Scope scope(v4);
QV4::ScopedObject obj(scope, object);
if (!obj) {
if (ok)
*ok = false;
return retn;
}
QV4::ScopedString s(scope);
QV4::ScopedValue vbold(scope, obj->get((s = v4->newString(QStringLiteral("bold")))));
QV4::ScopedValue vcap(scope, obj->get((s = v4->newString(QStringLiteral("capitalization")))));
QV4::ScopedValue vfam(scope, obj->get((s = v4->newString(QStringLiteral("family")))));
QV4::ScopedValue vstyle(scope, obj->get((s = v4->newString(QStringLiteral("styleName")))));
QV4::ScopedValue vital(scope, obj->get((s = v4->newString(QStringLiteral("italic")))));
QV4::ScopedValue vlspac(scope, obj->get((s = v4->newString(QStringLiteral("letterSpacing")))));
QV4::ScopedValue vpixsz(scope, obj->get((s = v4->newString(QStringLiteral("pixelSize")))));
QV4::ScopedValue vpntsz(scope, obj->get((s = v4->newString(QStringLiteral("pointSize")))));
QV4::ScopedValue vstrk(scope, obj->get((s = v4->newString(QStringLiteral("strikeout")))));
QV4::ScopedValue vundl(scope, obj->get((s = v4->newString(QStringLiteral("underline")))));
QV4::ScopedValue vweight(scope, obj->get((s = v4->newString(QStringLiteral("weight")))));
QV4::ScopedValue vwspac(scope, obj->get((s = v4->newString(QStringLiteral("wordSpacing")))));
QV4::ScopedValue vhint(scope, obj->get((s = v4->newString(QStringLiteral("hintingPreference")))));
QV4::ScopedValue vkerning(scope, obj->get((s = v4->newString(QStringLiteral("kerning")))));
QV4::ScopedValue vshaping(scope, obj->get((s = v4->newString(QStringLiteral("preferShaping")))));
// pull out the values, set ok to true if at least one valid field is given.
if (vbold->isBoolean()) {
retn.setBold(vbold->booleanValue());
if (ok) *ok = true;
}
if (vcap->isInt32()) {
retn.setCapitalization(static_cast<QFont::Capitalization>(vcap->integerValue()));
if (ok) *ok = true;
}
if (vfam->isString()) {
retn.setFamily(vfam->toQString());
if (ok) *ok = true;
}
if (vstyle->isString()) {
retn.setStyleName(vstyle->toQString());
if (ok) *ok = true;
}
if (vital->isBoolean()) {
retn.setItalic(vital->booleanValue());
if (ok) *ok = true;
}
if (vlspac->isNumber()) {
retn.setLetterSpacing(QFont::AbsoluteSpacing, vlspac->asDouble());
if (ok) *ok = true;
}
if (vpixsz->isInt32()) {
retn.setPixelSize(vpixsz->integerValue());
if (ok) *ok = true;
}
if (vpntsz->isNumber()) {
retn.setPointSize(vpntsz->asDouble());
if (ok) *ok = true;
}
if (vstrk->isBoolean()) {
retn.setStrikeOut(vstrk->booleanValue());
if (ok) *ok = true;
}
if (vundl->isBoolean()) {
retn.setUnderline(vundl->booleanValue());
if (ok) *ok = true;
}
if (vweight->isInt32()) {
retn.setWeight(static_cast<QFont::Weight>(vweight->integerValue()));
if (ok) *ok = true;
}
if (vwspac->isNumber()) {
retn.setWordSpacing(vwspac->asDouble());
if (ok) *ok = true;
}
if (vhint->isInt32()) {
retn.setHintingPreference(static_cast<QFont::HintingPreference>(vhint->integerValue()));
if (ok) *ok = true;
}
if (vkerning->isBoolean()) {
retn.setKerning(vkerning->booleanValue());
if (ok) *ok = true;
}
if (vshaping->isBoolean()) {
bool enable = vshaping->booleanValue();
if (enable)
retn.setStyleStrategy(static_cast<QFont::StyleStrategy>(retn.styleStrategy() & ~QFont::PreferNoShaping));
else
retn.setStyleStrategy(static_cast<QFont::StyleStrategy>(retn.styleStrategy() | QFont::PreferNoShaping));
}
return retn;
}
static QMatrix4x4 matrix4x4FromObject(const QV4::Value &object, QV4::ExecutionEngine *v4, bool *ok)
{
if (ok)
*ok = false;
QV4::Scope scope(v4);
QV4::ScopedArrayObject array(scope, object);
if (!array)
return QMatrix4x4();
if (array->getLength() != 16)
return QMatrix4x4();
float matVals[16];
QV4::ScopedValue v(scope);
for (quint32 i = 0; i < 16; ++i) {
v = array->get(i);
if (!v->isNumber())
return QMatrix4x4();
matVals[i] = v->asDouble();
}
if (ok) *ok = true;
return QMatrix4x4(matVals);
}
const QMetaObject *getMetaObjectForMetaType(int type) override
{
switch (type) {
case QMetaType::QColor:
return &QQuickColorValueType::staticMetaObject;
case QMetaType::QColorSpace:
return &QQuickColorSpaceValueType::staticMetaObject;
case QMetaType::QFont:
return &QQuickFontValueType::staticMetaObject;
case QMetaType::QVector2D:
return &QQuickVector2DValueType::staticMetaObject;
case QMetaType::QVector3D:
return &QQuickVector3DValueType::staticMetaObject;
case QMetaType::QVector4D:
return &QQuickVector4DValueType::staticMetaObject;
case QMetaType::QQuaternion:
return &QQuickQuaternionValueType::staticMetaObject;
case QMetaType::QMatrix4x4:
return &QQuickMatrix4x4ValueType::staticMetaObject;
default:
break;
}
return nullptr;
}
bool init(int type, QVariant& dst) override
{
switch (type) {
case QMetaType::QColor:
dst.setValue<QColor>(QColor());
return true;
case QMetaType::QColorSpace:
dst.setValue<QColorSpace>(QColorSpace());
return true;
case QMetaType::QFont:
dst.setValue<QFont>(QFont());
return true;
case QMetaType::QVector2D:
dst.setValue<QVector2D>(QVector2D());
return true;
case QMetaType::QVector3D:
dst.setValue<QVector3D>(QVector3D());
return true;
case QMetaType::QVector4D:
dst.setValue<QVector4D>(QVector4D());
return true;
case QMetaType::QQuaternion:
dst.setValue<QQuaternion>(QQuaternion());
return true;
case QMetaType::QMatrix4x4:
dst.setValue<QMatrix4x4>(QMatrix4x4());
return true;
default: break;
}
return false;
}
bool create(int type, int argc, const void *argv[], QVariant *v) override
{
switch (type) {
case QMetaType::QFont: // must specify via js-object.
break;
case QMetaType::QVector2D:
if (argc == 1) {
const float *xy = reinterpret_cast<const float*>(argv[0]);
QVector2D v2(xy[0], xy[1]);
*v = QVariant(v2);
return true;
}
break;
case QMetaType::QVector3D:
if (argc == 1) {
const float *xyz = reinterpret_cast<const float*>(argv[0]);
QVector3D v3(xyz[0], xyz[1], xyz[2]);
*v = QVariant(v3);
return true;
}
break;
case QMetaType::QVector4D:
if (argc == 1) {
const float *xyzw = reinterpret_cast<const float*>(argv[0]);
QVector4D v4(xyzw[0], xyzw[1], xyzw[2], xyzw[3]);
*v = QVariant(v4);
return true;
}
break;
case QMetaType::QQuaternion:
if (argc == 1) {
const qreal *sxyz = reinterpret_cast<const qreal*>(argv[0]);
QQuaternion q(sxyz[0], sxyz[1], sxyz[2], sxyz[3]);
*v = QVariant(q);
return true;
}
break;
case QMetaType::QMatrix4x4:
if (argc == 0) {
QMatrix4x4 m;
*v = QVariant(m);
return true;
} else if (argc == 1) {
const qreal *vals = reinterpret_cast<const qreal*>(argv[0]);
QMatrix4x4 m(vals[0], vals[1], vals[2], vals[3],
vals[4], vals[5], vals[6], vals[7],
vals[8], vals[9], vals[10], vals[11],
vals[12], vals[13], vals[14], vals[15]);
*v = QVariant(m);
return true;
}
break;
default: break;
}
return false;
}
template<typename T>
bool createFromStringTyped(void *data, size_t dataSize, T initValue)
{
ASSERT_VALID_SIZE(dataSize, sizeof(T));
T *t = reinterpret_cast<T *>(data);
new (t) T(initValue);
return true;
}
bool createFromString(int type, const QString &s, void *data, size_t dataSize) override
{
bool ok = false;
switch (type) {
case QMetaType::QColor:
return createFromStringTyped<QColor>(data, dataSize, QColor(s));
case QMetaType::QVector2D:
return createFromStringTyped<QVector2D>(data, dataSize, vector2DFromString(s, &ok));
case QMetaType::QVector3D:
return createFromStringTyped<QVector3D>(data, dataSize, vector3DFromString(s, &ok));
case QMetaType::QVector4D:
return createFromStringTyped<QVector4D>(data, dataSize, vector4DFromString(s, &ok));
case QMetaType::QQuaternion:
return createFromStringTyped<QQuaternion>(data, dataSize, quaternionFromString(s, &ok));
case QMetaType::QMatrix4x4:
return createFromStringTyped<QMatrix4x4>(data, dataSize, matrix4x4FromString(s, &ok));
default: break;
}
return false;
}
bool createStringFrom(int type, const void *data, QString *s) override
{
if (type == QMetaType::QColor) {
const QColor *color = reinterpret_cast<const QColor *>(data);
new (s) QString(QVariant(*color).toString());
return true;
}
return false;
}
bool variantFromString(const QString &s, QVariant *v) override
{
QColor c(s);
if (c.isValid()) {
*v = QVariant::fromValue(c);
return true;
}
bool ok = false;
QVector2D v2 = vector2DFromString(s, &ok);
if (ok) {
*v = QVariant::fromValue(v2);
return true;
}
QVector3D v3 = vector3DFromString(s, &ok);
if (ok) {
*v = QVariant::fromValue(v3);
return true;
}
QVector4D v4 = vector4DFromString(s, &ok);
if (ok) {
*v = QVariant::fromValue(v4);
return true;
}
QQuaternion q = quaternionFromString(s, &ok);
if (ok) {
*v = QVariant::fromValue(q);
return true;
}
QMatrix4x4 m = matrix4x4FromString(s, &ok);
if (ok) {
*v = QVariant::fromValue(m);
return true;
}
return false;
}
bool variantFromString(int type, const QString &s, QVariant *v) override
{
bool ok = false;
switch (type) {
case QMetaType::QColor:
{
QColor c(s);
*v = QVariant::fromValue(c);
return true;
}
case QMetaType::QVector2D:
{
*v = QVariant::fromValue(vector2DFromString(s, &ok));
return true;
}
case QMetaType::QVector3D:
{
*v = QVariant::fromValue(vector3DFromString(s, &ok));
return true;
}
case QMetaType::QVector4D:
{
*v = QVariant::fromValue(vector4DFromString(s, &ok));
return true;
}
case QMetaType::QQuaternion:
{
*v = QVariant::fromValue(quaternionFromString(s, &ok));
return true;
}
case QMetaType::QMatrix4x4:
{
*v = QVariant::fromValue(matrix4x4FromString(s, &ok));
return true;
}
default:
break;
}
return false;
}
bool variantFromJsObject(int type, const QV4::Value &object, QV4::ExecutionEngine *v4, QVariant *v) override
{
QV4::Scope scope(v4);
#ifndef QT_NO_DEBUG
QV4::ScopedObject obj(scope, object);
Q_ASSERT(obj);
#endif
bool ok = false;
switch (type) {
case QMetaType::QColorSpace:
*v = QVariant::fromValue(colorSpaceFromObject(object, v4, &ok));
break;
case QMetaType::QFont:
*v = QVariant::fromValue(fontFromObject(object, v4, &ok));
break;
case QMetaType::QMatrix4x4:
*v = QVariant::fromValue(matrix4x4FromObject(object, v4, &ok));
default: break;
}
return ok;
}
template<typename T>
bool typedEqual(const void *lhs, const QVariant& rhs)
{
return (*(reinterpret_cast<const T *>(lhs)) == rhs.value<T>());
}
bool equal(int type, const void *lhs, const QVariant &rhs) override
{
switch (type) {
case QMetaType::QColor:
return typedEqual<QColor>(lhs, rhs);
case QMetaType::QColorSpace:
return typedEqual<QColorSpace>(lhs, rhs);
case QMetaType::QFont:
return typedEqual<QFont>(lhs, rhs);
case QMetaType::QVector2D:
return typedEqual<QVector2D>(lhs, rhs);
case QMetaType::QVector3D:
return typedEqual<QVector3D>(lhs, rhs);
case QMetaType::QVector4D:
return typedEqual<QVector4D>(lhs, rhs);
case QMetaType::QQuaternion:
return typedEqual<QQuaternion>(lhs, rhs);
case QMetaType::QMatrix4x4:
return typedEqual<QMatrix4x4>(lhs, rhs);
default: break;
}
return false;
}
template<typename T>
bool typedStore(const void *src, void *dst, size_t dstSize)
{
ASSERT_VALID_SIZE(dstSize, sizeof(T));
const T *srcT = reinterpret_cast<const T *>(src);
T *dstT = reinterpret_cast<T *>(dst);
new (dstT) T(*srcT);
return true;
}
bool store(int type, const void *src, void *dst, size_t dstSize) override
{
Q_UNUSED(dstSize);
switch (type) {
case QMetaType::QColor:
{
Q_ASSERT(dstSize >= sizeof(QColor));
const QRgb *rgb = reinterpret_cast<const QRgb *>(src);
QColor *color = reinterpret_cast<QColor *>(dst);
new (color) QColor(QColor::fromRgba(*rgb));
return true;
}
default: break;
}
return false;
}
template<typename T>
bool typedRead(const QVariant& src, int dstType, void *dst)
{
T *dstT = reinterpret_cast<T *>(dst);
if (src.userType() == dstType) {
*dstT = src.value<T>();
} else {
*dstT = T();
}
return true;
}
bool read(const QVariant &src, void *dst, int dstType) override
{
switch (dstType) {
case QMetaType::QColor:
return typedRead<QColor>(src, dstType, dst);
case QMetaType::QColorSpace:
return typedRead<QColorSpace>(src, dstType, dst);
case QMetaType::QFont:
return typedRead<QFont>(src, dstType, dst);
case QMetaType::QVector2D:
return typedRead<QVector2D>(src, dstType, dst);
case QMetaType::QVector3D:
return typedRead<QVector3D>(src, dstType, dst);
case QMetaType::QVector4D:
return typedRead<QVector4D>(src, dstType, dst);
case QMetaType::QQuaternion:
return typedRead<QQuaternion>(src, dstType, dst);
case QMetaType::QMatrix4x4:
return typedRead<QMatrix4x4>(src, dstType, dst);
default: break;
}
return false;
}
template<typename T>
bool typedWrite(const void *src, QVariant& dst)
{
const T *srcT = reinterpret_cast<const T *>(src);
if (dst.value<T>() != *srcT) {
dst = *srcT;
return true;
}
return false;
}
bool write(int type, const void *src, QVariant& dst) override
{
switch (type) {
case QMetaType::QColor:
return typedWrite<QColor>(src, dst);
case QMetaType::QColorSpace:
return typedWrite<QColorSpace>(src, dst);
case QMetaType::QFont:
return typedWrite<QFont>(src, dst);
case QMetaType::QVector2D:
return typedWrite<QVector2D>(src, dst);
case QMetaType::QVector3D:
return typedWrite<QVector3D>(src, dst);
case QMetaType::QVector4D:
return typedWrite<QVector4D>(src, dst);
case QMetaType::QQuaternion:
return typedWrite<QQuaternion>(src, dst);
case QMetaType::QMatrix4x4:
return typedWrite<QMatrix4x4>(src, dst);
default: break;
}
return false;
}
#undef ASSERT_VALID_SIZE
};
class QQuickGuiProvider : public QQmlGuiProvider
{
public:
QQuickApplication *application(QObject *parent) override
{
return new QQuickApplication(parent);
}
#if QT_CONFIG(im)
QInputMethod *inputMethod() override
{
QInputMethod *im = qGuiApp->inputMethod();
QQmlEngine::setObjectOwnership(im, QQmlEngine::CppOwnership);
return im;
}
#endif
QStyleHints *styleHints() override
{
QStyleHints *sh = qGuiApp->styleHints();
QQmlEngine::setObjectOwnership(sh, QQmlEngine::CppOwnership);
return sh;
}
QStringList fontFamilies() override
{
QFontDatabase database;
return database.families();
}
bool openUrlExternally(QUrl &url) override
{
#ifndef QT_NO_DESKTOPSERVICES
return QDesktopServices::openUrl(url);
#else
Q_UNUSED(url);
return false;
#endif
}
QString pluginName() const override
{
return QGuiApplication::platformName();
}
};
static QQuickValueTypeProvider *getValueTypeProvider()
{
static QQuickValueTypeProvider valueTypeProvider;
return &valueTypeProvider;
}
static QQuickColorProvider *getColorProvider()
{
static QQuickColorProvider colorProvider;
return &colorProvider;
}
static QQuickGuiProvider *getGuiProvider()
{
static QQuickGuiProvider guiProvider;
return &guiProvider;
}
void QQuick_initializeProviders()
{
QQml_addValueTypeProvider(getValueTypeProvider());
QQml_setColorProvider(getColorProvider());
QQml_setGuiProvider(getGuiProvider());
}
void QQuick_deinitializeProviders()
{
QQml_removeValueTypeProvider(getValueTypeProvider());
QQml_setColorProvider(nullptr); // technically, another plugin may have overridden our providers
QQml_setGuiProvider(nullptr); // but we cannot handle that case in a sane way.
}
QT_END_NAMESPACE
|