Package org.gnome.gtk
Class Dialog.Builder<B extends Dialog.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.Window.Builder<B>
org.gnome.gtk.Dialog.Builder<B>
- Type Parameters:
B
- the type of the Builder that is returned
- All Implemented Interfaces:
BuilderInterface
,Accessible.Builder<B>
- Direct Known Subclasses:
AppChooserDialog.Builder
,ColorChooserDialog.Builder
,FileChooserDialog.Builder
,FontChooserDialog.Builder
,MessageDialog.Builder
,PageSetupUnixDialog.Builder
,PrintUnixDialog.Builder
- Enclosing class:
Dialog
public static class Dialog.Builder<B extends Dialog.Builder<B>>
extends Window.Builder<B>
implements Accessible.Builder<B>
Inner class implementing a builder pattern to construct a GObject with
properties.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbuild()
Finish building theDialog
object.onClose
(Dialog.CloseCallback handler) Deprecated.onResponse
(Dialog.ResponseCallback handler) Deprecated.UseWindow
insteadsetUseHeaderBar
(int useHeaderBar) Deprecated.Methods inherited from class org.gnome.gtk.Window.Builder
onActivateDefault, onActivateFocus, onCloseRequest, onEnableDebugging, onKeysChanged, setApplication, setChild, setDecorated, setDefaultHeight, setDefaultWidget, setDefaultWidth, setDeletable, setDestroyWithParent, setDisplay, setFocusVisible, setFocusWidget, setFullscreened, setHandleMenubarAccel, setHideOnClose, setIconName, setMaximized, setMnemonicsVisible, setModal, setResizable, setStartupId, setTitle, setTitlebar, setTransientFor
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
-
Constructor Details
-
Builder
protected Builder()Default constructor for aBuilder
object.
-
-
Method Details
-
build
Finish building theDialog
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 toDialog
.- Overrides:
build
in classWindow.Builder<B extends Dialog.Builder<B>>
- Returns:
- a new instance of
Dialog
with the properties that were set in the Builder object.
-
setUseHeaderBar
Deprecated.true
if the dialog uses a headerbar for action buttons instead of the action-area.For technical reasons, this property is declared as an integer property, but you should only set it to
true
orfalse
.Creating a dialog with headerbar
BuiltinGtkDialog
subclasses such asColorChooserDialog
set this property according to platform conventions (using theGtk.Settings:gtk-dialogs-use-header
setting).Here is how you can achieve the same:
g_object_get (settings, "gtk-dialogs-use-header", &header, NULL); dialog = g_object_new (GTK_TYPE_DIALOG, header, TRUE, NULL);
- Parameters:
useHeaderBar
- the value for theuse-header-bar
property- Returns:
- the
Builder
instance is returned, to allow method chaining
-
onClose
Deprecated.UseWindow
insteadEmitted when the user uses a keybinding to close the dialog.This is a keybinding signal.
The default binding for this signal is the Escape key.
- Parameters:
handler
- the signal handler- Returns:
- the
Builder
instance is returned, to allow method chaining - See Also:
-
onResponse
Deprecated.UseWindow
insteadEmitted when an action widget is clicked.The signal is also emitted when the dialog receives a delete event, and when
Dialog.response(int)
is called. On a delete event, the response ID isResponseType.DELETE_EVENT
. Otherwise, it depends on which action widget was clicked.- Parameters:
handler
- the signal handler- Returns:
- the
Builder
instance is returned, to allow method chaining - See Also:
-
Window
instead