2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2009-12-03 16:23:15 +01:00
|
|
|
|
2016-03-18 07:55:01 +01:00
|
|
|
#pragma once
|
2009-12-03 16:23:15 +01:00
|
|
|
|
2020-09-28 16:17:44 +02:00
|
|
|
#include <QStringList>
|
2009-12-03 16:23:15 +01:00
|
|
|
|
|
|
|
|
namespace Designer {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
// Goto slot invoked by the designer context menu. Either navigates
|
|
|
|
|
// to an existing slot function or create a new one.
|
|
|
|
|
bool navigateToSlot(const QString &uiFileName,
|
|
|
|
|
const QString &objectName,
|
|
|
|
|
const QString &signalSignature,
|
|
|
|
|
const QStringList ¶meterNames,
|
|
|
|
|
QString *errorMessage);
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Designer
|