OGS
GeoTabWidget.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_GeoTabWidgetBase.h"
8
12class GeoTabWidget : public QWidget, public Ui_GeoTabWidgetBase
13{
14 Q_OBJECT
15
16public:
17 explicit GeoTabWidget(QWidget* parent = nullptr);
18
19private:
20
21private slots:
22 void enableSaveButton(bool enable) { this->saveGeoPushButton->setEnabled(enable); };
23 void enableRemoveButton(bool enable) { this->removeGeoPushButton->setEnabled(enable); };
24
25};
void enableSaveButton(bool enable)
void enableRemoveButton(bool enable)
GeoTabWidget(QWidget *parent=nullptr)