slint/internal/compiler/widgets/qt/lineedit.slint
Aurindam Jana 0cfeec1a31
Update Slint Community License (#4994)
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"
2024-04-15 15:18:55 +02:00

72 lines
2.2 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 { LineEditBase} from "../common/lineedit-base.slint";
import { StyleMetrics } from "std-widgets-impl.slint";
export component LineEdit {
in property <length> font-size <=> inner.font-size;
in property <string> placeholder-text <=> inner.placeholder-text;
in property input-type <=> inner.input-type;
in property horizontal-alignment <=> inner.horizontal-alignment;
in property read-only <=> inner.read-only;
in property <bool> enabled: true;
out property <bool> has-focus <=> inner.has-focus;
in-out property <string> text <=> inner.text;
callback accepted <=> inner.accepted;
callback edited <=> inner.edited;
accessible-role: text-input;
accessible-value <=> text;
public function set-selection-offsets(start: int, end: int) {
inner.set-selection-offsets(start, end);
}
public function select-all() {
inner.select-all();
}
public function clear-selection() {
inner.clear-selection();
}
public function cut() {
inner.cut();
}
public function copy() {
inner.copy();
}
public function paste() {
inner.paste();
}
forward-focus: inner;
horizontal-stretch: 1;
vertical-stretch: 0;
min-width: max(160px, layout.min-height);
min-height: max(32px, layout.min-height);
native := NativeLineEdit {
has-focus <=> root.has-focus;
enabled: root.enabled;
width: 100%;
height: 100%;
}
layout := HorizontalLayout {
padding-left: native.native-padding-left;
padding-right: native.native-padding-right;
padding-top: native.native-padding-top;
padding-bottom: native.native-padding-bottom;
inner := LineEditBase {
placeholder-color: self.enabled ? StyleMetrics.placeholder-color : StyleMetrics.placeholder-color-disabled;
text-color: self.enabled ? StyleMetrics.textedit-text-color : StyleMetrics.textedit-text-color-disabled;
enabled: root.enabled;
margin: layout.padding-left + layout.padding-right;
}
}
}