mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 00:50:42 +08:00
25 lines
614 B
C++
25 lines
614 B
C++
// SPDX-FileCopyrightText: 2021 Ernie Pasveer <epasveer@att.net>
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#pragma once
|
|
|
|
#include <QtWidgets/QWidget>
|
|
#include "ui_QHContainerWidget.h"
|
|
|
|
class QHContainerWidget : public QWidget, protected Ui::QHContainerWidgetForm {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit QHContainerWidget (QWidget* parent = 0);
|
|
~QHContainerWidget ();
|
|
|
|
void setSpacing (int spacing);
|
|
void addWidget (QWidget* widget);
|
|
void removeWidget (QWidget* widget);
|
|
|
|
private:
|
|
};
|
|
|