* Add `clearFocus()` to `QWidget` * Add `Alignment` param to `QBoxLayout.addWidget()` * Add `setViewportMargins()` & `viewportMargins()` to `QScrollArea` * Add `QEvent` methods to all event related subclasses * Tell C++ that our 0 is zero and not a null pointer
7 lines
103 B
TypeScript
7 lines
103 B
TypeScript
export interface Margins {
|
|
left: number;
|
|
top: number;
|
|
right: number;
|
|
bottom: number;
|
|
}
|