nodeguy/src/cpp/include/nodegui/QtWidgets/QSvgWidget/nsvgwidget.hpp
Ruslan Garifullin 0b5ee00b58
Added QSvgWidget (#710)
* feat: added QSvgWidget

* docs: fix sidebars syntax
2020-10-18 16:37:52 +02:00

18 lines
442 B
C++

#pragma once
#include <QSvgWidget>
#include "Extras/Export/export.h"
#include "QtWidgets/QWidget/qwidget_macro.h"
#include "core/NodeWidget/nodewidget.h"
#include "napi.h"
class DLL_EXPORT NSvgWidget : public QSvgWidget, public NodeWidget {
Q_OBJECT
NODEWIDGET_IMPLEMENTATIONS(QSvgWidget)
public:
using QSvgWidget::QSvgWidget; // inherit all constructors of QSvgWidget
void connectSignalsToEventEmitter() { QWIDGET_SIGNALS }
};