diff options
Diffstat (limited to 'client/widgets/groupbox.cc')
-rw-r--r-- | client/widgets/groupbox.cc | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/client/widgets/groupbox.cc b/client/widgets/groupbox.cc index c3947a7..f6c9b28 100644 --- a/client/widgets/groupbox.cc +++ b/client/widgets/groupbox.cc @@ -54,3 +54,20 @@ void GroupBox::disable() { setEnabled(false); } + +void GroupBox::connectFrom(const char *signal, + const QObject *receiver, const char *method) +{ + connect(this, signal, receiver, method); +} + +void GroupBox::connectTo(const QObject *sender, const char *signal, + const char *method) +{ + connect(sender, signal, this, method); +} + +void GroupBox::setVisibility(bool visible) +{ + setVisible(visible); +} |