Mantid
Loading...
Searching...
No Matches
HelpWindow.h
Go to the documentation of this file.
1// Mantid Repository : https://github.com/mantidproject/mantid
2//
3// Copyright © 2013 ISIS Rutherford Appleton Laboratory UKRI,
4// NScD Oak Ridge National Laboratory, European Spallation Source,
5// Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS
6// SPDX - License - Identifier: GPL - 3.0 +
7#pragma once
8
10#include <QString>
11#include <string>
12
13// forward declarations
14class QUrl;
15
16namespace MantidQt {
17namespace API {
18
20public:
21 static void showPage(const std::string &url = std::string());
22 static void showPage(const QString &url);
23 static void showPage(const QUrl &url);
24 static void showAlgorithm(const std::string &name = std::string(), const int version = -1);
25 static void showAlgorithm(const QString &name, const int version = -1);
26 static void showConcept(const std::string &name = std::string());
27 static void showConcept(const QString &name);
28 static void showFitFunction(const std::string &name = std::string());
29 static void showCustomInterface(const QString &name, const QString &area = QString(),
30 const QString &section = QString());
31 static void showCustomInterface(const std::string &name = std::string(), const std::string &area = std::string(),
32 const std::string &section = std::string());
33};
34} // namespace API
35} // namespace MantidQt
#define EXPORT_OPT_MANTIDQT_COMMON
Definition: DllOption.h:15
The AlgorithmProgressDialogPresenter keeps track of the running algorithms and displays a progress ba...