OGS
StationTabWidget.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) OpenGeoSys Community (opengeosys.org)
2// SPDX-License-Identifier: BSD-3-Clause
3
4#pragma once
5
6// ** INCLUDES **
7#include "ui_StationTabWidgetBase.h"
8
12class StationTabWidget : public QWidget, public Ui_StationTabWidgetBase
13{
14 Q_OBJECT
15
16public:
17 explicit StationTabWidget(QWidget* parent = nullptr);
18
19private:
20
21private slots:
22 void enableSaveButton(bool enable) { this->saveStnPushButton->setEnabled(enable); };
23 void enableRemoveButton(bool enable) { this->removeStnPushButton->setEnabled(enable); };
24};
StationTabWidget(QWidget *parent=nullptr)
void enableSaveButton(bool enable)
void enableRemoveButton(bool enable)