/**************************************************************************** ** ** Copyright (C) 2021 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the Qt Labs Platform module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:COMM$ ** ** 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. ** ** $QT_END_LICENSE$ ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ****************************************************************************/ #include "qwidgetplatformcolordialog_p.h" #include "qwidgetplatformdialog_p.h" #include QT_BEGIN_NAMESPACE QWidgetPlatformColorDialog::QWidgetPlatformColorDialog(QObject *parent) : m_dialog(new QColorDialog) { setParent(parent); connect(m_dialog.data(), &QColorDialog::accepted, this, &QPlatformDialogHelper::accept); connect(m_dialog.data(), &QColorDialog::rejected, this, &QPlatformDialogHelper::reject); connect(m_dialog.data(), &QColorDialog::currentColorChanged, this, &QPlatformColorDialogHelper::currentColorChanged); } QWidgetPlatformColorDialog::~QWidgetPlatformColorDialog() { } QColor QWidgetPlatformColorDialog::currentColor() const { return m_dialog->currentColor(); } void QWidgetPlatformColorDialog::setCurrentColor(const QColor &color) { m_dialog->setCurrentColor(color); } void QWidgetPlatformColorDialog::exec() { m_dialog->exec(); } bool QWidgetPlatformColorDialog::show(Qt::WindowFlags flags, Qt::WindowModality modality, QWindow *parent) { QSharedPointer options = QPlatformColorDialogHelper::options(); m_dialog->setWindowTitle(options->windowTitle()); m_dialog->setOptions(static_cast(int(options->options())) | QColorDialog::DontUseNativeDialog); return QWidgetPlatformDialog::show(m_dialog.data(), flags, modality, parent); } void QWidgetPlatformColorDialog::hide() { m_dialog->hide(); } QT_END_NAMESPACE