OpenMS
Loading...
Searching...
No Matches
FLASHDeconvWizardBase.h
Go to the documentation of this file.
1// Copyright (c) 2002-present, OpenMS Inc. -- EKU Tuebingen, ETH Zurich, and FU Berlin
2// SPDX-License-Identifier: BSD-3-Clause
3//
4// --------------------------------------------------------------------------
5// $Maintainer: Jihyung Kim $
6// $Authors: Jihyung Kim $
7// --------------------------------------------------------------------------
8
9#pragma once
10
11// OpenMS_GUI config
12#include <OpenMS/VISUAL/OpenMS_GUIConfig.h>
13
14// OpenMS
16
17// QT
18#include <QtCore/QProcess>
19#include <QtWidgets/QButtonGroup>
20#include <QtWidgets/QMainWindow>
21#include <QtWidgets/QMdiArea>
22#include <QtWidgets/QSplashScreen>
23
24class QToolBar;
25class QListWidget;
26class QTextEdit;
27class QMdiArea;
28class QLabel;
29class QWidget;
30class QTreeWidget;
31class QTreeWidgetItem;
32
33namespace Ui
34{
35 class FLASHDeconvWizardBase;
36}
37
38namespace OpenMS
39{
44 class OPENMS_GUI_DLLAPI FLASHDeconvWizardBase : public QMainWindow, public DefaultParamHandler
45 {
46 Q_OBJECT
47
48 public:
50 FLASHDeconvWizardBase(QWidget* parent = nullptr);
52 ~FLASHDeconvWizardBase() override;
53
54 void showAboutDialog();
55
56 protected:
60
63
64 private slots:
65 // names created by QtCreator. Do not change them.
66 void on_actionExit_triggered();
67 void on_actionVisit_FLASHDeconv_homepage_triggered();
68 void on_actionReport_new_issue_triggered();
69
70 private:
71 Ui::FLASHDeconvWizardBase* ui;
72 }; // class
73
74} // namespace OpenMS
A base class for all classes handling default parameters.
Definition DefaultParamHandler.h:66
Main window of the FLASHDeconvWizard tool.
Definition FLASHDeconvWizardBase.h:45
Ui::FLASHDeconvWizardBase * ui
Definition FLASHDeconvWizardBase.h:71
String tmp_path_
The path for temporary files.
Definition FLASHDeconvWizardBase.h:62
String current_path_
Definition FLASHDeconvWizardBase.h:59
A more convenient string class.
Definition String.h:34
Main OpenMS namespace.
Definition openswathalgo/include/OpenMS/OPENSWATHALGO/DATAACCESS/ISpectrumAccess.h:19
Definition FLASHDeconvWizardBase.h:34