nodeguy/src/cpp/include/nodegui/QtWidgets/QRadioButton/nradiobutton.hpp
Atul R 7dcc329cf8
Adds plugin support for windows platform (#364)
* updates cmake file for windows plugin support

* basic exports

* minor export fixes

* rename macro

* rename export macro

* fixes build error on windows

* cleanup cmakelist

* updated headers
2020-01-22 21:15:30 +01:00

19 lines
566 B
C++

#pragma once
#include <QRadioButton>
#include "Extras/Utils/nutils.h"
#include "QtWidgets/QAbstractButton/qabstractbutton_macro.h"
#include "QtWidgets/QWidget/qwidget_macro.h"
#include "core/NodeWidget/nodewidget.h"
class DLL_EXPORT NRadioButton : public QRadioButton, public NodeWidget {
Q_OBJECT
NODEWIDGET_IMPLEMENTATIONS(QRadioButton)
public:
using QRadioButton::QRadioButton; // inherit all constructors of QRadioButton
void connectSignalsToEventEmitter() {
// Qt Connects: Implement all signal connects here
QABSTRACT_BUTTON_SIGNALS
}
};