Copyright | Will Thompson and Iñaki García Etxebarria |
---|---|
License | LGPL-2.1 |
Maintainer | Iñaki García Etxebarria |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
GtkPopover
is a bubble-like context popup.
It is primarily meant to provide context-dependent information
or options. Popovers are attached to a parent widget. By default,
they point to the whole widget area, although this behavior can be
changed with popoverSetPointingTo
.
The position of a popover relative to the widget it is attached to
can also be changed with popoverSetPosition
By default, GtkPopover
performs a grab, in order to ensure input
events get redirected to it while it is shown, and also so the popover
is dismissed in the expected situations (clicks outside the popover,
or the Escape key being pressed). If no such modal behavior is desired
on a popover, popoverSetAutohide
may be called on it to
tweak its behavior.
GtkPopover as menu replacement
GtkPopover
is often used to replace menus. The best was to do this
is to use the PopoverMenu
subclass which supports being
populated from a GMenuModel
with popoverMenuNewFromModel
.
xml code
<section> <attribute name="display-hint">horizontal-buttons</attribute> <item> <attribute name="label">Cut</attribute> <attribute name="action">app.cut</attribute> <attribute name="verb-icon">edit-cut-symbolic</attribute> </item> <item> <attribute name="label">Copy</attribute> <attribute name="action">app.copy</attribute> <attribute name="verb-icon">edit-copy-symbolic</attribute> </item> <item> <attribute name="label">Paste</attribute> <attribute name="action">app.paste</attribute> <attribute name="verb-icon">edit-paste-symbolic</attribute> </item> </section>
CSS nodes
popover.background[.menu] ├── arrow ╰── contents ╰── <child>
GtkPopover
has a main node with name popover
, an arrow with name arrow
,
and another node for the content named contents
. The popover
node always
gets the .background
style class. It also gets the .menu
style class
if the popover is menu-like, e.g. is a PopoverMenu
.
Particular uses of GtkPopover
, such as touch selection popups or
magnifiers in GtkEntry
or GtkTextView
get style classes like
.touch-selection
or .magnifier
to differentiate from plain popovers.
When styling a popover directly, the popover
node should usually
not have any background. The visible part of the popover can have
a shadow. To specify it in CSS, set the box-shadow of the contents
node.
Note that, in order to accomplish appropriate arrow visuals, GtkPopover
uses custom drawing for the arrow
node. This makes it possible for the
arrow to change its shape dynamically, but it also limits the possibilities
of styling it using CSS. In particular, the arrow
gets drawn over the
content
node's border and shadow, so they look like one shape, which
means that the border width of the content
node and the arrow
node should
be the same. The arrow also does not support any border shape other than
solid, no border-radius, only one border width (border-bottom-width is
used) and no box-shadow.
Synopsis
- newtype Popover = Popover (ManagedPtr Popover)
- class (GObject o, IsDescendantOf Popover o) => IsPopover o
- toPopover :: (MonadIO m, IsPopover o) => o -> m Popover
- popoverGetAutohide :: (HasCallStack, MonadIO m, IsPopover a) => a -> m Bool
- popoverGetCascadePopdown :: (HasCallStack, MonadIO m, IsPopover a) => a -> m Bool
- popoverGetChild :: (HasCallStack, MonadIO m, IsPopover a) => a -> m (Maybe Widget)
- popoverGetHasArrow :: (HasCallStack, MonadIO m, IsPopover a) => a -> m Bool
- popoverGetMnemonicsVisible :: (HasCallStack, MonadIO m, IsPopover a) => a -> m Bool
- popoverGetOffset :: (HasCallStack, MonadIO m, IsPopover a) => a -> m (Int32, Int32)
- popoverGetPointingTo :: (HasCallStack, MonadIO m, IsPopover a) => a -> m (Bool, Rectangle)
- popoverGetPosition :: (HasCallStack, MonadIO m, IsPopover a) => a -> m PositionType
- popoverNew :: (HasCallStack, MonadIO m) => m Popover
- popoverPopdown :: (HasCallStack, MonadIO m, IsPopover a) => a -> m ()
- popoverPopup :: (HasCallStack, MonadIO m, IsPopover a) => a -> m ()
- popoverPresent :: (HasCallStack, MonadIO m, IsPopover a) => a -> m ()
- popoverSetAutohide :: (HasCallStack, MonadIO m, IsPopover a) => a -> Bool -> m ()
- popoverSetCascadePopdown :: (HasCallStack, MonadIO m, IsPopover a) => a -> Bool -> m ()
- popoverSetChild :: (HasCallStack, MonadIO m, IsPopover a, IsWidget b) => a -> Maybe b -> m ()
- popoverSetDefaultWidget :: (HasCallStack, MonadIO m, IsPopover a, IsWidget b) => a -> Maybe b -> m ()
- popoverSetHasArrow :: (HasCallStack, MonadIO m, IsPopover a) => a -> Bool -> m ()
- popoverSetMnemonicsVisible :: (HasCallStack, MonadIO m, IsPopover a) => a -> Bool -> m ()
- popoverSetOffset :: (HasCallStack, MonadIO m, IsPopover a) => a -> Int32 -> Int32 -> m ()
- popoverSetPointingTo :: (HasCallStack, MonadIO m, IsPopover a) => a -> Maybe Rectangle -> m ()
- popoverSetPosition :: (HasCallStack, MonadIO m, IsPopover a) => a -> PositionType -> m ()
- constructPopoverAutohide :: (IsPopover o, MonadIO m) => Bool -> m (GValueConstruct o)
- getPopoverAutohide :: (MonadIO m, IsPopover o) => o -> m Bool
- setPopoverAutohide :: (MonadIO m, IsPopover o) => o -> Bool -> m ()
- constructPopoverCascadePopdown :: (IsPopover o, MonadIO m) => Bool -> m (GValueConstruct o)
- getPopoverCascadePopdown :: (MonadIO m, IsPopover o) => o -> m Bool
- setPopoverCascadePopdown :: (MonadIO m, IsPopover o) => o -> Bool -> m ()
- clearPopoverChild :: (MonadIO m, IsPopover o) => o -> m ()
- constructPopoverChild :: (IsPopover o, MonadIO m, IsWidget a) => a -> m (GValueConstruct o)
- getPopoverChild :: (MonadIO m, IsPopover o) => o -> m (Maybe Widget)
- setPopoverChild :: (MonadIO m, IsPopover o, IsWidget a) => o -> a -> m ()
- clearPopoverDefaultWidget :: (MonadIO m, IsPopover o) => o -> m ()
- constructPopoverDefaultWidget :: (IsPopover o, MonadIO m, IsWidget a) => a -> m (GValueConstruct o)
- getPopoverDefaultWidget :: (MonadIO m, IsPopover o) => o -> m (Maybe Widget)
- setPopoverDefaultWidget :: (MonadIO m, IsPopover o, IsWidget a) => o -> a -> m ()
- constructPopoverHasArrow :: (IsPopover o, MonadIO m) => Bool -> m (GValueConstruct o)
- getPopoverHasArrow :: (MonadIO m, IsPopover o) => o -> m Bool
- setPopoverHasArrow :: (MonadIO m, IsPopover o) => o -> Bool -> m ()
- constructPopoverMnemonicsVisible :: (IsPopover o, MonadIO m) => Bool -> m (GValueConstruct o)
- getPopoverMnemonicsVisible :: (MonadIO m, IsPopover o) => o -> m Bool
- setPopoverMnemonicsVisible :: (MonadIO m, IsPopover o) => o -> Bool -> m ()
- clearPopoverPointingTo :: (MonadIO m, IsPopover o) => o -> m ()
- constructPopoverPointingTo :: (IsPopover o, MonadIO m) => Rectangle -> m (GValueConstruct o)
- getPopoverPointingTo :: (MonadIO m, IsPopover o) => o -> m (Maybe Rectangle)
- setPopoverPointingTo :: (MonadIO m, IsPopover o) => o -> Rectangle -> m ()
- constructPopoverPosition :: (IsPopover o, MonadIO m) => PositionType -> m (GValueConstruct o)
- getPopoverPosition :: (MonadIO m, IsPopover o) => o -> m PositionType
- setPopoverPosition :: (MonadIO m, IsPopover o) => o -> PositionType -> m ()
- type PopoverActivateDefaultCallback = IO ()
- afterPopoverActivateDefault :: (IsPopover a, MonadIO m) => a -> ((?self :: a) => PopoverActivateDefaultCallback) -> m SignalHandlerId
- onPopoverActivateDefault :: (IsPopover a, MonadIO m) => a -> ((?self :: a) => PopoverActivateDefaultCallback) -> m SignalHandlerId
- type PopoverClosedCallback = IO ()
- afterPopoverClosed :: (IsPopover a, MonadIO m) => a -> ((?self :: a) => PopoverClosedCallback) -> m SignalHandlerId
- onPopoverClosed :: (IsPopover a, MonadIO m) => a -> ((?self :: a) => PopoverClosedCallback) -> m SignalHandlerId
Exported types
Memory-managed wrapper type.
Instances
Eq Popover Source # | |
GObject Popover Source # | |
Defined in GI.Gtk.Objects.Popover | |
ManagedPtrNewtype Popover Source # | |
Defined in GI.Gtk.Objects.Popover toManagedPtr :: Popover -> ManagedPtr Popover | |
TypedObject Popover Source # | |
Defined in GI.Gtk.Objects.Popover | |
HasParentTypes Popover Source # | |
Defined in GI.Gtk.Objects.Popover | |
IsGValue (Maybe Popover) Source # | Convert |
Defined in GI.Gtk.Objects.Popover gvalueGType_ :: IO GType gvalueSet_ :: Ptr GValue -> Maybe Popover -> IO () gvalueGet_ :: Ptr GValue -> IO (Maybe Popover) | |
type ParentTypes Popover Source # | |
Defined in GI.Gtk.Objects.Popover type ParentTypes Popover = '[Widget, Object, Accessible, Buildable, ConstraintTarget, Native, ShortcutManager] |
class (GObject o, IsDescendantOf Popover o) => IsPopover o Source #
Instances
(GObject o, IsDescendantOf Popover o) => IsPopover o Source # | |
Defined in GI.Gtk.Objects.Popover |
Methods
Click to display all available methods, including inherited ones
Methods
actionSetEnabled, activate, activateAction, activateDefault, addController, addCssClass, addMnemonicLabel, addTickCallback, allocate, announce, bindProperty, bindPropertyFull, childFocus, computeBounds, computeExpand, computePoint, computeTransform, contains, createPangoContext, createPangoLayout, disposeTemplate, dragCheckThreshold, errorBell, forceFloating, freezeNotify, getv, grabFocus, hasCssClass, hasDefault, hasFocus, hasVisibleFocus, hide, inDestruction, initTemplate, insertActionGroup, insertAfter, insertBefore, isAncestor, isDrawable, isFloating, isFocus, isSensitive, isVisible, keynavFailed, listMnemonicLabels, map, measure, mnemonicActivate, notify, notifyByPspec, observeChildren, observeControllers, pick, popdown, popup, present, queueAllocate, queueDraw, queueResize, realize, ref, refSink, removeController, removeCssClass, removeMnemonicLabel, removeTickCallback, resetProperty, resetRelation, resetState, runDispose, shouldLayout, show, sizeAllocate, snapshotChild, stealData, stealQdata, thawNotify, translateCoordinates, triggerTooltipQuery, unmap, unparent, unrealize, unref, unsetStateFlags, updateNextAccessibleSibling, updateProperty, updateRelation, updateState, watchClosure.
Getters
getAccessibleParent, getAccessibleRole, getAllocatedBaseline, getAllocatedHeight, getAllocatedWidth, getAllocation, getAncestor, getAtContext, getAutohide, getBaseline, getBounds, getBuildableId, getCanFocus, getCanTarget, getCascadePopdown, getChild, getChildVisible, getClipboard, getColor, getCssClasses, getCssName, getCursor, getData, getDirection, getDisplay, getFirstAccessibleChild, getFirstChild, getFocusChild, getFocusOnClick, getFocusable, getFontMap, getFontOptions, getFrameClock, getHalign, getHasArrow, getHasTooltip, getHeight, getHexpand, getHexpandSet, getLastChild, getLayoutManager, getMapped, getMarginBottom, getMarginEnd, getMarginStart, getMarginTop, getMnemonicsVisible, getName, getNative, getNextAccessibleSibling, getNextSibling, getOffset, getOpacity, getOverflow, getPangoContext, getParent, getPlatformState, getPointingTo, getPosition, getPreferredSize, getPrevSibling, getPrimaryClipboard, getProperty, getQdata, getRealized, getReceivesDefault, getRenderer, getRequestMode, getRoot, getScaleFactor, getSensitive, getSettings, getSize, getSizeRequest, getStateFlags, getStyleContext, getSurface, getSurfaceTransform, getTemplateChild, getTooltipMarkup, getTooltipText, getValign, getVexpand, getVexpandSet, getVisible, getWidth.
Setters
setAccessibleParent, setAutohide, setCanFocus, setCanTarget, setCascadePopdown, setChild, setChildVisible, setCssClasses, setCursor, setCursorFromName, setData, setDataFull, setDefaultWidget, setDirection, setFocusChild, setFocusOnClick, setFocusable, setFontMap, setFontOptions, setHalign, setHasArrow, setHasTooltip, setHexpand, setHexpandSet, setLayoutManager, setMarginBottom, setMarginEnd, setMarginStart, setMarginTop, setMnemonicsVisible, setName, setOffset, setOpacity, setOverflow, setParent, setPointingTo, setPosition, setProperty, setReceivesDefault, setSensitive, setSizeRequest, setStateFlags, setTooltipMarkup, setTooltipText, setValign, setVexpand, setVexpandSet, setVisible.
getAutohide
:: (HasCallStack, MonadIO m, IsPopover a) | |
=> a |
|
-> m Bool | Returns: |
Returns whether the popover is modal.
See popoverSetAutohide
for the
implications of this.
getCascadePopdown
popoverGetCascadePopdown Source #
:: (HasCallStack, MonadIO m, IsPopover a) | |
=> a |
|
-> m Bool | Returns: |
Returns whether the popover will close after a modal child is closed.
getChild
:: (HasCallStack, MonadIO m, IsPopover a) | |
=> a |
|
-> m (Maybe Widget) | Returns: the child widget of |
Gets the child widget of popover
.
getHasArrow
:: (HasCallStack, MonadIO m, IsPopover a) | |
=> a |
|
-> m Bool | Returns: whether the popover has an arrow |
Gets whether this popover is showing an arrow pointing at the widget that it is relative to.
getMnemonicsVisible
popoverGetMnemonicsVisible Source #
:: (HasCallStack, MonadIO m, IsPopover a) | |
=> a |
|
-> m Bool | Returns: |
Gets whether mnemonics are visible.
getOffset
:: (HasCallStack, MonadIO m, IsPopover a) | |
=> a |
|
-> m (Int32, Int32) |
Gets the offset previous set with [methodgtk
.Popover.set_offset()
].
getPointingTo
:: (HasCallStack, MonadIO m, IsPopover a) | |
=> a |
|
-> m (Bool, Rectangle) | Returns: |
getPosition
:: (HasCallStack, MonadIO m, IsPopover a) | |
=> a |
|
-> m PositionType | Returns: The preferred position. |
Returns the preferred position of popover
.
new
:: (HasCallStack, MonadIO m) | |
=> m Popover | Returns: the new |
Creates a new GtkPopover
.
popdown
:: (HasCallStack, MonadIO m, IsPopover a) | |
=> a |
|
-> m () |
Pops popover
down.
This may have the side-effect of closing a parent popover as well. See Popover:cascadePopdown.
popup
:: (HasCallStack, MonadIO m, IsPopover a) | |
=> a |
|
-> m () |
Pops popover
up.
present
:: (HasCallStack, MonadIO m, IsPopover a) | |
=> a |
|
-> m () |
Allocate a size for the GtkPopover
.
This function needs to be called in size-allocate by widgets
who have a GtkPopover
as child. When using a layout manager,
this is happening automatically.
To make a popover appear on screen, use popoverPopup
.
setAutohide
:: (HasCallStack, MonadIO m, IsPopover a) | |
=> a |
|
-> Bool |
|
-> m () |
Sets whether popover
is modal.
A modal popover will grab the keyboard focus on it when being displayed. Focus will wrap around within the popover. Clicking outside the popover area or pressing Esc will dismiss the popover.
Called this function on an already showing popup with a new autohide value different from the current one, will cause the popup to be hidden.
setCascadePopdown
popoverSetCascadePopdown Source #
:: (HasCallStack, MonadIO m, IsPopover a) | |
=> a |
|
-> Bool |
|
-> m () |
setChild
:: (HasCallStack, MonadIO m, IsPopover a, IsWidget b) | |
=> a |
|
-> Maybe b |
|
-> m () |
Sets the child widget of popover
.
setDefaultWidget
popoverSetDefaultWidget Source #
:: (HasCallStack, MonadIO m, IsPopover a, IsWidget b) | |
=> a |
|
-> Maybe b |
|
-> m () |
Sets the default widget of a GtkPopover
.
The default widget is the widget that’s activated when the user
presses Enter in a dialog (for example). This function sets or
unsets the default widget for a GtkPopover
.
setHasArrow
:: (HasCallStack, MonadIO m, IsPopover a) | |
=> a |
|
-> Bool |
|
-> m () |
Sets whether this popover should draw an arrow pointing at the widget it is relative to.
setMnemonicsVisible
popoverSetMnemonicsVisible Source #
:: (HasCallStack, MonadIO m, IsPopover a) | |
=> a |
|
-> Bool |
|
-> m () |
Sets whether mnemonics should be visible.
setOffset
:: (HasCallStack, MonadIO m, IsPopover a) | |
=> a |
|
-> Int32 |
|
-> Int32 |
|
-> m () |
Sets the offset to use when calculating the position of the popover.
These values are used when preparing the [structgdk
.PopupLayout]
for positioning the popover.
setPointingTo
:: (HasCallStack, MonadIO m, IsPopover a) | |
=> a |
|
-> Maybe Rectangle |
|
-> m () |
Sets the rectangle that popover
points to.
This is in the coordinate space of the popover
parent.
setPosition
:: (HasCallStack, MonadIO m, IsPopover a) | |
=> a |
|
-> PositionType |
|
-> m () |
Sets the preferred position for popover
to appear.
If the popover
is currently visible, it will be immediately
updated.
This preference will be respected where possible, although
on lack of space (eg. if close to the window edges), the
GtkPopover
may choose to appear on the opposite side.
Properties
autohide
Whether to dismiss the popover on outside clicks.
constructPopoverAutohide :: (IsPopover o, MonadIO m) => Bool -> m (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “autohide
” property. This is rarely needed directly, but it is used by new
.
getPopoverAutohide :: (MonadIO m, IsPopover o) => o -> m Bool Source #
Get the value of the “autohide
” property.
When overloading is enabled, this is equivalent to
get
popover #autohide
setPopoverAutohide :: (MonadIO m, IsPopover o) => o -> Bool -> m () Source #
Set the value of the “autohide
” property.
When overloading is enabled, this is equivalent to
set
popover [ #autohide:=
value ]
cascadePopdown
Whether the popover pops down after a child popover.
This is used to implement the expected behavior of submenus.
constructPopoverCascadePopdown :: (IsPopover o, MonadIO m) => Bool -> m (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “cascade-popdown
” property. This is rarely needed directly, but it is used by new
.
getPopoverCascadePopdown :: (MonadIO m, IsPopover o) => o -> m Bool Source #
Get the value of the “cascade-popdown
” property.
When overloading is enabled, this is equivalent to
get
popover #cascadePopdown
setPopoverCascadePopdown :: (MonadIO m, IsPopover o) => o -> Bool -> m () Source #
Set the value of the “cascade-popdown
” property.
When overloading is enabled, this is equivalent to
set
popover [ #cascadePopdown:=
value ]
child
The child widget.
clearPopoverChild :: (MonadIO m, IsPopover o) => o -> m () Source #
Set the value of the “child
” property to Nothing
.
When overloading is enabled, this is equivalent to
clear
#child
constructPopoverChild :: (IsPopover o, MonadIO m, IsWidget a) => a -> m (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “child
” property. This is rarely needed directly, but it is used by new
.
getPopoverChild :: (MonadIO m, IsPopover o) => o -> m (Maybe Widget) Source #
Get the value of the “child
” property.
When overloading is enabled, this is equivalent to
get
popover #child
setPopoverChild :: (MonadIO m, IsPopover o, IsWidget a) => o -> a -> m () Source #
Set the value of the “child
” property.
When overloading is enabled, this is equivalent to
set
popover [ #child:=
value ]
defaultWidget
The default widget inside the popover.
clearPopoverDefaultWidget :: (MonadIO m, IsPopover o) => o -> m () Source #
Set the value of the “default-widget
” property to Nothing
.
When overloading is enabled, this is equivalent to
clear
#defaultWidget
constructPopoverDefaultWidget :: (IsPopover o, MonadIO m, IsWidget a) => a -> m (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “default-widget
” property. This is rarely needed directly, but it is used by new
.
getPopoverDefaultWidget :: (MonadIO m, IsPopover o) => o -> m (Maybe Widget) Source #
Get the value of the “default-widget
” property.
When overloading is enabled, this is equivalent to
get
popover #defaultWidget
setPopoverDefaultWidget :: (MonadIO m, IsPopover o, IsWidget a) => o -> a -> m () Source #
Set the value of the “default-widget
” property.
When overloading is enabled, this is equivalent to
set
popover [ #defaultWidget:=
value ]
hasArrow
Whether to draw an arrow.
constructPopoverHasArrow :: (IsPopover o, MonadIO m) => Bool -> m (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “has-arrow
” property. This is rarely needed directly, but it is used by new
.
getPopoverHasArrow :: (MonadIO m, IsPopover o) => o -> m Bool Source #
Get the value of the “has-arrow
” property.
When overloading is enabled, this is equivalent to
get
popover #hasArrow
setPopoverHasArrow :: (MonadIO m, IsPopover o) => o -> Bool -> m () Source #
Set the value of the “has-arrow
” property.
When overloading is enabled, this is equivalent to
set
popover [ #hasArrow:=
value ]
mnemonicsVisible
Whether mnemonics are currently visible in this popover.
constructPopoverMnemonicsVisible :: (IsPopover o, MonadIO m) => Bool -> m (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “mnemonics-visible
” property. This is rarely needed directly, but it is used by new
.
getPopoverMnemonicsVisible :: (MonadIO m, IsPopover o) => o -> m Bool Source #
Get the value of the “mnemonics-visible
” property.
When overloading is enabled, this is equivalent to
get
popover #mnemonicsVisible
setPopoverMnemonicsVisible :: (MonadIO m, IsPopover o) => o -> Bool -> m () Source #
Set the value of the “mnemonics-visible
” property.
When overloading is enabled, this is equivalent to
set
popover [ #mnemonicsVisible:=
value ]
pointingTo
Rectangle in the parent widget that the popover points to.
clearPopoverPointingTo :: (MonadIO m, IsPopover o) => o -> m () Source #
Set the value of the “pointing-to
” property to Nothing
.
When overloading is enabled, this is equivalent to
clear
#pointingTo
constructPopoverPointingTo :: (IsPopover o, MonadIO m) => Rectangle -> m (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “pointing-to
” property. This is rarely needed directly, but it is used by new
.
getPopoverPointingTo :: (MonadIO m, IsPopover o) => o -> m (Maybe Rectangle) Source #
Get the value of the “pointing-to
” property.
When overloading is enabled, this is equivalent to
get
popover #pointingTo
setPopoverPointingTo :: (MonadIO m, IsPopover o) => o -> Rectangle -> m () Source #
Set the value of the “pointing-to
” property.
When overloading is enabled, this is equivalent to
set
popover [ #pointingTo:=
value ]
position
How to place the popover, relative to its parent.
constructPopoverPosition :: (IsPopover o, MonadIO m) => PositionType -> m (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “position
” property. This is rarely needed directly, but it is used by new
.
getPopoverPosition :: (MonadIO m, IsPopover o) => o -> m PositionType Source #
Get the value of the “position
” property.
When overloading is enabled, this is equivalent to
get
popover #position
setPopoverPosition :: (MonadIO m, IsPopover o) => o -> PositionType -> m () Source #
Set the value of the “position
” property.
When overloading is enabled, this is equivalent to
set
popover [ #position:=
value ]
Signals
activateDefault
type PopoverActivateDefaultCallback = IO () Source #
Emitted whend the user activates the default widget.
This is a keybinding signal.
afterPopoverActivateDefault :: (IsPopover a, MonadIO m) => a -> ((?self :: a) => PopoverActivateDefaultCallback) -> m SignalHandlerId Source #
Connect a signal handler for the activateDefault signal, to be run after the default handler. When overloading is enabled, this is equivalent to
after
popover #activateDefault callback
By default the object invoking the signal is not passed to the callback.
If you need to access it, you can use the implit ?self
parameter.
Note that this requires activating the ImplicitParams
GHC extension.
onPopoverActivateDefault :: (IsPopover a, MonadIO m) => a -> ((?self :: a) => PopoverActivateDefaultCallback) -> m SignalHandlerId Source #
Connect a signal handler for the activateDefault signal, to be run before the default handler. When overloading is enabled, this is equivalent to
on
popover #activateDefault callback
closed
type PopoverClosedCallback = IO () Source #
Emitted when the popover is closed.
afterPopoverClosed :: (IsPopover a, MonadIO m) => a -> ((?self :: a) => PopoverClosedCallback) -> m SignalHandlerId Source #
Connect a signal handler for the closed signal, to be run after the default handler. When overloading is enabled, this is equivalent to
after
popover #closed callback
By default the object invoking the signal is not passed to the callback.
If you need to access it, you can use the implit ?self
parameter.
Note that this requires activating the ImplicitParams
GHC extension.
onPopoverClosed :: (IsPopover a, MonadIO m) => a -> ((?self :: a) => PopoverClosedCallback) -> m SignalHandlerId Source #
Connect a signal handler for the closed signal, to be run before the default handler. When overloading is enabled, this is equivalent to
on
popover #closed callback