HAL
widget.cpp
Go to the documentation of this file.
1
#include "
gui/widget/widget.h
"
2
3
namespace
hal
4
{
5
Widget::Widget
(
QWidget
* parent) :
QWidget
(parent)
6
{
7
}
8
9
void
Widget::setParent
(
QWidget
* parent)
10
{
11
QWidget::setParent
(
parent
);
12
Q_EMIT
parentSetTo
(
parent
);
13
}
14
15
void
Widget::hide
()
16
{
17
QWidget::hide
();
18
Q_EMIT
hidden
();
19
}
20
21
void
Widget::show
()
22
{
23
QWidget::show
();
24
Q_EMIT
shown
();
25
}
26
}
hal::Widget::shown
void shown()
hal::Widget::show
void show()
Definition:
widget.cpp:21
hal::Widget::setParent
void setParent(QWidget *parent)
Definition:
widget.cpp:9
hal::Widget::hide
void hide()
Definition:
widget.cpp:15
hal::Widget::Widget
Widget(QWidget *parent=nullptr)
Definition:
widget.cpp:5
hal::Widget::hidden
void hidden()
hal::Widget::parentSetTo
void parentSetTo(QWidget *parent)
hal
Definition:
parser_liberty.cpp:10
QObject::Q_EMIT
Q_EMITQ_EMIT
QObject::parent
QObject * parent() const const
QWidget
QWidget::hide
void hide()
QWidget::setParent
void setParent(QWidget *parent)
QWidget::show
void show()
widget.h
plugins
gui
src
widget
widget.cpp
Generated on Fri Feb 14 2025 14:22:43 for HAL by
1.9.1