Package org.gnome.gtk
Class ListView.Builder<B extends ListView.Builder<B>>
java.lang.Object
io.github.jwharm.javagi.gobject.Builder<B>
org.gnome.gobject.GObject.Builder<B>
org.gnome.gobject.InitiallyUnowned.Builder<B>
org.gnome.gtk.Widget.Builder<B>
org.gnome.gtk.ListBase.Builder<B>
org.gnome.gtk.ListView.Builder<B>
- Type Parameters:
B
- the type of the Builder that is returned
- All Implemented Interfaces:
BuilderInterface
,Accessible.Builder<B>
,Orientable.Builder<B>
,Scrollable.Builder<B>
- Enclosing class:
ListView
public static class ListView.Builder<B extends ListView.Builder<B>>
extends ListBase.Builder<B>
implements Accessible.Builder<B>, Orientable.Builder<B>, Scrollable.Builder<B>
Inner class implementing a builder pattern to construct a GObject with
properties.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbuild()
Finish building theListView
object.onActivate
(ListView.ActivateCallback handler) Emitted when a row has been activated by the user, usually via activating the GtkListView|list.activate-item action.setEnableRubberband
(boolean enableRubberband) Allow rubberband selection.setFactory
(ListItemFactory factory) Factory for populating list items.setHeaderFactory
(ListItemFactory headerFactory) Factory for creating header widgets.setModel
(SelectionModel model) Model for the items displayed.setShowSeparators
(boolean showSeparators) Show separators between rows.setSingleClickActivate
(boolean singleClickActivate) Activate rows on single click and select them on hover.setTabBehavior
(ListTabBehavior tabBehavior) Behavior of theTab
keyMethods inherited from class org.gnome.gtk.ListBase.Builder
setOrientation
Methods inherited from class org.gnome.gtk.Widget.Builder
onDestroy, onDirectionChanged, onHide, onKeynavFailed, onMap, onMnemonicActivate, onMoveFocus, onQueryTooltip, onRealize, onShow, onStateFlagsChanged, onUnmap, onUnrealize, setCanFocus, setCanTarget, setCssClasses, setCssName, setCursor, setFocusable, setFocusOnClick, setHalign, setHasTooltip, setHeightRequest, setHexpand, setHexpandSet, setLayoutManager, setMarginBottom, setMarginEnd, setMarginStart, setMarginTop, setName, setOpacity, setOverflow, setReceivesDefault, setSensitive, setTooltipMarkup, setTooltipText, setValign, setVexpand, setVexpandSet, setVisible, setWidthRequest
Methods inherited from class org.gnome.gobject.GObject.Builder
onNotify
Methods inherited from class io.github.jwharm.javagi.gobject.Builder
addBuilderProperty, connect, connect, connectSignals, getArena, getNames, getValues
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.gnome.gtk.Accessible.Builder
setAccessibleRole
Methods inherited from interface io.github.jwharm.javagi.gobject.BuilderInterface
addBuilderProperty, connect, connect, getArena
Methods inherited from interface org.gnome.gtk.Orientable.Builder
setOrientation
Methods inherited from interface org.gnome.gtk.Scrollable.Builder
setHadjustment, setHscrollPolicy, setVadjustment, setVscrollPolicy
-
Constructor Details
-
Builder
protected Builder()Default constructor for aBuilder
object.
-
-
Method Details
-
build
Finish building theListView
object. This will callGObject.withProperties(org.gnome.glib.Type, java.lang.String[], org.gnome.gobject.Value[])
to create a new GObject instance, which is then cast toListView
.- Overrides:
build
in classListBase.Builder<B extends ListView.Builder<B>>
- Returns:
- a new instance of
ListView
with the properties that were set in the Builder object.
-
setEnableRubberband
Allow rubberband selection.- Parameters:
enableRubberband
- the value for theenable-rubberband
property- Returns:
- the
Builder
instance is returned, to allow method chaining
-
setFactory
Factory for populating list items.The factory must be for configuring
ListItem
objects.- Parameters:
factory
- the value for thefactory
property- Returns:
- the
Builder
instance is returned, to allow method chaining
-
setHeaderFactory
Factory for creating header widgets.The factory must be for configuring
ListHeader
objects.- Parameters:
headerFactory
- the value for theheader-factory
property- Returns:
- the
Builder
instance is returned, to allow method chaining
-
setModel
Model for the items displayed.- Parameters:
model
- the value for themodel
property- Returns:
- the
Builder
instance is returned, to allow method chaining
-
setShowSeparators
Show separators between rows.- Parameters:
showSeparators
- the value for theshow-separators
property- Returns:
- the
Builder
instance is returned, to allow method chaining
-
setSingleClickActivate
Activate rows on single click and select them on hover.- Parameters:
singleClickActivate
- the value for thesingle-click-activate
property- Returns:
- the
Builder
instance is returned, to allow method chaining
-
setTabBehavior
Behavior of theTab
key- Parameters:
tabBehavior
- the value for thetab-behavior
property- Returns:
- the
Builder
instance is returned, to allow method chaining
-
onActivate
Emitted when a row has been activated by the user, usually via activating the GtkListView|list.activate-item action.This allows for a convenient way to handle activation in a listview. See
ListItem.setActivatable(boolean)
for details on how to use this signal.- Parameters:
handler
- the signal handler- Returns:
- the
Builder
instance is returned, to allow method chaining - See Also:
-