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
|
2011-02-22 12:58:32 +01:00
|
|
|
|
2016-03-18 07:55:01 +01:00
|
|
|
#pragma once
|
2011-02-22 12:58:32 +01:00
|
|
|
|
|
|
|
|
#include <coreplugin/dialogs/ioptionspage.h>
|
2013-03-21 17:10:19 +01:00
|
|
|
|
2022-07-05 15:37:08 +02:00
|
|
|
namespace Debugger::Internal {
|
2012-11-10 23:29:43 +01:00
|
|
|
|
2020-01-10 13:46:51 +01:00
|
|
|
class CommonOptionsPage final : public Core::IOptionsPage
|
2011-02-22 12:58:32 +01:00
|
|
|
{
|
|
|
|
|
public:
|
2020-01-08 15:54:20 +01:00
|
|
|
CommonOptionsPage();
|
2011-02-22 12:58:32 +01:00
|
|
|
|
2012-08-28 14:37:18 +02:00
|
|
|
static QString msgSetBreakpointAtFunction(const char *function);
|
|
|
|
|
static QString msgSetBreakpointAtFunctionToolTip(const char *function,
|
2020-01-08 15:54:20 +01:00
|
|
|
const QString &hint = {});
|
2011-02-22 12:58:32 +01:00
|
|
|
};
|
|
|
|
|
|
2020-01-10 13:46:51 +01:00
|
|
|
class LocalsAndExpressionsOptionsPage final : public Core::IOptionsPage
|
2011-02-22 12:58:32 +01:00
|
|
|
{
|
|
|
|
|
public:
|
2012-05-22 11:17:13 +02:00
|
|
|
LocalsAndExpressionsOptionsPage();
|
2011-02-22 12:58:32 +01:00
|
|
|
};
|
|
|
|
|
|
2022-07-05 15:37:08 +02:00
|
|
|
} // Debugger::Internal
|