forked from nodegui/nodegui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
53 lines (53 loc) · 2.33 KB
/
index.ts
File metadata and controls
53 lines (53 loc) · 2.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// bootstrap
import "./lib/core/bootstrap";
// Enums:
export * from "./lib/QtEnums";
// Gui:
export { QApplication } from "./lib/QtGui/QApplication";
export {
QPixmap,
ReadWriteImageFormats,
ImageFormats
} from "./lib/QtGui/QPixmap";
export { QIcon, QIconMode, QIconState } from "./lib/QtGui/QIcon";
export { QCursor } from "./lib/QtGui/QCursor";
export { QTextOptionWrapMode } from "./lib/QtGui/QTextOption";
export { QClipboard, QClipboardMode } from "./lib/QtGui/QClipboard";
// Events: Maybe a separate module ?
export { QKeyEvent } from "./lib/QtGui/QEvent/QKeyEvent";
export { NativeEvent, BaseWidgetEvents } from "./lib/core/EventWidget";
// Abstract:
export { NodeWidget } from "./lib/QtWidgets/QWidget";
export { NodeLayout } from "./lib/QtWidgets/QLayout";
export { QAbstractScrollArea } from "./lib/QtWidgets/QAbstractScrollArea";
export { QAbstractSlider } from "./lib/QtWidgets/QAbstractSlider";
// Widgets:
export { QWidget, QWidgetEvents } from "./lib/QtWidgets/QWidget";
export { QCheckBox, QCheckBoxEvents } from "./lib/QtWidgets/QCheckBox";
export { QLabel, QLabelEvents } from "./lib/QtWidgets/QLabel";
export { QDial, QDialEvents } from "./lib/QtWidgets/QDial";
export { QLineEdit, QLineEditEvents } from "./lib/QtWidgets/QLineEdit";
export { QMainWindow, QMainWindowEvents } from "./lib/QtWidgets/QMainWindow";
export { QProgressBar, QProgressBarEvents } from "./lib/QtWidgets/QProgressBar";
export { QPushButton, QPushButtonEvents } from "./lib/QtWidgets/QPushButton";
export { QSpinBox, QSpinBoxEvents } from "./lib/QtWidgets/QSpinBox";
export { QRadioButton, QRadioButtonEvents } from "./lib/QtWidgets/QRadioButton";
export { QTabWidget, QTabWidgetEvents } from "./lib/QtWidgets/QTabWidget";
export { QMenu, QMenuEvents } from "./lib/QtWidgets/QMenu";
export { QMenuBar, QMenuBarEvents } from "./lib/QtWidgets/QMenuBar";
export {
QPlainTextEdit,
QPlainTextEditEvents,
LineWrapMode
} from "./lib/QtWidgets/QPlainTextEdit";
export { QScrollArea, QScrollAreaEvents } from "./lib/QtWidgets/QScrollArea";
export {
QSystemTrayIcon,
QSystemTrayIconEvents
} from "./lib/QtWidgets/QSystemTrayIcon";
// Layouts:
export { QGridLayout } from "./lib/QtWidgets/QGridLayout";
export { FlexLayout } from "./lib/core/FlexLayout";
// Others:
export { StyleSheet } from "./lib/core/Style/StyleSheet";
export { NativeElement, Component } from "./lib/core/Component";