Upgrade to v2.7
Fyne API v2.7
app
canvas
container
data/binding
data/validation
dialog
driver
driver/desktop
driver/embedded
driver/mobile
driver/software
lang
layout
storage
storage/repository
test
theme
widget
package widget
Accordion
Accordion
AccordionItem
AccordionItem
Activity
Activity
BaseWidget
BaseWidget
Button
Button
ButtonAlign
ButtonAlign
ButtonIconPlacement
ButtonIconPlacement
ButtonImportance
ButtonImportance
ButtonStyle
ButtonStyle
Calendar
Calendar
Card
Card
Check
Check
CheckGroup
CheckGroup
CustomTextGridStyle
CustomTextGridStyle
DateEntry
DateEntry
DisableableWidget
DisableableWidget
Entry
Entry
FileIcon
FileIcon
Form
Form
FormItem
FormItem
GridWrap
GridWrap
GridWrapItemID
GridWrapItemID
Hyperlink
Hyperlink
HyperlinkSegment
HyperlinkSegment
Icon
Icon
ImageSegment
ImageSegment
Importance
Importance
Label
Label
List
List
ListItemID
ListItemID
ListSegment
ListSegment
Menu
Menu
Orientation
Orientation
ParagraphSegment
ParagraphSegment
PopUp
PopUp
PopUpMenu
PopUpMenu
ProgressBar
ProgressBar
ProgressBarInfinite
ProgressBarInfinite
RadioGroup
RadioGroup
RichText
RichText
RichTextBlock
RichTextBlock
RichTextSegment
RichTextSegment
RichTextStyle
RichTextStyle
Select
Select
SelectEntry
SelectEntry
Separator
Separator
SeparatorSegment
SeparatorSegment
Slider
Slider
Table
Table
TableCellID
TableCellID
TextGrid
TextGrid
TextGridCell
TextGridCell
TextGridRow
TextGridRow
TextGridStyle
TextGridStyle
TextSegment
TextSegment
Toolbar
Toolbar
ToolbarAction
ToolbarAction
ToolbarItem
ToolbarItem
ToolbarSeparator
ToolbarSeparator
ToolbarSpacer
ToolbarSpacer
Tree
Tree
TreeNodeID
TreeNodeID
Fyne API "widget.ImageSegment"
widget.ImageSegment
import "fyne.io/fyne/v2/widget"
Usage
type ImageSegment
type ImageSegment struct {
Source fyne.URI
Title string
// Alignment specifies the horizontal alignment of this image segment
// Since: 2.4
Alignment fyne.TextAlign
}
ImageSegment represents an image within a rich text widget.
Since:
2.3
func (*ImageSegment) Inline
func (i *ImageSegment) Inline() bool
Inline returns false as images in rich text are blocks.
func (*ImageSegment) Select
func (i *ImageSegment) Select(begin, end fyne.Position)
Select tells the segment that the user is selecting the content between the two positions.
func (*ImageSegment) SelectedText
func (i *ImageSegment) SelectedText() string
SelectedText should return the text representation of any content currently selected through the Select call.
func (*ImageSegment) Textual
func (i *ImageSegment) Textual() string
Textual returns the content of this segment rendered to plain text.
func (*ImageSegment) Unselect
func (i *ImageSegment) Unselect()
Unselect tells the segment that the user is has cancelled the previous selection.
func (*ImageSegment) Update
func (i *ImageSegment) Update(o fyne.CanvasObject)
Update applies the current state of this image segment to an existing visual.
func (*ImageSegment) Visual
func (i *ImageSegment) Visual() fyne.CanvasObject
Visual returns the image widget required to render this segment.