mirror of
https://github.com/slint-ui/slint.git
synced 2025-08-03 18:29:09 +00:00

Updated the version from 1.1 to 1.2 Renamed the header to "Slint Royalty-free Desktop, Mobile, and Web Applications License" Added definition of "Mobile Application" and grant of right Moved "Limitations" to 3rd section and "License Conditions - Attributions" to 2nd section Added flexibility to choose between showing "MadeWithSlint" as a dialog/splash screen or on a public webpage Moved the para on copyright notices to section under "Limitations"
46 lines
No EOL
1.4 KiB
Text
46 lines
No EOL
1.4 KiB
Text
// Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-1.2 OR LicenseRef-Slint-commercial
|
|
|
|
import { TextEdit, AboutSlint } from "../common/common.slint";
|
|
import { StyleMetrics, ScrollView, Palette } from "std-widgets-impl.slint";
|
|
import { StandardTableView } from "tableview.slint";
|
|
export { StyleMetrics, ScrollView, TextEdit, AboutSlint, StandardTableView, Palette }
|
|
|
|
import { Button, StandardButton } from "button.slint";
|
|
export { Button, StandardButton }
|
|
|
|
import { CheckBox } from "checkbox.slint";
|
|
export { CheckBox }
|
|
|
|
import { SpinBox } from "spinbox.slint";
|
|
export { SpinBox }
|
|
|
|
import { Slider } from "slider.slint";
|
|
export { Slider }
|
|
|
|
import { Switch } from "switch.slint";
|
|
export { Switch }
|
|
|
|
import { GroupBox } from "groupbox.slint";
|
|
export { GroupBox }
|
|
|
|
import { LineEdit } from "lineedit.slint";
|
|
export { LineEdit }
|
|
|
|
import { ComboBox } from "combobox.slint";
|
|
export { ComboBox }
|
|
|
|
import { TabWidget, TabWidgetImpl, TabImpl, TabBarImpl } from "tabwidget.slint";
|
|
export { TabWidget, TabWidgetImpl, TabImpl, TabBarImpl }
|
|
|
|
import { HorizontalBox, VerticalBox, GridBox } from "layouts.slint";
|
|
export { HorizontalBox, VerticalBox, GridBox }
|
|
|
|
import { ProgressIndicator } from "progressindicator.slint";
|
|
export { ProgressIndicator }
|
|
|
|
import { Spinner } from "spinner.slint";
|
|
export { Spinner }
|
|
|
|
import { StandardListView, ListView } from "../common/listview.slint";
|
|
export { StandardListView, ListView } |