Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ Similar to <Link type="LineEdit" />, but can be used to enter several lines of t
The size of the font of the input text.
</SlintProperty>

### font-family
<SlintProperty propName="font-family" typeName="string" >
The name of the font family selected for rendering the text.
</SlintProperty>

### text
<SlintProperty propName="text" typeName="string" propertyVisibility="in-out" >
The text being edited
Expand Down
1 change: 1 addition & 0 deletions internal/compiler/widgets/common/textedit-base.slint
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export component TextEditBase inherits Rectangle {
in property <TextHorizontalAlignment> horizontal-alignment <=> text-input.horizontal-alignment;
in property <bool> read-only <=> text-input.read-only;
in property <length> font-size <=> text-input.font-size;
in property <string> font-family <=> text-input.font-family;
in property <bool> enabled <=> text-input.enabled;
out property <bool> has-focus: text-input.has-focus;
out property <length> visible-width <=> scroll-view.visible-width;
Expand Down
1 change: 1 addition & 0 deletions internal/compiler/widgets/cosmic/textedit.slint
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export component TextEdit {
in property <TextHorizontalAlignment> horizontal-alignment <=> base.horizontal-alignment;
in property <bool> read-only <=> base.read-only;
in property <length> font-size <=> base.font-size;
in property <string> font-family <=> base.font-family;
in property <bool> enabled <=> base.enabled;
in property <string> placeholder-text <=> base.placeholder-text;
out property <bool> has-focus: base.has-focus;
Expand Down
1 change: 1 addition & 0 deletions internal/compiler/widgets/cupertino/textedit.slint
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ export component TextEdit {
in property <TextHorizontalAlignment> horizontal-alignment <=> text-input.horizontal-alignment;
in property <bool> read-only <=> text-input.read-only;
in property <length> font-size <=> text-input.font-size;
in property <string> font-family <=> text-input.font-family;
in property <bool> enabled <=> text-input.enabled;
out property <length> visible-width <=> scroll-view.visible-width;
out property <length> visible-height <=> scroll-view.visible-height;
Expand Down
1 change: 1 addition & 0 deletions internal/compiler/widgets/fluent/textedit.slint
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export component TextEdit {
in property <TextHorizontalAlignment> horizontal-alignment <=> base.horizontal-alignment;
in property <bool> read-only <=> base.read-only;
in property <length> font-size <=> base.font-size;
in property <string> font-family <=> base.font-family;
in property <bool> enabled <=> base.enabled;
in property <string> placeholder-text <=> base.placeholder-text;
out property <bool> has-focus: base.has-focus;
Expand Down
1 change: 1 addition & 0 deletions internal/compiler/widgets/material/textedit.slint
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export component TextEdit {
in property <TextHorizontalAlignment> horizontal-alignment <=> base.horizontal-alignment;
in property <bool> read-only <=> base.read-only;
in property <length> font-size <=> base.font-size;
in property <string> font-family <=> base.font-family;
in property <bool> enabled <=> base.enabled;
in property <string> placeholder-text <=> base.placeholder-text;
out property <bool> has-focus: base.has-focus;
Expand Down
1 change: 1 addition & 0 deletions internal/compiler/widgets/qt/textedit.slint
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ export component TextEdit {
in property <TextHorizontalAlignment> horizontal-alignment <=> base.horizontal-alignment;
in property <bool> read-only <=> base.read-only;
in property <length> font-size <=> base.font-size;
in property <string> font-family <=> base.font-family;
in property <bool> enabled <=> base.enabled;
in property <string> placeholder-text <=> base.placeholder-text;
out property <bool> has-focus: base.has-focus;
Expand Down
Loading