52 lines
1.5 KiB
C++
52 lines
1.5 KiB
C++
/***************************************************************************
|
|
* Copyright (C) gempa GmbH *
|
|
* All rights reserved. *
|
|
* *
|
|
* GNU Affero General Public License Usage *
|
|
* This file may be used under the terms of the GNU Affero *
|
|
* Public License version 3.0 as published by the Free Software Foundation *
|
|
* and appearing in the file LICENSE included in the packaging of this *
|
|
* file. Please review the following information to ensure the GNU Affero *
|
|
* Public License version 3.0 requirements will be met: *
|
|
* https://www.gnu.org/licenses/agpl-3.0.html. *
|
|
***************************************************************************/
|
|
|
|
|
|
#ifndef SEISCOMP_GUI_CORE_SPECTROGRAMSETTINGS
|
|
#define SEISCOMP_GUI_CORE_SPECTROGRAMSETTINGS
|
|
|
|
|
|
#include <seiscomp/system/application.h>
|
|
#ifndef Q_MOC_RUN
|
|
#include <seiscomp/gui/core/recordview.h>
|
|
#endif
|
|
#include <QWidget>
|
|
|
|
#include <seiscomp/gui/core/ui_spectrogramsettings.h>
|
|
|
|
|
|
namespace Seiscomp::Gui {
|
|
|
|
|
|
class SpectrogramSettings : public QWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
SpectrogramSettings(QWidget *parent = 0, Qt::WindowFlags f = Qt::WindowFlags());
|
|
|
|
public:
|
|
void init(const System::Application *app, const std::string &prefix);
|
|
|
|
signals:
|
|
void apply();
|
|
|
|
public:
|
|
Ui::SpectrogramSettings ui;
|
|
};
|
|
|
|
|
|
}
|
|
|
|
|
|
#endif
|