git0 0.2.9 → 0.2.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/TypeScript-React-Starter/LICENSE +21 -0
- package/TypeScript-React-Starter/README-CRA.md +1281 -0
- package/TypeScript-React-Starter/README.md +810 -0
- package/TypeScript-React-Starter/package.json +28 -0
- package/TypeScript-React-Starter/public/favicon.ico +0 -0
- package/TypeScript-React-Starter/public/index.html +31 -0
- package/TypeScript-React-Starter/src/App.css +24 -0
- package/TypeScript-React-Starter/src/App.test.tsx +8 -0
- package/TypeScript-React-Starter/src/App.tsx +23 -0
- package/TypeScript-React-Starter/src/actions/index.tsx +24 -0
- package/TypeScript-React-Starter/src/components/Hello.css +13 -0
- package/TypeScript-React-Starter/src/components/Hello.test.tsx +30 -0
- package/TypeScript-React-Starter/src/components/Hello.tsx +35 -0
- package/TypeScript-React-Starter/src/constants/index.tsx +6 -0
- package/TypeScript-React-Starter/src/containers/Hello.tsx +20 -0
- package/TypeScript-React-Starter/src/index.css +5 -0
- package/TypeScript-React-Starter/src/index.tsx +22 -0
- package/TypeScript-React-Starter/src/logo.svg +7 -0
- package/TypeScript-React-Starter/src/reducers/index.tsx +15 -0
- package/TypeScript-React-Starter/src/types/index.tsx +5 -0
- package/TypeScript-React-Starter/tsconfig.json +29 -0
- package/TypeScript-React-Starter/tslint.json +11 -0
- package/TypeScript-React-Starter/yarn.lock +4785 -0
- package/package.json +2 -2
- package/src/github-api.js +3 -3
- package/svelte-nodegui/.all-contributorsrc +60 -0
- package/svelte-nodegui/.vscode/launch.json +29 -0
- package/svelte-nodegui/CHANGELOG.md +153 -0
- package/svelte-nodegui/LICENSE +22 -0
- package/svelte-nodegui/README.md +151 -0
- package/svelte-nodegui/demo/.editorconfig +15 -0
- package/svelte-nodegui/demo/.vscode/extensions.json +3 -0
- package/svelte-nodegui/demo/livereload.js +29 -0
- package/svelte-nodegui/demo/package-lock.json +3514 -0
- package/svelte-nodegui/demo/package.json +35 -0
- package/svelte-nodegui/demo/src/App.svelte +29 -0
- package/svelte-nodegui/demo/src/app.ts +31 -0
- package/svelte-nodegui/demo/tsconfig.json +40 -0
- package/svelte-nodegui/demo/webpack.config.js +110 -0
- package/svelte-nodegui/extras/assets/kitchen.png +0 -0
- package/svelte-nodegui/extras/assets/nodegui.png +0 -0
- package/svelte-nodegui/extras/assets/nodegui_white.png +0 -0
- package/svelte-nodegui/extras/assets/start_icon.png +0 -0
- package/svelte-nodegui/extras/legal/logo/thanks.md +13 -0
- package/svelte-nodegui/extras/legal/yode/LICENSE +21 -0
- package/svelte-nodegui/extras/legal/yoga/LICENSE +0 -0
- package/svelte-nodegui/extras/logo/nodegui-circle.png +0 -0
- package/svelte-nodegui/extras/logo/nodegui.png +0 -0
- package/svelte-nodegui/extras/logo/nodegui.svg +4 -0
- package/svelte-nodegui/nativescript-svelte-todo.gif +0 -0
- package/svelte-nodegui/package-lock.json +1749 -0
- package/svelte-nodegui/package.json +44 -0
- package/svelte-nodegui/repl-workers/bundler/commonjs.js +58 -0
- package/svelte-nodegui/repl-workers/bundler/index.js +353 -0
- package/svelte-nodegui/repl-workers/package-lock.json +484 -0
- package/svelte-nodegui/repl-workers/package.json +21 -0
- package/svelte-nodegui/repl-workers/rollup.config.js +21 -0
- package/svelte-nodegui/rollup.config.js +81 -0
- package/svelte-nodegui/scripts/create-pkg.js +42 -0
- package/svelte-nodegui/src/components/AsComponent.svelte +16 -0
- package/svelte-nodegui/src/components/SlotComponent.svelte +4 -0
- package/svelte-nodegui/src/components/Template.svelte +10 -0
- package/svelte-nodegui/src/components/Template.svelte.d.ts +6 -0
- package/svelte-nodegui/src/components/index.ts +2 -0
- package/svelte-nodegui/src/dom/index.ts +132 -0
- package/svelte-nodegui/src/dom/nativescript-vue-next/LICENCE +21 -0
- package/svelte-nodegui/src/dom/nativescript-vue-next/index.ts +19 -0
- package/svelte-nodegui/src/dom/nativescript-vue-next/runtime/index.ts +21 -0
- package/svelte-nodegui/src/dom/nativescript-vue-next/runtime/nodes.ts +890 -0
- package/svelte-nodegui/src/dom/nativescript-vue-next/runtime/registry.ts +262 -0
- package/svelte-nodegui/src/dom/nativescript-vue-next/runtime/runtimeHelpers.ts +20 -0
- package/svelte-nodegui/src/dom/react-nodegui/LICENSE +21 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/AbstractComponents/RNAbstractButton.ts +67 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/Action/RNAction.ts +146 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/Action/index.ts +37 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/AnimatedImage/RNAnimatedImage.ts +76 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/AnimatedImage/index.ts +45 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/BoxView/RNBoxView.ts +99 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/BoxView/index.ts +49 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/Button/RNButton.ts +71 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/Button/index.ts +49 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/CheckBox/RNCheckBox.ts +71 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/CheckBox/index.ts +50 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/ComboBox/RNComboBox.ts +118 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/ComboBox/index.ts +50 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/Dial/RNDial.ts +69 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/Dial/index.ts +41 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/GridView/GridColumn/RNGridColumn.ts +95 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/GridView/GridColumn/index.ts +49 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/GridView/GridRow/RNGridRow.ts +141 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/GridView/GridRow/index.ts +47 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/GridView/RNGridView.ts +185 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/GridView/index.ts +51 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/GridView/utils.ts +59 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/Image/RNImage.ts +135 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/Image/index.ts +46 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/LineEdit/RNLineEdit.ts +82 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/LineEdit/index.ts +41 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/Menu/RNMenu.ts +49 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/Menu/index.ts +44 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/MenuBar/RNMenuBar.ts +51 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/MenuBar/index.ts +42 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/PlainTextEdit/RNPlainTextEdit.ts +82 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/PlainTextEdit/index.ts +44 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/ProgressBar/RNProgressBar.ts +78 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/ProgressBar/index.ts +43 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/RadioButton/RNRadioButton.ts +50 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/RadioButton/index.ts +43 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/ScrollArea/RNScrollArea.ts +51 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/ScrollArea/index.ts +44 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/Slider/RNSlider.ts +97 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/Slider/index.ts +46 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/SpinBox/RNSpinBox.ts +88 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/SpinBox/index.ts +49 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/Svg/RNSvg.ts +67 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/Svg/index.ts +43 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/SystemTrayIcon/RNSystemTrayIcon.ts +141 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/SystemTrayIcon/index.ts +43 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/Tab/RNTab.ts +69 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/Tab/index.ts +48 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/TabItem/RNTabItem.ts +72 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/TabItem/index.ts +40 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/Text/RNText.ts +65 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/Text/index.ts +49 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/View/RNView.ts +306 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/View/index.ts +44 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/Window/RNWindow.ts +66 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/Window/index.ts +50 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/components/config.ts +95 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/index.ts +52 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/reconciler/index.ts +226 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/utils/decoupleFromReact.ts +2 -0
- package/svelte-nodegui/src/dom/react-nodegui/src/utils/helpers.ts +14 -0
- package/svelte-nodegui/src/dom/shared/Logger.ts +16 -0
- package/svelte-nodegui/src/dom/shared/index.ts +1 -0
- package/svelte-nodegui/src/dom/svelte/HeadElement.ts +41 -0
- package/svelte-nodegui/src/dom/svelte/RNObject.ts +95 -0
- package/svelte-nodegui/src/dom/svelte/StyleElement.ts +92 -0
- package/svelte-nodegui/src/dom/svelte/SvelteNodeGUIDocument.ts +124 -0
- package/svelte-nodegui/src/dom/svelte/TemplateElement.ts +16 -0
- package/svelte-nodegui/src/dom/svelte-elements.ts +111 -0
- package/svelte-nodegui/src/index.ts +62 -0
- package/svelte-nodegui/src/svelte-nodegui.ts +159 -0
- package/svelte-nodegui/src/transitions/bezier.ts +112 -0
- package/svelte-nodegui/src/transitions/index.ts +227 -0
- package/svelte-nodegui/tsconfig.json +19 -0
- package/svelte-nodegui/website/README.md +33 -0
- package/svelte-nodegui/website/blog/2019-05-30-welcome.md +12 -0
- package/svelte-nodegui/website/docs/api/classes/renderer.md +49 -0
- package/svelte-nodegui/website/docs/api/classes/rnaction.md +608 -0
- package/svelte-nodegui/website/docs/api/classes/rngridcolumn.md +232 -0
- package/svelte-nodegui/website/docs/api/classes/rngridrow.md +247 -0
- package/svelte-nodegui/website/docs/api/classes/rnmenu.md +1337 -0
- package/svelte-nodegui/website/docs/api/classes/rnmenubar.md +1341 -0
- package/svelte-nodegui/website/docs/api/globals.md +832 -0
- package/svelte-nodegui/website/docs/api/index.md +0 -0
- package/svelte-nodegui/website/docs/api/interfaces/_react_proxy_.reactproxycomponent.md +38 -0
- package/svelte-nodegui/website/docs/api/interfaces/abstractbuttonprops.md +306 -0
- package/svelte-nodegui/website/docs/api/interfaces/actionprops.md +115 -0
- package/svelte-nodegui/website/docs/api/interfaces/animatedimageprops.md +297 -0
- package/svelte-nodegui/website/docs/api/interfaces/boxviewprops.md +245 -0
- package/svelte-nodegui/website/docs/api/interfaces/buttonprops.md +313 -0
- package/svelte-nodegui/website/docs/api/interfaces/checkboxprops.md +313 -0
- package/svelte-nodegui/website/docs/api/interfaces/comboboxprops.md +343 -0
- package/svelte-nodegui/website/docs/api/interfaces/datawithoffset.md +32 -0
- package/svelte-nodegui/website/docs/api/interfaces/dialprops.md +259 -0
- package/svelte-nodegui/website/docs/api/interfaces/gridviewprops.md +273 -0
- package/svelte-nodegui/website/docs/api/interfaces/imageprops.md +311 -0
- package/svelte-nodegui/website/docs/api/interfaces/lineeditprops.md +266 -0
- package/svelte-nodegui/website/docs/api/interfaces/menubarprops.md +245 -0
- package/svelte-nodegui/website/docs/api/interfaces/menuprops.md +245 -0
- package/svelte-nodegui/website/docs/api/interfaces/plaintexteditprops.md +259 -0
- package/svelte-nodegui/website/docs/api/interfaces/progressbarprops.md +266 -0
- package/svelte-nodegui/website/docs/api/interfaces/radiobuttonprops.md +282 -0
- package/svelte-nodegui/website/docs/api/interfaces/scrollareaprops.md +245 -0
- package/svelte-nodegui/website/docs/api/interfaces/sliderprops.md +329 -0
- package/svelte-nodegui/website/docs/api/interfaces/spinboxprops.md +273 -0
- package/svelte-nodegui/website/docs/api/interfaces/systemtrayiconprops.md +97 -0
- package/svelte-nodegui/website/docs/api/interfaces/tabitemprops.md +28 -0
- package/svelte-nodegui/website/docs/api/interfaces/tabprops.md +245 -0
- package/svelte-nodegui/website/docs/api/interfaces/textprops.md +277 -0
- package/svelte-nodegui/website/docs/api/interfaces/viewprops.md +261 -0
- package/svelte-nodegui/website/docs/api/interfaces/windowprops.md +245 -0
- package/svelte-nodegui/website/docs/api/modules/_react_proxy_.md +29 -0
- package/svelte-nodegui/website/docs/doc1.md +162 -0
- package/svelte-nodegui/website/docs/guides/custom-nodegui-native-plugin.md +6 -0
- package/svelte-nodegui/website/docs/guides/debugging-in-vscode.md +39 -0
- package/svelte-nodegui/website/docs/guides/debugging.md +59 -0
- package/svelte-nodegui/website/docs/guides/getting-started.md +141 -0
- package/svelte-nodegui/website/docs/guides/handle-events.md +188 -0
- package/svelte-nodegui/website/docs/guides/images.md +62 -0
- package/svelte-nodegui/website/docs/guides/layout.md +281 -0
- package/svelte-nodegui/website/docs/guides/networking.md +31 -0
- package/svelte-nodegui/website/docs/guides/packaging.md +32 -0
- package/svelte-nodegui/website/docs/guides/scroll-view.md +69 -0
- package/svelte-nodegui/website/docs/guides/styling.md +208 -0
- package/svelte-nodegui/website/docs/guides/tutorial.md +82 -0
- package/svelte-nodegui/website/docs/guides/using-native-node-modules.md +55 -0
- package/svelte-nodegui/website/docs/mdx.md +22 -0
- package/svelte-nodegui/website/docs/scripts/fixdocs.js +21 -0
- package/svelte-nodegui/website/docusaurus.config.js +131 -0
- package/svelte-nodegui/website/package.json +33 -0
- package/svelte-nodegui/website/sidebars.js +77 -0
- package/svelte-nodegui/website/src/components/CodeExample.js +42 -0
- package/svelte-nodegui/website/src/components/CreateNativeApps.js +46 -0
- package/svelte-nodegui/website/src/components/Features.js +62 -0
- package/svelte-nodegui/website/src/components/Hero.js +85 -0
- package/svelte-nodegui/website/src/components/SplitView.js +18 -0
- package/svelte-nodegui/website/src/components/Talks.js +68 -0
- package/svelte-nodegui/website/src/components/Try.js +83 -0
- package/svelte-nodegui/website/src/components/common.js +41 -0
- package/svelte-nodegui/website/src/components/styles.css +61 -0
- package/svelte-nodegui/website/src/css/custom.css +34 -0
- package/svelte-nodegui/website/src/pages/index.js +32 -0
- package/svelte-nodegui/website/src/pages/styles.module.css +35 -0
- package/svelte-nodegui/website/static/CNAME +1 -0
- package/svelte-nodegui/website/static/img/box-layout-1.png +0 -0
- package/svelte-nodegui/website/static/img/box-layout-2.png +0 -0
- package/svelte-nodegui/website/static/img/code-sample.png +0 -0
- package/svelte-nodegui/website/static/img/demo.png +0 -0
- package/svelte-nodegui/website/static/img/favicon.ico +0 -0
- package/svelte-nodegui/website/static/img/flex-layout-1.png +0 -0
- package/svelte-nodegui/website/static/img/grid-layout-1.png +0 -0
- package/svelte-nodegui/website/static/img/logo-circle.png +0 -0
- package/svelte-nodegui/website/static/img/logo.png +0 -0
- package/svelte-nodegui/website/static/img/logo.svg +5 -0
- package/svelte-nodegui/website/static/img/logox200.png +0 -0
- package/svelte-nodegui/website/static/img/undraw_building_websites.svg +1 -0
- package/svelte-nodegui/website/static/img/undraw_code_review.svg +1 -0
- package/svelte-nodegui/website/static/img/undraw_docusaurus_mountain.svg +170 -0
- package/svelte-nodegui/website/static/img/undraw_docusaurus_react.svg +169 -0
- package/svelte-nodegui/website/static/img/undraw_docusaurus_tree.svg +1 -0
- package/svelte-nodegui/website/static/img/undraw_react.svg +1 -0
- package/svelte-nodegui/website/static/img/undraw_website_setup.svg +1 -0
- package/svelte-nodegui/website/static/img/undraw_windows.svg +11 -0
- package/svelte-nodegui/website/website/sidebars.js +32 -0
- package/svelte-nodegui/website/yarn.lock +10533 -0
- package/bun.lock +0 -159
- package/docs-config/bun.lock +0 -6139
|
@@ -0,0 +1,343 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: "comboboxprops"
|
|
3
|
+
title: "ComboBoxProps"
|
|
4
|
+
sidebar_label: "ComboBoxProps"
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Hierarchy
|
|
8
|
+
|
|
9
|
+
↳ [ViewProps](viewprops.md)‹QComboBoxSignals›
|
|
10
|
+
|
|
11
|
+
↳ **ComboBoxProps**
|
|
12
|
+
|
|
13
|
+
## Index
|
|
14
|
+
|
|
15
|
+
### Properties
|
|
16
|
+
|
|
17
|
+
* [attributes](comboboxprops.md#optional-attributes)
|
|
18
|
+
* [count](comboboxprops.md#optional-count)
|
|
19
|
+
* [currentData](comboboxprops.md#optional-currentdata)
|
|
20
|
+
* [currentIndex](comboboxprops.md#optional-currentindex)
|
|
21
|
+
* [currentText](comboboxprops.md#optional-currenttext)
|
|
22
|
+
* [cursor](comboboxprops.md#optional-cursor)
|
|
23
|
+
* [duplicatesEnabled](comboboxprops.md#optional-duplicatesenabled)
|
|
24
|
+
* [editable](comboboxprops.md#optional-editable)
|
|
25
|
+
* [enabled](comboboxprops.md#optional-enabled)
|
|
26
|
+
* [frame](comboboxprops.md#optional-frame)
|
|
27
|
+
* [geometry](comboboxprops.md#optional-geometry)
|
|
28
|
+
* [iconSize](comboboxprops.md#optional-iconsize)
|
|
29
|
+
* [id](comboboxprops.md#optional-id)
|
|
30
|
+
* [insertPolicy](comboboxprops.md#optional-insertpolicy)
|
|
31
|
+
* [items](comboboxprops.md#optional-items)
|
|
32
|
+
* [maxCount](comboboxprops.md#optional-maxcount)
|
|
33
|
+
* [maxSize](comboboxprops.md#optional-maxsize)
|
|
34
|
+
* [maxVisibleItems](comboboxprops.md#optional-maxvisibleitems)
|
|
35
|
+
* [minSize](comboboxprops.md#optional-minsize)
|
|
36
|
+
* [minimumContentsLength](comboboxprops.md#optional-minimumcontentslength)
|
|
37
|
+
* [modelColumn](comboboxprops.md#optional-modelcolumn)
|
|
38
|
+
* [mouseTracking](comboboxprops.md#optional-mousetracking)
|
|
39
|
+
* [on](comboboxprops.md#optional-on)
|
|
40
|
+
* [pos](comboboxprops.md#optional-pos)
|
|
41
|
+
* [ref](comboboxprops.md#optional-ref)
|
|
42
|
+
* [size](comboboxprops.md#optional-size)
|
|
43
|
+
* [sizeAdjustPolicy](comboboxprops.md#optional-sizeadjustpolicy)
|
|
44
|
+
* [style](comboboxprops.md#optional-style)
|
|
45
|
+
* [styleSheet](comboboxprops.md#optional-stylesheet)
|
|
46
|
+
* [visible](comboboxprops.md#optional-visible)
|
|
47
|
+
* [windowFlags](comboboxprops.md#optional-windowflags)
|
|
48
|
+
* [windowIcon](comboboxprops.md#optional-windowicon)
|
|
49
|
+
* [windowOpacity](comboboxprops.md#optional-windowopacity)
|
|
50
|
+
* [windowState](comboboxprops.md#optional-windowstate)
|
|
51
|
+
* [windowTitle](comboboxprops.md#optional-windowtitle)
|
|
52
|
+
|
|
53
|
+
## Properties
|
|
54
|
+
|
|
55
|
+
### `Optional` attributes
|
|
56
|
+
|
|
57
|
+
• **attributes**? : *[WidgetAttributesMap](../globals.md#widgetattributesmap)*
|
|
58
|
+
|
|
59
|
+
*Inherited from [ViewProps](viewprops.md).[attributes](viewprops.md#optional-attributes)*
|
|
60
|
+
|
|
61
|
+
Prop to set the Widget Attributes. example:
|
|
62
|
+
`<View attributes={{[WidgetAttributes.WA_Disabled]: true}} />`
|
|
63
|
+
|
|
64
|
+
___
|
|
65
|
+
|
|
66
|
+
### `Optional` count
|
|
67
|
+
|
|
68
|
+
• **count**? : *undefined | number*
|
|
69
|
+
|
|
70
|
+
___
|
|
71
|
+
|
|
72
|
+
### `Optional` currentData
|
|
73
|
+
|
|
74
|
+
• **currentData**? : *QVariant*
|
|
75
|
+
|
|
76
|
+
___
|
|
77
|
+
|
|
78
|
+
### `Optional` currentIndex
|
|
79
|
+
|
|
80
|
+
• **currentIndex**? : *undefined | number*
|
|
81
|
+
|
|
82
|
+
___
|
|
83
|
+
|
|
84
|
+
### `Optional` currentText
|
|
85
|
+
|
|
86
|
+
• **currentText**? : *undefined | string*
|
|
87
|
+
|
|
88
|
+
___
|
|
89
|
+
|
|
90
|
+
### `Optional` cursor
|
|
91
|
+
|
|
92
|
+
• **cursor**? : *CursorShape | QCursor*
|
|
93
|
+
|
|
94
|
+
*Inherited from [ViewProps](viewprops.md).[cursor](viewprops.md#optional-cursor)*
|
|
95
|
+
|
|
96
|
+
Sets the window mouse cursor. [QWidget: setCursor](https://docs.nodegui.org/docs/api/NodeWidget#widgetsetcursorcursor)
|
|
97
|
+
|
|
98
|
+
___
|
|
99
|
+
|
|
100
|
+
### `Optional` duplicatesEnabled
|
|
101
|
+
|
|
102
|
+
• **duplicatesEnabled**? : *undefined | false | true*
|
|
103
|
+
|
|
104
|
+
___
|
|
105
|
+
|
|
106
|
+
### `Optional` editable
|
|
107
|
+
|
|
108
|
+
• **editable**? : *undefined | false | true*
|
|
109
|
+
|
|
110
|
+
___
|
|
111
|
+
|
|
112
|
+
### `Optional` enabled
|
|
113
|
+
|
|
114
|
+
• **enabled**? : *undefined | false | true*
|
|
115
|
+
|
|
116
|
+
*Inherited from [ViewProps](viewprops.md).[enabled](viewprops.md#optional-enabled)*
|
|
117
|
+
|
|
118
|
+
Sets the property that tells whether the widget is enabled. In general an enabled widget handles keyboard and mouse events; a disabled widget does not. [QWidget: setEnabled](https://docs.nodegui.org/docs/api/NodeWidget#widgetsetenabledenabled)
|
|
119
|
+
|
|
120
|
+
___
|
|
121
|
+
|
|
122
|
+
### `Optional` frame
|
|
123
|
+
|
|
124
|
+
• **frame**? : *undefined | false | true*
|
|
125
|
+
|
|
126
|
+
___
|
|
127
|
+
|
|
128
|
+
### `Optional` geometry
|
|
129
|
+
|
|
130
|
+
• **geometry**? : *[Geometry](../globals.md#geometry)*
|
|
131
|
+
|
|
132
|
+
*Inherited from [ViewProps](viewprops.md).[geometry](viewprops.md#optional-geometry)*
|
|
133
|
+
|
|
134
|
+
Sets the screen position as well as size of the widget. [QWidget: setGeometry](https://docs.nodegui.org/docs/api/NodeWidget#widgetsetgeometryx-y-width-height)
|
|
135
|
+
|
|
136
|
+
___
|
|
137
|
+
|
|
138
|
+
### `Optional` iconSize
|
|
139
|
+
|
|
140
|
+
• **iconSize**? : *QSize*
|
|
141
|
+
|
|
142
|
+
___
|
|
143
|
+
|
|
144
|
+
### `Optional` id
|
|
145
|
+
|
|
146
|
+
• **id**? : *undefined | string*
|
|
147
|
+
|
|
148
|
+
*Inherited from [ViewProps](viewprops.md).[id](viewprops.md#optional-id)*
|
|
149
|
+
|
|
150
|
+
Sets the object name (id) of the widget in Qt. Object name can be analogous to id of an element in the web world. Using the objectName of the widget one can reference it in the Qt's stylesheet much like what we do with id in the web world. [QWidget: setObjectName](https://docs.nodegui.org/docs/api/NodeWidget#widgetsetobjectnameobjectname)
|
|
151
|
+
|
|
152
|
+
___
|
|
153
|
+
|
|
154
|
+
### `Optional` insertPolicy
|
|
155
|
+
|
|
156
|
+
• **insertPolicy**? : *InsertPolicy*
|
|
157
|
+
|
|
158
|
+
___
|
|
159
|
+
|
|
160
|
+
### `Optional` items
|
|
161
|
+
|
|
162
|
+
• **items**? : *[ComboBoxItem](../globals.md#comboboxitem)[]*
|
|
163
|
+
|
|
164
|
+
___
|
|
165
|
+
|
|
166
|
+
### `Optional` maxCount
|
|
167
|
+
|
|
168
|
+
• **maxCount**? : *undefined | number*
|
|
169
|
+
|
|
170
|
+
___
|
|
171
|
+
|
|
172
|
+
### `Optional` maxSize
|
|
173
|
+
|
|
174
|
+
• **maxSize**? : *[Size](../globals.md#size)*
|
|
175
|
+
|
|
176
|
+
*Inherited from [ViewProps](viewprops.md).[maxSize](viewprops.md#optional-maxsize)*
|
|
177
|
+
|
|
178
|
+
Sets the maximum size of the widget. [QWidget: setMaximumSize](https://docs.nodegui.org/docs/api/NodeWidget#widgetsetmaximumsizewidth-height)
|
|
179
|
+
|
|
180
|
+
___
|
|
181
|
+
|
|
182
|
+
### `Optional` maxVisibleItems
|
|
183
|
+
|
|
184
|
+
• **maxVisibleItems**? : *undefined | number*
|
|
185
|
+
|
|
186
|
+
___
|
|
187
|
+
|
|
188
|
+
### `Optional` minSize
|
|
189
|
+
|
|
190
|
+
• **minSize**? : *[Size](../globals.md#size)*
|
|
191
|
+
|
|
192
|
+
*Inherited from [ViewProps](viewprops.md).[minSize](viewprops.md#optional-minsize)*
|
|
193
|
+
|
|
194
|
+
Sets the minimum size of the widget. [QWidget: setMinimumSize](https://docs.nodegui.org/docs/api/NodeWidget#widgetsetminimumsizewidth-height)
|
|
195
|
+
|
|
196
|
+
___
|
|
197
|
+
|
|
198
|
+
### `Optional` minimumContentsLength
|
|
199
|
+
|
|
200
|
+
• **minimumContentsLength**? : *undefined | number*
|
|
201
|
+
|
|
202
|
+
___
|
|
203
|
+
|
|
204
|
+
### `Optional` modelColumn
|
|
205
|
+
|
|
206
|
+
• **modelColumn**? : *undefined | number*
|
|
207
|
+
|
|
208
|
+
___
|
|
209
|
+
|
|
210
|
+
### `Optional` mouseTracking
|
|
211
|
+
|
|
212
|
+
• **mouseTracking**? : *undefined | false | true*
|
|
213
|
+
|
|
214
|
+
*Inherited from [ViewProps](viewprops.md).[mouseTracking](viewprops.md#optional-mousetracking)*
|
|
215
|
+
|
|
216
|
+
Sets the property that tells whether mouseTracking is enabled for the widget. [QWidget: setMouseTracking](https://docs.nodegui.org/docs/api/NodeWidget#widgetsetmousetrackingismousetracked)
|
|
217
|
+
|
|
218
|
+
___
|
|
219
|
+
|
|
220
|
+
### `Optional` on
|
|
221
|
+
|
|
222
|
+
• **on**? : *Partial‹[WidgetEventListeners](../globals.md#widgeteventlisteners) | QComboBoxSignals›*
|
|
223
|
+
|
|
224
|
+
*Inherited from [ViewProps](viewprops.md).[on](viewprops.md#optional-on)*
|
|
225
|
+
|
|
226
|
+
Prop to set the event listener map. See [Handlong Events](/docs/guides/handle-events)
|
|
227
|
+
|
|
228
|
+
___
|
|
229
|
+
|
|
230
|
+
### `Optional` pos
|
|
231
|
+
|
|
232
|
+
• **pos**? : *[Position](../globals.md#position)*
|
|
233
|
+
|
|
234
|
+
*Inherited from [ViewProps](viewprops.md).[pos](viewprops.md#optional-pos)*
|
|
235
|
+
|
|
236
|
+
Sets the screen position of the widget. [QWidget: move](https://docs.nodegui.org/docs/api/NodeWidget#widgetmovex-y)
|
|
237
|
+
|
|
238
|
+
___
|
|
239
|
+
|
|
240
|
+
### `Optional` ref
|
|
241
|
+
|
|
242
|
+
• **ref**? : *any*
|
|
243
|
+
|
|
244
|
+
*Inherited from [ViewProps](viewprops.md).[ref](viewprops.md#optional-ref)*
|
|
245
|
+
|
|
246
|
+
Prop to set the ref. The ref will return the underlying nodegui widget.
|
|
247
|
+
|
|
248
|
+
___
|
|
249
|
+
|
|
250
|
+
### `Optional` size
|
|
251
|
+
|
|
252
|
+
• **size**? : *[ViewSize](../globals.md#viewsize)*
|
|
253
|
+
|
|
254
|
+
*Inherited from [ViewProps](viewprops.md).[size](viewprops.md#optional-size)*
|
|
255
|
+
|
|
256
|
+
Sets both the minimum and maximum sizes of the widget. [QWidget: setFixedSize](https://docs.nodegui.org/docs/api/NodeWidget#widgetsetfixedsizewidth-height)
|
|
257
|
+
|
|
258
|
+
___
|
|
259
|
+
|
|
260
|
+
### `Optional` sizeAdjustPolicy
|
|
261
|
+
|
|
262
|
+
• **sizeAdjustPolicy**? : *SizeAdjustPolicy*
|
|
263
|
+
|
|
264
|
+
___
|
|
265
|
+
|
|
266
|
+
### `Optional` style
|
|
267
|
+
|
|
268
|
+
• **style**? : *undefined | string*
|
|
269
|
+
|
|
270
|
+
*Inherited from [ViewProps](viewprops.md).[style](viewprops.md#optional-style)*
|
|
271
|
+
|
|
272
|
+
Sets the inline stylesheet property. [QWidget: setInlineStyle](https://docs.nodegui.org/docs/api/NodeWidget#widgetsetinlinestylestyle)
|
|
273
|
+
|
|
274
|
+
___
|
|
275
|
+
|
|
276
|
+
### `Optional` styleSheet
|
|
277
|
+
|
|
278
|
+
• **styleSheet**? : *undefined | string*
|
|
279
|
+
|
|
280
|
+
*Inherited from [ViewProps](viewprops.md).[styleSheet](viewprops.md#optional-stylesheet)*
|
|
281
|
+
|
|
282
|
+
Sets the property that holds the widget's style sheet. [QWidget: setStyleSheet](https://docs.nodegui.org/docs/api/NodeWidget#widgetsetstylesheetstylesheet)
|
|
283
|
+
|
|
284
|
+
___
|
|
285
|
+
|
|
286
|
+
### `Optional` visible
|
|
287
|
+
|
|
288
|
+
• **visible**? : *undefined | false | true*
|
|
289
|
+
|
|
290
|
+
*Inherited from [ViewProps](viewprops.md).[visible](viewprops.md#optional-visible)*
|
|
291
|
+
|
|
292
|
+
Shows or hides the widget and its children. [QWidget: show](https://docs.nodegui.org/docs/api/NodeWidget#widgetshow)
|
|
293
|
+
|
|
294
|
+
___
|
|
295
|
+
|
|
296
|
+
### `Optional` windowFlags
|
|
297
|
+
|
|
298
|
+
• **windowFlags**? : *[WindowFlagsMap](../globals.md#windowflagsmap)*
|
|
299
|
+
|
|
300
|
+
*Inherited from [ViewProps](viewprops.md).[windowFlags](viewprops.md#optional-windowflags)*
|
|
301
|
+
|
|
302
|
+
Prop to set the Widget flags. example:
|
|
303
|
+
`<View windowFlags={{[WindowType.SplashScreen]: true}} />`
|
|
304
|
+
|
|
305
|
+
___
|
|
306
|
+
|
|
307
|
+
### `Optional` windowIcon
|
|
308
|
+
|
|
309
|
+
• **windowIcon**? : *QIcon*
|
|
310
|
+
|
|
311
|
+
*Inherited from [ViewProps](viewprops.md).[windowIcon](viewprops.md#optional-windowicon)*
|
|
312
|
+
|
|
313
|
+
Sets the window icon. [QWidget: setWindowIcon](https://docs.nodegui.org/docs/api/NodeWidget#widgetsetwindowiconicon)
|
|
314
|
+
|
|
315
|
+
___
|
|
316
|
+
|
|
317
|
+
### `Optional` windowOpacity
|
|
318
|
+
|
|
319
|
+
• **windowOpacity**? : *undefined | number*
|
|
320
|
+
|
|
321
|
+
*Inherited from [ViewProps](viewprops.md).[windowOpacity](viewprops.md#optional-windowopacity)*
|
|
322
|
+
|
|
323
|
+
This property holds the level of opacity for the window. [QWidget: setWindowOpacity](https://docs.nodegui.org/docs/api/NodeWidget#widgetsetwindowopacityopacity)
|
|
324
|
+
|
|
325
|
+
___
|
|
326
|
+
|
|
327
|
+
### `Optional` windowState
|
|
328
|
+
|
|
329
|
+
• **windowState**? : *WindowState*
|
|
330
|
+
|
|
331
|
+
*Inherited from [ViewProps](viewprops.md).[windowState](viewprops.md#optional-windowstate)*
|
|
332
|
+
|
|
333
|
+
Sets the window state. [QWidget: setWindowState](https://docs.nodegui.org/docs/api/NodeWidget#widgetsetwindowstatestate)
|
|
334
|
+
|
|
335
|
+
___
|
|
336
|
+
|
|
337
|
+
### `Optional` windowTitle
|
|
338
|
+
|
|
339
|
+
• **windowTitle**? : *undefined | string*
|
|
340
|
+
|
|
341
|
+
*Inherited from [ViewProps](viewprops.md).[windowTitle](viewprops.md#optional-windowtitle)*
|
|
342
|
+
|
|
343
|
+
Sets the window title property. [QWidget: setWindowTitle](https://docs.nodegui.org/docs/api/NodeWidget#widgetsetwindowtitletitle)
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: "datawithoffset"
|
|
3
|
+
title: "DataWithOffset"
|
|
4
|
+
sidebar_label: "DataWithOffset"
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Type parameters
|
|
8
|
+
|
|
9
|
+
▪ **T**
|
|
10
|
+
|
|
11
|
+
## Hierarchy
|
|
12
|
+
|
|
13
|
+
* **DataWithOffset**
|
|
14
|
+
|
|
15
|
+
## Index
|
|
16
|
+
|
|
17
|
+
### Properties
|
|
18
|
+
|
|
19
|
+
* [data](datawithoffset.md#data)
|
|
20
|
+
* [offset](datawithoffset.md#offset)
|
|
21
|
+
|
|
22
|
+
## Properties
|
|
23
|
+
|
|
24
|
+
### data
|
|
25
|
+
|
|
26
|
+
• **data**: *T*
|
|
27
|
+
|
|
28
|
+
___
|
|
29
|
+
|
|
30
|
+
### offset
|
|
31
|
+
|
|
32
|
+
• **offset**: *number*
|
|
@@ -0,0 +1,259 @@
|
|
|
1
|
+
---
|
|
2
|
+
id: "dialprops"
|
|
3
|
+
title: "DialProps"
|
|
4
|
+
sidebar_label: "DialProps"
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Hierarchy
|
|
8
|
+
|
|
9
|
+
↳ [ViewProps](viewprops.md)‹QDialSignals›
|
|
10
|
+
|
|
11
|
+
↳ **DialProps**
|
|
12
|
+
|
|
13
|
+
## Index
|
|
14
|
+
|
|
15
|
+
### Properties
|
|
16
|
+
|
|
17
|
+
* [attributes](dialprops.md#optional-attributes)
|
|
18
|
+
* [cursor](dialprops.md#optional-cursor)
|
|
19
|
+
* [enabled](dialprops.md#optional-enabled)
|
|
20
|
+
* [geometry](dialprops.md#optional-geometry)
|
|
21
|
+
* [id](dialprops.md#optional-id)
|
|
22
|
+
* [maxSize](dialprops.md#optional-maxsize)
|
|
23
|
+
* [minSize](dialprops.md#optional-minsize)
|
|
24
|
+
* [mouseTracking](dialprops.md#optional-mousetracking)
|
|
25
|
+
* [notchTarget](dialprops.md#optional-notchtarget)
|
|
26
|
+
* [notchesVisible](dialprops.md#optional-notchesvisible)
|
|
27
|
+
* [on](dialprops.md#optional-on)
|
|
28
|
+
* [pos](dialprops.md#optional-pos)
|
|
29
|
+
* [ref](dialprops.md#optional-ref)
|
|
30
|
+
* [size](dialprops.md#optional-size)
|
|
31
|
+
* [style](dialprops.md#optional-style)
|
|
32
|
+
* [styleSheet](dialprops.md#optional-stylesheet)
|
|
33
|
+
* [visible](dialprops.md#optional-visible)
|
|
34
|
+
* [windowFlags](dialprops.md#optional-windowflags)
|
|
35
|
+
* [windowIcon](dialprops.md#optional-windowicon)
|
|
36
|
+
* [windowOpacity](dialprops.md#optional-windowopacity)
|
|
37
|
+
* [windowState](dialprops.md#optional-windowstate)
|
|
38
|
+
* [windowTitle](dialprops.md#optional-windowtitle)
|
|
39
|
+
* [wrapping](dialprops.md#optional-wrapping)
|
|
40
|
+
|
|
41
|
+
## Properties
|
|
42
|
+
|
|
43
|
+
### `Optional` attributes
|
|
44
|
+
|
|
45
|
+
• **attributes**? : *[WidgetAttributesMap](../globals.md#widgetattributesmap)*
|
|
46
|
+
|
|
47
|
+
*Inherited from [ViewProps](viewprops.md).[attributes](viewprops.md#optional-attributes)*
|
|
48
|
+
|
|
49
|
+
Prop to set the Widget Attributes. example:
|
|
50
|
+
`<View attributes={{[WidgetAttributes.WA_Disabled]: true}} />`
|
|
51
|
+
|
|
52
|
+
___
|
|
53
|
+
|
|
54
|
+
### `Optional` cursor
|
|
55
|
+
|
|
56
|
+
• **cursor**? : *CursorShape | QCursor*
|
|
57
|
+
|
|
58
|
+
*Inherited from [ViewProps](viewprops.md).[cursor](viewprops.md#optional-cursor)*
|
|
59
|
+
|
|
60
|
+
Sets the window mouse cursor. [QWidget: setCursor](https://docs.nodegui.org/docs/api/NodeWidget#widgetsetcursorcursor)
|
|
61
|
+
|
|
62
|
+
___
|
|
63
|
+
|
|
64
|
+
### `Optional` enabled
|
|
65
|
+
|
|
66
|
+
• **enabled**? : *undefined | false | true*
|
|
67
|
+
|
|
68
|
+
*Inherited from [ViewProps](viewprops.md).[enabled](viewprops.md#optional-enabled)*
|
|
69
|
+
|
|
70
|
+
Sets the property that tells whether the widget is enabled. In general an enabled widget handles keyboard and mouse events; a disabled widget does not. [QWidget: setEnabled](https://docs.nodegui.org/docs/api/NodeWidget#widgetsetenabledenabled)
|
|
71
|
+
|
|
72
|
+
___
|
|
73
|
+
|
|
74
|
+
### `Optional` geometry
|
|
75
|
+
|
|
76
|
+
• **geometry**? : *[Geometry](../globals.md#geometry)*
|
|
77
|
+
|
|
78
|
+
*Inherited from [ViewProps](viewprops.md).[geometry](viewprops.md#optional-geometry)*
|
|
79
|
+
|
|
80
|
+
Sets the screen position as well as size of the widget. [QWidget: setGeometry](https://docs.nodegui.org/docs/api/NodeWidget#widgetsetgeometryx-y-width-height)
|
|
81
|
+
|
|
82
|
+
___
|
|
83
|
+
|
|
84
|
+
### `Optional` id
|
|
85
|
+
|
|
86
|
+
• **id**? : *undefined | string*
|
|
87
|
+
|
|
88
|
+
*Inherited from [ViewProps](viewprops.md).[id](viewprops.md#optional-id)*
|
|
89
|
+
|
|
90
|
+
Sets the object name (id) of the widget in Qt. Object name can be analogous to id of an element in the web world. Using the objectName of the widget one can reference it in the Qt's stylesheet much like what we do with id in the web world. [QWidget: setObjectName](https://docs.nodegui.org/docs/api/NodeWidget#widgetsetobjectnameobjectname)
|
|
91
|
+
|
|
92
|
+
___
|
|
93
|
+
|
|
94
|
+
### `Optional` maxSize
|
|
95
|
+
|
|
96
|
+
• **maxSize**? : *[Size](../globals.md#size)*
|
|
97
|
+
|
|
98
|
+
*Inherited from [ViewProps](viewprops.md).[maxSize](viewprops.md#optional-maxsize)*
|
|
99
|
+
|
|
100
|
+
Sets the maximum size of the widget. [QWidget: setMaximumSize](https://docs.nodegui.org/docs/api/NodeWidget#widgetsetmaximumsizewidth-height)
|
|
101
|
+
|
|
102
|
+
___
|
|
103
|
+
|
|
104
|
+
### `Optional` minSize
|
|
105
|
+
|
|
106
|
+
• **minSize**? : *[Size](../globals.md#size)*
|
|
107
|
+
|
|
108
|
+
*Inherited from [ViewProps](viewprops.md).[minSize](viewprops.md#optional-minsize)*
|
|
109
|
+
|
|
110
|
+
Sets the minimum size of the widget. [QWidget: setMinimumSize](https://docs.nodegui.org/docs/api/NodeWidget#widgetsetminimumsizewidth-height)
|
|
111
|
+
|
|
112
|
+
___
|
|
113
|
+
|
|
114
|
+
### `Optional` mouseTracking
|
|
115
|
+
|
|
116
|
+
• **mouseTracking**? : *undefined | false | true*
|
|
117
|
+
|
|
118
|
+
*Inherited from [ViewProps](viewprops.md).[mouseTracking](viewprops.md#optional-mousetracking)*
|
|
119
|
+
|
|
120
|
+
Sets the property that tells whether mouseTracking is enabled for the widget. [QWidget: setMouseTracking](https://docs.nodegui.org/docs/api/NodeWidget#widgetsetmousetrackingismousetracked)
|
|
121
|
+
|
|
122
|
+
___
|
|
123
|
+
|
|
124
|
+
### `Optional` notchTarget
|
|
125
|
+
|
|
126
|
+
• **notchTarget**? : *undefined | number*
|
|
127
|
+
|
|
128
|
+
___
|
|
129
|
+
|
|
130
|
+
### `Optional` notchesVisible
|
|
131
|
+
|
|
132
|
+
• **notchesVisible**? : *undefined | false | true*
|
|
133
|
+
|
|
134
|
+
___
|
|
135
|
+
|
|
136
|
+
### `Optional` on
|
|
137
|
+
|
|
138
|
+
• **on**? : *Partial‹[WidgetEventListeners](../globals.md#widgeteventlisteners) | QDialSignals›*
|
|
139
|
+
|
|
140
|
+
*Inherited from [ViewProps](viewprops.md).[on](viewprops.md#optional-on)*
|
|
141
|
+
|
|
142
|
+
Prop to set the event listener map. See [Handlong Events](/docs/guides/handle-events)
|
|
143
|
+
|
|
144
|
+
___
|
|
145
|
+
|
|
146
|
+
### `Optional` pos
|
|
147
|
+
|
|
148
|
+
• **pos**? : *[Position](../globals.md#position)*
|
|
149
|
+
|
|
150
|
+
*Inherited from [ViewProps](viewprops.md).[pos](viewprops.md#optional-pos)*
|
|
151
|
+
|
|
152
|
+
Sets the screen position of the widget. [QWidget: move](https://docs.nodegui.org/docs/api/NodeWidget#widgetmovex-y)
|
|
153
|
+
|
|
154
|
+
___
|
|
155
|
+
|
|
156
|
+
### `Optional` ref
|
|
157
|
+
|
|
158
|
+
• **ref**? : *any*
|
|
159
|
+
|
|
160
|
+
*Inherited from [ViewProps](viewprops.md).[ref](viewprops.md#optional-ref)*
|
|
161
|
+
|
|
162
|
+
Prop to set the ref. The ref will return the underlying nodegui widget.
|
|
163
|
+
|
|
164
|
+
___
|
|
165
|
+
|
|
166
|
+
### `Optional` size
|
|
167
|
+
|
|
168
|
+
• **size**? : *[ViewSize](../globals.md#viewsize)*
|
|
169
|
+
|
|
170
|
+
*Inherited from [ViewProps](viewprops.md).[size](viewprops.md#optional-size)*
|
|
171
|
+
|
|
172
|
+
Sets both the minimum and maximum sizes of the widget. [QWidget: setFixedSize](https://docs.nodegui.org/docs/api/NodeWidget#widgetsetfixedsizewidth-height)
|
|
173
|
+
|
|
174
|
+
___
|
|
175
|
+
|
|
176
|
+
### `Optional` style
|
|
177
|
+
|
|
178
|
+
• **style**? : *undefined | string*
|
|
179
|
+
|
|
180
|
+
*Inherited from [ViewProps](viewprops.md).[style](viewprops.md#optional-style)*
|
|
181
|
+
|
|
182
|
+
Sets the inline stylesheet property. [QWidget: setInlineStyle](https://docs.nodegui.org/docs/api/NodeWidget#widgetsetinlinestylestyle)
|
|
183
|
+
|
|
184
|
+
___
|
|
185
|
+
|
|
186
|
+
### `Optional` styleSheet
|
|
187
|
+
|
|
188
|
+
• **styleSheet**? : *undefined | string*
|
|
189
|
+
|
|
190
|
+
*Inherited from [ViewProps](viewprops.md).[styleSheet](viewprops.md#optional-stylesheet)*
|
|
191
|
+
|
|
192
|
+
Sets the property that holds the widget's style sheet. [QWidget: setStyleSheet](https://docs.nodegui.org/docs/api/NodeWidget#widgetsetstylesheetstylesheet)
|
|
193
|
+
|
|
194
|
+
___
|
|
195
|
+
|
|
196
|
+
### `Optional` visible
|
|
197
|
+
|
|
198
|
+
• **visible**? : *undefined | false | true*
|
|
199
|
+
|
|
200
|
+
*Inherited from [ViewProps](viewprops.md).[visible](viewprops.md#optional-visible)*
|
|
201
|
+
|
|
202
|
+
Shows or hides the widget and its children. [QWidget: show](https://docs.nodegui.org/docs/api/NodeWidget#widgetshow)
|
|
203
|
+
|
|
204
|
+
___
|
|
205
|
+
|
|
206
|
+
### `Optional` windowFlags
|
|
207
|
+
|
|
208
|
+
• **windowFlags**? : *[WindowFlagsMap](../globals.md#windowflagsmap)*
|
|
209
|
+
|
|
210
|
+
*Inherited from [ViewProps](viewprops.md).[windowFlags](viewprops.md#optional-windowflags)*
|
|
211
|
+
|
|
212
|
+
Prop to set the Widget flags. example:
|
|
213
|
+
`<View windowFlags={{[WindowType.SplashScreen]: true}} />`
|
|
214
|
+
|
|
215
|
+
___
|
|
216
|
+
|
|
217
|
+
### `Optional` windowIcon
|
|
218
|
+
|
|
219
|
+
• **windowIcon**? : *QIcon*
|
|
220
|
+
|
|
221
|
+
*Inherited from [ViewProps](viewprops.md).[windowIcon](viewprops.md#optional-windowicon)*
|
|
222
|
+
|
|
223
|
+
Sets the window icon. [QWidget: setWindowIcon](https://docs.nodegui.org/docs/api/NodeWidget#widgetsetwindowiconicon)
|
|
224
|
+
|
|
225
|
+
___
|
|
226
|
+
|
|
227
|
+
### `Optional` windowOpacity
|
|
228
|
+
|
|
229
|
+
• **windowOpacity**? : *undefined | number*
|
|
230
|
+
|
|
231
|
+
*Inherited from [ViewProps](viewprops.md).[windowOpacity](viewprops.md#optional-windowopacity)*
|
|
232
|
+
|
|
233
|
+
This property holds the level of opacity for the window. [QWidget: setWindowOpacity](https://docs.nodegui.org/docs/api/NodeWidget#widgetsetwindowopacityopacity)
|
|
234
|
+
|
|
235
|
+
___
|
|
236
|
+
|
|
237
|
+
### `Optional` windowState
|
|
238
|
+
|
|
239
|
+
• **windowState**? : *WindowState*
|
|
240
|
+
|
|
241
|
+
*Inherited from [ViewProps](viewprops.md).[windowState](viewprops.md#optional-windowstate)*
|
|
242
|
+
|
|
243
|
+
Sets the window state. [QWidget: setWindowState](https://docs.nodegui.org/docs/api/NodeWidget#widgetsetwindowstatestate)
|
|
244
|
+
|
|
245
|
+
___
|
|
246
|
+
|
|
247
|
+
### `Optional` windowTitle
|
|
248
|
+
|
|
249
|
+
• **windowTitle**? : *undefined | string*
|
|
250
|
+
|
|
251
|
+
*Inherited from [ViewProps](viewprops.md).[windowTitle](viewprops.md#optional-windowtitle)*
|
|
252
|
+
|
|
253
|
+
Sets the window title property. [QWidget: setWindowTitle](https://docs.nodegui.org/docs/api/NodeWidget#widgetsetwindowtitletitle)
|
|
254
|
+
|
|
255
|
+
___
|
|
256
|
+
|
|
257
|
+
### `Optional` wrapping
|
|
258
|
+
|
|
259
|
+
• **wrapping**? : *undefined | false | true*
|