Added more exports

This commit is contained in:
Atul R 2019-07-14 14:10:31 +02:00
parent 22178c074a
commit ad438780e9
2 changed files with 2 additions and 3 deletions

View File

@ -121,8 +121,6 @@ Napi::Value update(const Napi::CallbackInfo& info){ \
return env.Null(); \
} \
#endif //QWIDGET_WRAPPED_METHODS_DECLARATION
#ifndef QWIDGET_WRAPPED_METHODS_EXPORT_DEFINE

View File

@ -7,7 +7,7 @@ export { NodeLayout } from "./QtWidgets/QLayout";
export { QCheckBox, QCheckBoxEvents } from "./QtWidgets/QCheckBox";
export { QLabel, QLabelEvents } from "./QtWidgets/QLabel";
export { QLineEdit, QLineEditEvents } from "./QtWidgets/QLineEdit";
export { QMainWindow } from "./QtWidgets/QMainWindow";
export { QMainWindow, QMainWindowEvents } from "./QtWidgets/QMainWindow";
export { QProgressBar, QProgressBarEvents } from "./QtWidgets/QProgressBar";
export { QPushButton, QPushButtonEvents } from "./QtWidgets/QPushButton";
export { QRadioButton, QRadioButtonEvents } from "./QtWidgets/QRadioButton";
@ -16,3 +16,4 @@ export { QGridLayout } from "./QtWidgets/QGridLayout";
export { FlexLayout } from "./core/FlexLayout";
// Events : Maybe a separate module ?
export { QKeyEvent } from "./QtGui/QEvent/QKeyEvent";
export { NativeEvent } from "./core/EventWidget";