summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/cocoa/qcocoafontdialoghelper.h
blob: 03824c76ce8fe40e37180c7fcbd8b0b37694babe (plain)
1234567891011121314151617181920212223242526272829
// Copyright (C) 2016 The Qt Company Ltd.// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only#ifndef QCOCOAFONTDIALOGHELPER_H#define QCOCOAFONTDIALOGHELPER_H#include <QObject>#include <qpa/qplatformdialoghelper.h> QT_BEGIN_NAMESPACE class QCocoaFontDialogHelper :public QPlatformFontDialogHelper {public:QCocoaFontDialogHelper();~QCocoaFontDialogHelper();voidexec() override;boolshow(Qt::WindowFlags windowFlags,Qt::WindowModality windowModality, QWindow *parent) override;voidhide() override;voidsetCurrentFont(const QFont &) override; QFont currentFont()const override;}; QT_END_NAMESPACE #endif// QCOCOAFONTDIALOGHELPER_H
close