Copyright | Will Thompson and Iñaki García Etxebarria |
---|---|
License | LGPL-2.1 |
Maintainer | Iñaki García Etxebarria |
Safe Haskell | None |
Language | Haskell2010 |
GI.Gtk.Objects.CellView
Contents
Description
A CellView
displays a single row of a TreeModel
using a CellArea
and CellAreaContext
. A CellAreaContext
can be provided to the
CellView
at construction time in order to keep the cellview in context
of a group of cell views, this ensures that the renderers displayed will
be properly aligned with eachother (like the aligned cells in the menus
of ComboBox
).
CellView
is Orientable
in order to decide in which orientation
the underlying CellAreaContext
should be allocated. Taking the ComboBox
menu as an example, cellviews should be oriented horizontally if the menus are
listed top-to-bottom and thus all share the same width but may have separate
individual heights (left-to-right menus should be allocated vertically since
they all share the same height but may have variable widths).
CSS nodes
GtkCellView has a single CSS node with name cellview.
Synopsis
- newtype CellView = CellView (ManagedPtr CellView)
- class (GObject o, IsDescendantOf CellView o) => IsCellView o
- toCellView :: (MonadIO m, IsCellView o) => o -> m CellView
- type family ResolveCellViewMethod (t :: Symbol) o where ...
- data CellViewGetDisplayedRowMethodInfo
- cellViewGetDisplayedRow :: (HasCallStack, MonadIO m, IsCellView a) => a -> m (Maybe TreePath)
- data CellViewGetDrawSensitiveMethodInfo
- cellViewGetDrawSensitive :: (HasCallStack, MonadIO m, IsCellView a) => a -> m Bool
- data CellViewGetFitModelMethodInfo
- cellViewGetFitModel :: (HasCallStack, MonadIO m, IsCellView a) => a -> m Bool
- data CellViewGetModelMethodInfo
- cellViewGetModel :: (HasCallStack, MonadIO m, IsCellView a) => a -> m (Maybe TreeModel)
- data CellViewGetSizeOfRowMethodInfo
- cellViewGetSizeOfRow :: (HasCallStack, MonadIO m, IsCellView a) => a -> TreePath -> m (Bool, Requisition)
- cellViewNew :: (HasCallStack, MonadIO m) => m CellView
- cellViewNewWithContext :: (HasCallStack, MonadIO m, IsCellArea a, IsCellAreaContext b) => a -> b -> m CellView
- cellViewNewWithMarkup :: (HasCallStack, MonadIO m) => Text -> m CellView
- cellViewNewWithPixbuf :: (HasCallStack, MonadIO m, IsPixbuf a) => a -> m CellView
- cellViewNewWithText :: (HasCallStack, MonadIO m) => Text -> m CellView
- data CellViewSetBackgroundColorMethodInfo
- cellViewSetBackgroundColor :: (HasCallStack, MonadIO m, IsCellView a) => a -> Color -> m ()
- data CellViewSetBackgroundRgbaMethodInfo
- cellViewSetBackgroundRgba :: (HasCallStack, MonadIO m, IsCellView a) => a -> RGBA -> m ()
- data CellViewSetDisplayedRowMethodInfo
- cellViewSetDisplayedRow :: (HasCallStack, MonadIO m, IsCellView a) => a -> Maybe TreePath -> m ()
- data CellViewSetDrawSensitiveMethodInfo
- cellViewSetDrawSensitive :: (HasCallStack, MonadIO m, IsCellView a) => a -> Bool -> m ()
- data CellViewSetFitModelMethodInfo
- cellViewSetFitModel :: (HasCallStack, MonadIO m, IsCellView a) => a -> Bool -> m ()
- data CellViewSetModelMethodInfo
- cellViewSetModel :: (HasCallStack, MonadIO m, IsCellView a, IsTreeModel b) => a -> Maybe b -> m ()
- data CellViewBackgroundPropertyInfo
- cellViewBackground :: AttrLabelProxy "background"
- clearCellViewBackground :: (MonadIO m, IsCellView o) => o -> m ()
- constructCellViewBackground :: (IsCellView o, MonadIO m) => Text -> m (GValueConstruct o)
- setCellViewBackground :: (MonadIO m, IsCellView o) => o -> Text -> m ()
- data CellViewBackgroundGdkPropertyInfo
- cellViewBackgroundGdk :: AttrLabelProxy "backgroundGdk"
- clearCellViewBackgroundGdk :: (MonadIO m, IsCellView o) => o -> m ()
- constructCellViewBackgroundGdk :: (IsCellView o, MonadIO m) => Color -> m (GValueConstruct o)
- getCellViewBackgroundGdk :: (MonadIO m, IsCellView o) => o -> m (Maybe Color)
- setCellViewBackgroundGdk :: (MonadIO m, IsCellView o) => o -> Color -> m ()
- data CellViewBackgroundRgbaPropertyInfo
- cellViewBackgroundRgba :: AttrLabelProxy "backgroundRgba"
- constructCellViewBackgroundRgba :: (IsCellView o, MonadIO m) => RGBA -> m (GValueConstruct o)
- getCellViewBackgroundRgba :: (MonadIO m, IsCellView o) => o -> m (Maybe RGBA)
- setCellViewBackgroundRgba :: (MonadIO m, IsCellView o) => o -> RGBA -> m ()
- data CellViewBackgroundSetPropertyInfo
- cellViewBackgroundSet :: AttrLabelProxy "backgroundSet"
- constructCellViewBackgroundSet :: (IsCellView o, MonadIO m) => Bool -> m (GValueConstruct o)
- getCellViewBackgroundSet :: (MonadIO m, IsCellView o) => o -> m Bool
- setCellViewBackgroundSet :: (MonadIO m, IsCellView o) => o -> Bool -> m ()
- data CellViewCellAreaPropertyInfo
- cellViewCellArea :: AttrLabelProxy "cellArea"
- constructCellViewCellArea :: (IsCellView o, MonadIO m, IsCellArea a) => a -> m (GValueConstruct o)
- getCellViewCellArea :: (MonadIO m, IsCellView o) => o -> m (Maybe CellArea)
- data CellViewCellAreaContextPropertyInfo
- cellViewCellAreaContext :: AttrLabelProxy "cellAreaContext"
- constructCellViewCellAreaContext :: (IsCellView o, MonadIO m, IsCellAreaContext a) => a -> m (GValueConstruct o)
- getCellViewCellAreaContext :: (MonadIO m, IsCellView o) => o -> m (Maybe CellAreaContext)
- data CellViewDrawSensitivePropertyInfo
- cellViewDrawSensitive :: AttrLabelProxy "drawSensitive"
- constructCellViewDrawSensitive :: (IsCellView o, MonadIO m) => Bool -> m (GValueConstruct o)
- getCellViewDrawSensitive :: (MonadIO m, IsCellView o) => o -> m Bool
- setCellViewDrawSensitive :: (MonadIO m, IsCellView o) => o -> Bool -> m ()
- data CellViewFitModelPropertyInfo
- cellViewFitModel :: AttrLabelProxy "fitModel"
- constructCellViewFitModel :: (IsCellView o, MonadIO m) => Bool -> m (GValueConstruct o)
- getCellViewFitModel :: (MonadIO m, IsCellView o) => o -> m Bool
- setCellViewFitModel :: (MonadIO m, IsCellView o) => o -> Bool -> m ()
- data CellViewModelPropertyInfo
- cellViewModel :: AttrLabelProxy "model"
- clearCellViewModel :: (MonadIO m, IsCellView o) => o -> m ()
- constructCellViewModel :: (IsCellView o, MonadIO m, IsTreeModel a) => a -> m (GValueConstruct o)
- getCellViewModel :: (MonadIO m, IsCellView o) => o -> m (Maybe TreeModel)
- setCellViewModel :: (MonadIO m, IsCellView o, IsTreeModel a) => o -> a -> m ()
Exported types
Memory-managed wrapper type.
Constructors
CellView (ManagedPtr CellView) |
Instances
class (GObject o, IsDescendantOf CellView o) => IsCellView o Source #
Type class for types which can be safely cast to CellView
, for instance with toCellView
.
Instances
(GObject o, IsDescendantOf CellView o) => IsCellView o Source # | |
Defined in GI.Gtk.Objects.CellView |
toCellView :: (MonadIO m, IsCellView o) => o -> m CellView Source #
Methods
Click to display all available methods, including inherited ones
Methods
activate, addAccelerator, addAttribute, addChild, addDeviceEvents, addEvents, addMnemonicLabel, addTickCallback, bindProperty, bindPropertyFull, canActivateAccel, childFocus, childNotify, classPath, clear, clearAttributes, computeExpand, constructChild, createPangoContext, createPangoLayout, customFinished, customTagEnd, customTagStart, destroy, destroyed, deviceIsShadowed, dragBegin, dragBeginWithCoordinates, dragCheckThreshold, dragDestAddImageTargets, dragDestAddTextTargets, dragDestAddUriTargets, dragDestFindTarget, dragDestGetTargetList, dragDestGetTrackMotion, dragDestSet, dragDestSetProxy, dragDestSetTargetList, dragDestSetTrackMotion, dragDestUnset, dragGetData, dragHighlight, dragSourceAddImageTargets, dragSourceAddTextTargets, dragSourceAddUriTargets, dragSourceGetTargetList, dragSourceSet, dragSourceSetIconGicon, dragSourceSetIconName, dragSourceSetIconPixbuf, dragSourceSetIconStock, dragSourceSetTargetList, dragSourceUnset, dragUnhighlight, draw, ensureStyle, errorBell, event, forceFloating, freezeChildNotify, freezeNotify, getv, grabAdd, grabDefault, grabFocus, grabRemove, hasDefault, hasFocus, hasGrab, hasRcStyle, hasScreen, hasVisibleFocus, hide, hideOnDelete, inDestruction, initTemplate, inputShapeCombineRegion, insertActionGroup, intersect, isAncestor, isComposited, isDrawable, isFloating, isFocus, isSensitive, isToplevel, isVisible, keynavFailed, listAccelClosures, listActionPrefixes, listMnemonicLabels, map, mnemonicActivate, modifyBase, modifyBg, modifyCursor, modifyFg, modifyFont, modifyStyle, modifyText, notify, notifyByPspec, overrideBackgroundColor, overrideColor, overrideCursor, overrideFont, overrideSymbolicColor, packEnd, packStart, parserFinished, path, queueAllocate, queueComputeExpand, queueDraw, queueDrawArea, queueDrawRegion, queueResize, queueResizeNoRedraw, realize, ref, refSink, regionIntersect, registerWindow, removeAccelerator, removeMnemonicLabel, removeTickCallback, renderIcon, renderIconPixbuf, reorder, reparent, resetRcStyles, resetStyle, runDispose, sendExpose, sendFocusChange, shapeCombineRegion, show, showAll, showNow, sizeAllocate, sizeAllocateWithBaseline, sizeRequest, stealData, stealQdata, styleAttach, styleGetProperty, thawChildNotify, thawNotify, translateCoordinates, triggerTooltipQuery, unmap, unparent, unrealize, unref, unregisterWindow, unsetStateFlags, watchClosure.
Getters
getAccessible, getActionGroup, getAllocatedBaseline, getAllocatedHeight, getAllocatedSize, getAllocatedWidth, getAllocation, getAncestor, getAppPaintable, getArea, getCanDefault, getCanFocus, getCells, getChildRequisition, getChildVisible, getClip, getClipboard, getCompositeName, getData, getDeviceEnabled, getDeviceEvents, getDirection, getDisplay, getDisplayedRow, getDoubleBuffered, getDrawSensitive, getEvents, getFitModel, getFocusOnClick, getFontMap, getFontOptions, getFrameClock, getHalign, getHasTooltip, getHasWindow, getHexpand, getHexpandSet, getInternalChild, getMapped, getMarginBottom, getMarginEnd, getMarginLeft, getMarginRight, getMarginStart, getMarginTop, getModel, getModifierMask, getModifierStyle, getName, getNoShowAll, getOpacity, getOrientation, getPangoContext, getParent, getParentWindow, getPath, getPointer, getPreferredHeight, getPreferredHeightAndBaselineForWidth, getPreferredHeightForWidth, getPreferredSize, getPreferredWidth, getPreferredWidthForHeight, getProperty, getQdata, getRealized, getReceivesDefault, getRequestMode, getRequisition, getRootWindow, getScaleFactor, getScreen, getSensitive, getSettings, getSizeOfRow, getSizeRequest, getState, getStateFlags, getStyle, getStyleContext, getSupportMultidevice, getTemplateChild, getTooltipMarkup, getTooltipText, getTooltipWindow, getToplevel, getValign, getValignWithBaseline, getVexpand, getVexpandSet, getVisible, getVisual, getWindow.
Setters
setAccelPath, setAllocation, setAppPaintable, setBackgroundColor, setBackgroundRgba, setBuildableProperty, setCanDefault, setCanFocus, setCellDataFunc, setChildVisible, setClip, setCompositeName, setData, setDataFull, setDeviceEnabled, setDeviceEvents, setDirection, setDisplayedRow, setDoubleBuffered, setDrawSensitive, setEvents, setFitModel, setFocusOnClick, setFontMap, setFontOptions, setHalign, setHasTooltip, setHasWindow, setHexpand, setHexpandSet, setMapped, setMarginBottom, setMarginEnd, setMarginLeft, setMarginRight, setMarginStart, setMarginTop, setModel, setName, setNoShowAll, setOpacity, setOrientation, setParent, setParentWindow, setProperty, setRealized, setReceivesDefault, setRedrawOnAllocate, setSensitive, setSizeRequest, setState, setStateFlags, setStyle, setSupportMultidevice, setTooltipMarkup, setTooltipText, setTooltipWindow, setValign, setVexpand, setVexpandSet, setVisible, setVisual, setWindow.
type family ResolveCellViewMethod (t :: Symbol) o where ... Source #
Equations
getDisplayedRow
data CellViewGetDisplayedRowMethodInfo Source #
Instances
(signature ~ m (Maybe TreePath), MonadIO m, IsCellView a) => OverloadedMethod CellViewGetDisplayedRowMethodInfo a signature Source # | |
Defined in GI.Gtk.Objects.CellView Methods overloadedMethod :: a -> signature # | |
OverloadedMethodInfo CellViewGetDisplayedRowMethodInfo (a :: Type) Source # | |
Defined in GI.Gtk.Objects.CellView Methods |
cellViewGetDisplayedRow Source #
Arguments
:: (HasCallStack, MonadIO m, IsCellView a) | |
=> a |
|
-> m (Maybe TreePath) | Returns: the currently displayed row or |
getDrawSensitive
data CellViewGetDrawSensitiveMethodInfo Source #
Instances
(signature ~ m Bool, MonadIO m, IsCellView a) => OverloadedMethod CellViewGetDrawSensitiveMethodInfo a signature Source # | |
Defined in GI.Gtk.Objects.CellView Methods overloadedMethod :: a -> signature # | |
OverloadedMethodInfo CellViewGetDrawSensitiveMethodInfo (a :: Type) Source # | |
Defined in GI.Gtk.Objects.CellView Methods |
cellViewGetDrawSensitive Source #
Arguments
:: (HasCallStack, MonadIO m, IsCellView a) | |
=> a |
|
-> m Bool | Returns: whether |
Gets whether cellView
is configured to draw all of its
cells in a sensitive state.
Since: 3.0
getFitModel
data CellViewGetFitModelMethodInfo Source #
Instances
(signature ~ m Bool, MonadIO m, IsCellView a) => OverloadedMethod CellViewGetFitModelMethodInfo a signature Source # | |
Defined in GI.Gtk.Objects.CellView Methods overloadedMethod :: a -> signature # | |
OverloadedMethodInfo CellViewGetFitModelMethodInfo (a :: Type) Source # | |
Defined in GI.Gtk.Objects.CellView Methods |
Arguments
:: (HasCallStack, MonadIO m, IsCellView a) | |
=> a |
|
-> m Bool | Returns: whether |
Gets whether cellView
is configured to request space
to fit the entire TreeModel
.
Since: 3.0
getModel
data CellViewGetModelMethodInfo Source #
Instances
(signature ~ m (Maybe TreeModel), MonadIO m, IsCellView a) => OverloadedMethod CellViewGetModelMethodInfo a signature Source # | |
Defined in GI.Gtk.Objects.CellView Methods overloadedMethod :: a -> signature # | |
OverloadedMethodInfo CellViewGetModelMethodInfo (a :: Type) Source # | |
Defined in GI.Gtk.Objects.CellView Methods |
Arguments
:: (HasCallStack, MonadIO m, IsCellView a) | |
=> a |
|
-> m (Maybe TreeModel) |
Returns the model for cellView
. If no model is used Nothing
is
returned.
Since: 2.16
getSizeOfRow
data CellViewGetSizeOfRowMethodInfo Source #
Instances
(signature ~ (TreePath -> m (Bool, Requisition)), MonadIO m, IsCellView a) => OverloadedMethod CellViewGetSizeOfRowMethodInfo a signature Source # | |
Defined in GI.Gtk.Objects.CellView Methods overloadedMethod :: a -> signature # | |
OverloadedMethodInfo CellViewGetSizeOfRowMethodInfo (a :: Type) Source # | |
Defined in GI.Gtk.Objects.CellView Methods |
Arguments
:: (HasCallStack, MonadIO m, IsCellView a) | |
=> a |
|
-> TreePath |
|
-> m (Bool, Requisition) | Returns: |
Deprecated: (Since version 3.0)Combo box formerly used this to calculate thesizes for cellviews, now you can achieve this by either usingthe CellView:fitModel property or by setting the currentlydisplayed row of the CellView
and using widgetGetPreferredSize
.
Sets requisition
to the size needed by cellView
to display
the model row pointed to by path
.
Since: 2.6
new
Arguments
:: (HasCallStack, MonadIO m) | |
=> m CellView | Returns: A newly created |
Creates a new CellView
widget.
Since: 2.6
newWithContext
cellViewNewWithContext Source #
Arguments
:: (HasCallStack, MonadIO m, IsCellArea a, IsCellAreaContext b) | |
=> a |
|
-> b |
|
-> m CellView | Returns: A newly created |
Creates a new CellView
widget with a specific CellArea
to layout cells and a specific CellAreaContext
.
Specifying the same context for a handfull of cells lets the underlying area synchronize the geometry for those cells, in this way alignments with cellviews for other rows are possible.
Since: 2.6
newWithMarkup
cellViewNewWithMarkup Source #
Arguments
:: (HasCallStack, MonadIO m) | |
=> Text |
|
-> m CellView | Returns: A newly created |
Creates a new CellView
widget, adds a CellRendererText
to it, and makes it show markup
. The text can be
marked up with the [Pango text markup language][PangoMarkupFormat].
Since: 2.6
newWithPixbuf
cellViewNewWithPixbuf Source #
Arguments
:: (HasCallStack, MonadIO m, IsPixbuf a) | |
=> a |
|
-> m CellView | Returns: A newly created |
Creates a new CellView
widget, adds a CellRendererPixbuf
to it, and makes it show pixbuf
.
Since: 2.6
newWithText
Arguments
:: (HasCallStack, MonadIO m) | |
=> Text |
|
-> m CellView | Returns: A newly created |
Creates a new CellView
widget, adds a CellRendererText
to it, and makes it show text
.
Since: 2.6
setBackgroundColor
data CellViewSetBackgroundColorMethodInfo Source #
Instances
(signature ~ (Color -> m ()), MonadIO m, IsCellView a) => OverloadedMethod CellViewSetBackgroundColorMethodInfo a signature Source # | |
Defined in GI.Gtk.Objects.CellView Methods overloadedMethod :: a -> signature # | |
OverloadedMethodInfo CellViewSetBackgroundColorMethodInfo (a :: Type) Source # | |
Defined in GI.Gtk.Objects.CellView Methods |
cellViewSetBackgroundColor Source #
Arguments
:: (HasCallStack, MonadIO m, IsCellView a) | |
=> a |
|
-> Color |
|
-> m () |
Deprecated: (Since version 3.4)Use cellViewSetBackgroundRgba
instead.
Sets the background color of view
.
Since: 2.6
setBackgroundRgba
data CellViewSetBackgroundRgbaMethodInfo Source #
Instances
(signature ~ (RGBA -> m ()), MonadIO m, IsCellView a) => OverloadedMethod CellViewSetBackgroundRgbaMethodInfo a signature Source # | |
Defined in GI.Gtk.Objects.CellView Methods overloadedMethod :: a -> signature # | |
OverloadedMethodInfo CellViewSetBackgroundRgbaMethodInfo (a :: Type) Source # | |
Defined in GI.Gtk.Objects.CellView Methods |
cellViewSetBackgroundRgba Source #
Arguments
:: (HasCallStack, MonadIO m, IsCellView a) | |
=> a |
|
-> RGBA |
|
-> m () |
Sets the background color of cellView
.
Since: 3.0
setDisplayedRow
data CellViewSetDisplayedRowMethodInfo Source #
Instances
(signature ~ (Maybe TreePath -> m ()), MonadIO m, IsCellView a) => OverloadedMethod CellViewSetDisplayedRowMethodInfo a signature Source # | |
Defined in GI.Gtk.Objects.CellView Methods overloadedMethod :: a -> signature # | |
OverloadedMethodInfo CellViewSetDisplayedRowMethodInfo (a :: Type) Source # | |
Defined in GI.Gtk.Objects.CellView Methods |
cellViewSetDisplayedRow Source #
Arguments
:: (HasCallStack, MonadIO m, IsCellView a) | |
=> a |
|
-> Maybe TreePath | |
-> m () |
Sets the row of the model that is currently displayed
by the CellView
. If the path is unset, then the
contents of the cellview “stick” at their last value;
this is not normally a desired result, but may be
a needed intermediate state if say, the model for
the CellView
becomes temporarily empty.
Since: 2.6
setDrawSensitive
data CellViewSetDrawSensitiveMethodInfo Source #
Instances
(signature ~ (Bool -> m ()), MonadIO m, IsCellView a) => OverloadedMethod CellViewSetDrawSensitiveMethodInfo a signature Source # | |
Defined in GI.Gtk.Objects.CellView Methods overloadedMethod :: a -> signature # | |
OverloadedMethodInfo CellViewSetDrawSensitiveMethodInfo (a :: Type) Source # | |
Defined in GI.Gtk.Objects.CellView Methods |
cellViewSetDrawSensitive Source #
Arguments
:: (HasCallStack, MonadIO m, IsCellView a) | |
=> a |
|
-> Bool |
|
-> m () |
Sets whether cellView
should draw all of its
cells in a sensitive state, this is used by ComboBox
menus
to ensure that rows with insensitive cells that contain
children appear sensitive in the parent menu item.
Since: 3.0
setFitModel
data CellViewSetFitModelMethodInfo Source #
Instances
(signature ~ (Bool -> m ()), MonadIO m, IsCellView a) => OverloadedMethod CellViewSetFitModelMethodInfo a signature Source # | |
Defined in GI.Gtk.Objects.CellView Methods overloadedMethod :: a -> signature # | |
OverloadedMethodInfo CellViewSetFitModelMethodInfo (a :: Type) Source # | |
Defined in GI.Gtk.Objects.CellView Methods |
Arguments
:: (HasCallStack, MonadIO m, IsCellView a) | |
=> a |
|
-> Bool |
|
-> m () |
setModel
data CellViewSetModelMethodInfo Source #
Instances
(signature ~ (Maybe b -> m ()), MonadIO m, IsCellView a, IsTreeModel b) => OverloadedMethod CellViewSetModelMethodInfo a signature Source # | |
Defined in GI.Gtk.Objects.CellView Methods overloadedMethod :: a -> signature # | |
OverloadedMethodInfo CellViewSetModelMethodInfo (a :: Type) Source # | |
Defined in GI.Gtk.Objects.CellView Methods |
Arguments
:: (HasCallStack, MonadIO m, IsCellView a, IsTreeModel b) | |
=> a |
|
-> Maybe b |
|
-> m () |
Sets the model for cellView
. If cellView
already has a model
set, it will remove it before setting the new model. If model
is
Nothing
, then it will unset the old model.
Since: 2.6
Properties
background
No description available in the introspection data.
data CellViewBackgroundPropertyInfo Source #
Instances
cellViewBackground :: AttrLabelProxy "background" Source #
clearCellViewBackground :: (MonadIO m, IsCellView o) => o -> m () Source #
Set the value of the “background
” property to Nothing
.
When overloading is enabled, this is equivalent to
clear
#background
constructCellViewBackground :: (IsCellView o, MonadIO m) => Text -> m (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “background
” property. This is rarely needed directly, but it is used by new
.
setCellViewBackground :: (MonadIO m, IsCellView o) => o -> Text -> m () Source #
Set the value of the “background
” property.
When overloading is enabled, this is equivalent to
set
cellView [ #background:=
value ]
backgroundGdk
The background color as a Color
data CellViewBackgroundGdkPropertyInfo Source #
Instances
AttrInfo CellViewBackgroundGdkPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView Associated Types
Methods attrGet :: AttrBaseTypeConstraint CellViewBackgroundGdkPropertyInfo o => o -> IO (AttrGetType CellViewBackgroundGdkPropertyInfo) # attrSet :: (AttrBaseTypeConstraint CellViewBackgroundGdkPropertyInfo o, AttrSetTypeConstraint CellViewBackgroundGdkPropertyInfo b) => o -> b -> IO () # attrClear :: AttrBaseTypeConstraint CellViewBackgroundGdkPropertyInfo o => o -> IO () # attrConstruct :: (AttrBaseTypeConstraint CellViewBackgroundGdkPropertyInfo o, AttrSetTypeConstraint CellViewBackgroundGdkPropertyInfo b) => b -> IO (GValueConstruct o) # attrTransfer :: (AttrBaseTypeConstraint CellViewBackgroundGdkPropertyInfo o, AttrTransferTypeConstraint CellViewBackgroundGdkPropertyInfo b) => Proxy o -> b -> IO (AttrTransferType CellViewBackgroundGdkPropertyInfo) # attrPut :: AttrBaseTypeConstraint CellViewBackgroundGdkPropertyInfo o => o -> AttrGetType CellViewBackgroundGdkPropertyInfo -> IO () # | |||||||||||||||||||||||||||||||||
type AttrAllowedOps CellViewBackgroundGdkPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView type AttrAllowedOps CellViewBackgroundGdkPropertyInfo = '['AttrSet, 'AttrConstruct, 'AttrGet, 'AttrClear] | |||||||||||||||||||||||||||||||||
type AttrBaseTypeConstraint CellViewBackgroundGdkPropertyInfo Source # | |||||||||||||||||||||||||||||||||
type AttrGetType CellViewBackgroundGdkPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrLabel CellViewBackgroundGdkPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrOrigin CellViewBackgroundGdkPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrSetTypeConstraint CellViewBackgroundGdkPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrTransferType CellViewBackgroundGdkPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrTransferTypeConstraint CellViewBackgroundGdkPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView |
cellViewBackgroundGdk :: AttrLabelProxy "backgroundGdk" Source #
clearCellViewBackgroundGdk :: (MonadIO m, IsCellView o) => o -> m () Source #
Set the value of the “background-gdk
” property to Nothing
.
When overloading is enabled, this is equivalent to
clear
#backgroundGdk
constructCellViewBackgroundGdk :: (IsCellView o, MonadIO m) => Color -> m (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “background-gdk
” property. This is rarely needed directly, but it is used by new
.
getCellViewBackgroundGdk :: (MonadIO m, IsCellView o) => o -> m (Maybe Color) Source #
Get the value of the “background-gdk
” property.
When overloading is enabled, this is equivalent to
get
cellView #backgroundGdk
setCellViewBackgroundGdk :: (MonadIO m, IsCellView o) => o -> Color -> m () Source #
Set the value of the “background-gdk
” property.
When overloading is enabled, this is equivalent to
set
cellView [ #backgroundGdk:=
value ]
backgroundRgba
The background color as a RGBA
Since: 3.0
data CellViewBackgroundRgbaPropertyInfo Source #
Instances
AttrInfo CellViewBackgroundRgbaPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView Associated Types
Methods attrGet :: AttrBaseTypeConstraint CellViewBackgroundRgbaPropertyInfo o => o -> IO (AttrGetType CellViewBackgroundRgbaPropertyInfo) # attrSet :: (AttrBaseTypeConstraint CellViewBackgroundRgbaPropertyInfo o, AttrSetTypeConstraint CellViewBackgroundRgbaPropertyInfo b) => o -> b -> IO () # attrClear :: AttrBaseTypeConstraint CellViewBackgroundRgbaPropertyInfo o => o -> IO () # attrConstruct :: (AttrBaseTypeConstraint CellViewBackgroundRgbaPropertyInfo o, AttrSetTypeConstraint CellViewBackgroundRgbaPropertyInfo b) => b -> IO (GValueConstruct o) # attrTransfer :: (AttrBaseTypeConstraint CellViewBackgroundRgbaPropertyInfo o, AttrTransferTypeConstraint CellViewBackgroundRgbaPropertyInfo b) => Proxy o -> b -> IO (AttrTransferType CellViewBackgroundRgbaPropertyInfo) # attrPut :: AttrBaseTypeConstraint CellViewBackgroundRgbaPropertyInfo o => o -> AttrGetType CellViewBackgroundRgbaPropertyInfo -> IO () # | |||||||||||||||||||||||||||||||||
type AttrAllowedOps CellViewBackgroundRgbaPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrBaseTypeConstraint CellViewBackgroundRgbaPropertyInfo Source # | |||||||||||||||||||||||||||||||||
type AttrGetType CellViewBackgroundRgbaPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrLabel CellViewBackgroundRgbaPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrOrigin CellViewBackgroundRgbaPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrSetTypeConstraint CellViewBackgroundRgbaPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrTransferType CellViewBackgroundRgbaPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrTransferTypeConstraint CellViewBackgroundRgbaPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView |
cellViewBackgroundRgba :: AttrLabelProxy "backgroundRgba" Source #
constructCellViewBackgroundRgba :: (IsCellView o, MonadIO m) => RGBA -> m (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “background-rgba
” property. This is rarely needed directly, but it is used by new
.
getCellViewBackgroundRgba :: (MonadIO m, IsCellView o) => o -> m (Maybe RGBA) Source #
Get the value of the “background-rgba
” property.
When overloading is enabled, this is equivalent to
get
cellView #backgroundRgba
setCellViewBackgroundRgba :: (MonadIO m, IsCellView o) => o -> RGBA -> m () Source #
Set the value of the “background-rgba
” property.
When overloading is enabled, this is equivalent to
set
cellView [ #backgroundRgba:=
value ]
backgroundSet
No description available in the introspection data.
data CellViewBackgroundSetPropertyInfo Source #
Instances
AttrInfo CellViewBackgroundSetPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView Associated Types
Methods attrGet :: AttrBaseTypeConstraint CellViewBackgroundSetPropertyInfo o => o -> IO (AttrGetType CellViewBackgroundSetPropertyInfo) # attrSet :: (AttrBaseTypeConstraint CellViewBackgroundSetPropertyInfo o, AttrSetTypeConstraint CellViewBackgroundSetPropertyInfo b) => o -> b -> IO () # attrClear :: AttrBaseTypeConstraint CellViewBackgroundSetPropertyInfo o => o -> IO () # attrConstruct :: (AttrBaseTypeConstraint CellViewBackgroundSetPropertyInfo o, AttrSetTypeConstraint CellViewBackgroundSetPropertyInfo b) => b -> IO (GValueConstruct o) # attrTransfer :: (AttrBaseTypeConstraint CellViewBackgroundSetPropertyInfo o, AttrTransferTypeConstraint CellViewBackgroundSetPropertyInfo b) => Proxy o -> b -> IO (AttrTransferType CellViewBackgroundSetPropertyInfo) # attrPut :: AttrBaseTypeConstraint CellViewBackgroundSetPropertyInfo o => o -> AttrGetType CellViewBackgroundSetPropertyInfo -> IO () # | |||||||||||||||||||||||||||||||||
type AttrAllowedOps CellViewBackgroundSetPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView type AttrAllowedOps CellViewBackgroundSetPropertyInfo = '['AttrSet, 'AttrConstruct, 'AttrGet, 'AttrPut] | |||||||||||||||||||||||||||||||||
type AttrBaseTypeConstraint CellViewBackgroundSetPropertyInfo Source # | |||||||||||||||||||||||||||||||||
type AttrGetType CellViewBackgroundSetPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrLabel CellViewBackgroundSetPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrOrigin CellViewBackgroundSetPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrSetTypeConstraint CellViewBackgroundSetPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrTransferType CellViewBackgroundSetPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrTransferTypeConstraint CellViewBackgroundSetPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView |
cellViewBackgroundSet :: AttrLabelProxy "backgroundSet" Source #
constructCellViewBackgroundSet :: (IsCellView o, MonadIO m) => Bool -> m (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “background-set
” property. This is rarely needed directly, but it is used by new
.
getCellViewBackgroundSet :: (MonadIO m, IsCellView o) => o -> m Bool Source #
Get the value of the “background-set
” property.
When overloading is enabled, this is equivalent to
get
cellView #backgroundSet
setCellViewBackgroundSet :: (MonadIO m, IsCellView o) => o -> Bool -> m () Source #
Set the value of the “background-set
” property.
When overloading is enabled, this is equivalent to
set
cellView [ #backgroundSet:=
value ]
cellArea
The CellArea
rendering cells
If no area is specified when creating the cell view with cellViewNewWithContext
a horizontally oriented CellAreaBox
will be used.
since 3.0
data CellViewCellAreaPropertyInfo Source #
Instances
AttrInfo CellViewCellAreaPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView Associated Types
Methods attrGet :: AttrBaseTypeConstraint CellViewCellAreaPropertyInfo o => o -> IO (AttrGetType CellViewCellAreaPropertyInfo) # attrSet :: (AttrBaseTypeConstraint CellViewCellAreaPropertyInfo o, AttrSetTypeConstraint CellViewCellAreaPropertyInfo b) => o -> b -> IO () # attrClear :: AttrBaseTypeConstraint CellViewCellAreaPropertyInfo o => o -> IO () # attrConstruct :: (AttrBaseTypeConstraint CellViewCellAreaPropertyInfo o, AttrSetTypeConstraint CellViewCellAreaPropertyInfo b) => b -> IO (GValueConstruct o) # attrTransfer :: (AttrBaseTypeConstraint CellViewCellAreaPropertyInfo o, AttrTransferTypeConstraint CellViewCellAreaPropertyInfo b) => Proxy o -> b -> IO (AttrTransferType CellViewCellAreaPropertyInfo) # attrPut :: AttrBaseTypeConstraint CellViewCellAreaPropertyInfo o => o -> AttrGetType CellViewCellAreaPropertyInfo -> IO () # | |||||||||||||||||||||||||||||||||
type AttrAllowedOps CellViewCellAreaPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrBaseTypeConstraint CellViewCellAreaPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrGetType CellViewCellAreaPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrLabel CellViewCellAreaPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrOrigin CellViewCellAreaPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrSetTypeConstraint CellViewCellAreaPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrTransferType CellViewCellAreaPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrTransferTypeConstraint CellViewCellAreaPropertyInfo Source # | |||||||||||||||||||||||||||||||||
cellViewCellArea :: AttrLabelProxy "cellArea" Source #
constructCellViewCellArea :: (IsCellView o, MonadIO m, IsCellArea a) => a -> m (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “cell-area
” property. This is rarely needed directly, but it is used by new
.
getCellViewCellArea :: (MonadIO m, IsCellView o) => o -> m (Maybe CellArea) Source #
Get the value of the “cell-area
” property.
When overloading is enabled, this is equivalent to
get
cellView #cellArea
cellAreaContext
The CellAreaContext
used to compute the geometry of the cell view.
A group of cell views can be assigned the same context in order to ensure the sizes and cell alignments match across all the views with the same context.
ComboBox
menus uses this to assign the same context to all cell views
in the menu items for a single menu (each submenu creates its own
context since the size of each submenu does not depend on parent
or sibling menus).
since 3.0
data CellViewCellAreaContextPropertyInfo Source #
Instances
AttrInfo CellViewCellAreaContextPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView Associated Types
Methods attrGet :: AttrBaseTypeConstraint CellViewCellAreaContextPropertyInfo o => o -> IO (AttrGetType CellViewCellAreaContextPropertyInfo) # attrSet :: (AttrBaseTypeConstraint CellViewCellAreaContextPropertyInfo o, AttrSetTypeConstraint CellViewCellAreaContextPropertyInfo b) => o -> b -> IO () # attrClear :: AttrBaseTypeConstraint CellViewCellAreaContextPropertyInfo o => o -> IO () # attrConstruct :: (AttrBaseTypeConstraint CellViewCellAreaContextPropertyInfo o, AttrSetTypeConstraint CellViewCellAreaContextPropertyInfo b) => b -> IO (GValueConstruct o) # attrTransfer :: (AttrBaseTypeConstraint CellViewCellAreaContextPropertyInfo o, AttrTransferTypeConstraint CellViewCellAreaContextPropertyInfo b) => Proxy o -> b -> IO (AttrTransferType CellViewCellAreaContextPropertyInfo) # attrPut :: AttrBaseTypeConstraint CellViewCellAreaContextPropertyInfo o => o -> AttrGetType CellViewCellAreaContextPropertyInfo -> IO () # | |||||||||||||||||||||||||||||||||
type AttrAllowedOps CellViewCellAreaContextPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrBaseTypeConstraint CellViewCellAreaContextPropertyInfo Source # | |||||||||||||||||||||||||||||||||
type AttrGetType CellViewCellAreaContextPropertyInfo Source # | |||||||||||||||||||||||||||||||||
type AttrLabel CellViewCellAreaContextPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrOrigin CellViewCellAreaContextPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrSetTypeConstraint CellViewCellAreaContextPropertyInfo Source # | |||||||||||||||||||||||||||||||||
type AttrTransferType CellViewCellAreaContextPropertyInfo Source # | |||||||||||||||||||||||||||||||||
type AttrTransferTypeConstraint CellViewCellAreaContextPropertyInfo Source # | |||||||||||||||||||||||||||||||||
cellViewCellAreaContext :: AttrLabelProxy "cellAreaContext" Source #
constructCellViewCellAreaContext :: (IsCellView o, MonadIO m, IsCellAreaContext a) => a -> m (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “cell-area-context
” property. This is rarely needed directly, but it is used by new
.
getCellViewCellAreaContext :: (MonadIO m, IsCellView o) => o -> m (Maybe CellAreaContext) Source #
Get the value of the “cell-area-context
” property.
When overloading is enabled, this is equivalent to
get
cellView #cellAreaContext
drawSensitive
Whether all cells should be draw as sensitive for this view regardless of the actual cell properties (used to make menus with submenus appear sensitive when the items in submenus might be insensitive).
since 3.0
data CellViewDrawSensitivePropertyInfo Source #
Instances
AttrInfo CellViewDrawSensitivePropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView Associated Types
Methods attrGet :: AttrBaseTypeConstraint CellViewDrawSensitivePropertyInfo o => o -> IO (AttrGetType CellViewDrawSensitivePropertyInfo) # attrSet :: (AttrBaseTypeConstraint CellViewDrawSensitivePropertyInfo o, AttrSetTypeConstraint CellViewDrawSensitivePropertyInfo b) => o -> b -> IO () # attrClear :: AttrBaseTypeConstraint CellViewDrawSensitivePropertyInfo o => o -> IO () # attrConstruct :: (AttrBaseTypeConstraint CellViewDrawSensitivePropertyInfo o, AttrSetTypeConstraint CellViewDrawSensitivePropertyInfo b) => b -> IO (GValueConstruct o) # attrTransfer :: (AttrBaseTypeConstraint CellViewDrawSensitivePropertyInfo o, AttrTransferTypeConstraint CellViewDrawSensitivePropertyInfo b) => Proxy o -> b -> IO (AttrTransferType CellViewDrawSensitivePropertyInfo) # attrPut :: AttrBaseTypeConstraint CellViewDrawSensitivePropertyInfo o => o -> AttrGetType CellViewDrawSensitivePropertyInfo -> IO () # | |||||||||||||||||||||||||||||||||
type AttrAllowedOps CellViewDrawSensitivePropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView type AttrAllowedOps CellViewDrawSensitivePropertyInfo = '['AttrSet, 'AttrConstruct, 'AttrGet, 'AttrPut] | |||||||||||||||||||||||||||||||||
type AttrBaseTypeConstraint CellViewDrawSensitivePropertyInfo Source # | |||||||||||||||||||||||||||||||||
type AttrGetType CellViewDrawSensitivePropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrLabel CellViewDrawSensitivePropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrOrigin CellViewDrawSensitivePropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrSetTypeConstraint CellViewDrawSensitivePropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrTransferType CellViewDrawSensitivePropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrTransferTypeConstraint CellViewDrawSensitivePropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView |
cellViewDrawSensitive :: AttrLabelProxy "drawSensitive" Source #
constructCellViewDrawSensitive :: (IsCellView o, MonadIO m) => Bool -> m (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “draw-sensitive
” property. This is rarely needed directly, but it is used by new
.
getCellViewDrawSensitive :: (MonadIO m, IsCellView o) => o -> m Bool Source #
Get the value of the “draw-sensitive
” property.
When overloading is enabled, this is equivalent to
get
cellView #drawSensitive
setCellViewDrawSensitive :: (MonadIO m, IsCellView o) => o -> Bool -> m () Source #
Set the value of the “draw-sensitive
” property.
When overloading is enabled, this is equivalent to
set
cellView [ #drawSensitive:=
value ]
fitModel
Whether the view should request enough space to always fit the size of every row in the model (used by the combo box to ensure the combo box size doesnt change when different items are selected).
since 3.0
data CellViewFitModelPropertyInfo Source #
Instances
AttrInfo CellViewFitModelPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView Associated Types
Methods attrGet :: AttrBaseTypeConstraint CellViewFitModelPropertyInfo o => o -> IO (AttrGetType CellViewFitModelPropertyInfo) # attrSet :: (AttrBaseTypeConstraint CellViewFitModelPropertyInfo o, AttrSetTypeConstraint CellViewFitModelPropertyInfo b) => o -> b -> IO () # attrClear :: AttrBaseTypeConstraint CellViewFitModelPropertyInfo o => o -> IO () # attrConstruct :: (AttrBaseTypeConstraint CellViewFitModelPropertyInfo o, AttrSetTypeConstraint CellViewFitModelPropertyInfo b) => b -> IO (GValueConstruct o) # attrTransfer :: (AttrBaseTypeConstraint CellViewFitModelPropertyInfo o, AttrTransferTypeConstraint CellViewFitModelPropertyInfo b) => Proxy o -> b -> IO (AttrTransferType CellViewFitModelPropertyInfo) # attrPut :: AttrBaseTypeConstraint CellViewFitModelPropertyInfo o => o -> AttrGetType CellViewFitModelPropertyInfo -> IO () # | |||||||||||||||||||||||||||||||||
type AttrAllowedOps CellViewFitModelPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrBaseTypeConstraint CellViewFitModelPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrGetType CellViewFitModelPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrLabel CellViewFitModelPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrOrigin CellViewFitModelPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrSetTypeConstraint CellViewFitModelPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrTransferType CellViewFitModelPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrTransferTypeConstraint CellViewFitModelPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView |
cellViewFitModel :: AttrLabelProxy "fitModel" Source #
constructCellViewFitModel :: (IsCellView o, MonadIO m) => Bool -> m (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “fit-model
” property. This is rarely needed directly, but it is used by new
.
getCellViewFitModel :: (MonadIO m, IsCellView o) => o -> m Bool Source #
Get the value of the “fit-model
” property.
When overloading is enabled, this is equivalent to
get
cellView #fitModel
setCellViewFitModel :: (MonadIO m, IsCellView o) => o -> Bool -> m () Source #
Set the value of the “fit-model
” property.
When overloading is enabled, this is equivalent to
set
cellView [ #fitModel:=
value ]
model
The model for cell view
since 2.10
data CellViewModelPropertyInfo Source #
Instances
AttrInfo CellViewModelPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView Associated Types
Methods attrGet :: AttrBaseTypeConstraint CellViewModelPropertyInfo o => o -> IO (AttrGetType CellViewModelPropertyInfo) # attrSet :: (AttrBaseTypeConstraint CellViewModelPropertyInfo o, AttrSetTypeConstraint CellViewModelPropertyInfo b) => o -> b -> IO () # attrClear :: AttrBaseTypeConstraint CellViewModelPropertyInfo o => o -> IO () # attrConstruct :: (AttrBaseTypeConstraint CellViewModelPropertyInfo o, AttrSetTypeConstraint CellViewModelPropertyInfo b) => b -> IO (GValueConstruct o) # attrTransfer :: (AttrBaseTypeConstraint CellViewModelPropertyInfo o, AttrTransferTypeConstraint CellViewModelPropertyInfo b) => Proxy o -> b -> IO (AttrTransferType CellViewModelPropertyInfo) # attrPut :: AttrBaseTypeConstraint CellViewModelPropertyInfo o => o -> AttrGetType CellViewModelPropertyInfo -> IO () # | |||||||||||||||||||||||||||||||||
type AttrAllowedOps CellViewModelPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrBaseTypeConstraint CellViewModelPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrGetType CellViewModelPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrLabel CellViewModelPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrOrigin CellViewModelPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrSetTypeConstraint CellViewModelPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrTransferType CellViewModelPropertyInfo Source # | |||||||||||||||||||||||||||||||||
Defined in GI.Gtk.Objects.CellView | |||||||||||||||||||||||||||||||||
type AttrTransferTypeConstraint CellViewModelPropertyInfo Source # | |||||||||||||||||||||||||||||||||
cellViewModel :: AttrLabelProxy "model" Source #
clearCellViewModel :: (MonadIO m, IsCellView o) => o -> m () Source #
Set the value of the “model
” property to Nothing
.
When overloading is enabled, this is equivalent to
clear
#model
constructCellViewModel :: (IsCellView o, MonadIO m, IsTreeModel a) => a -> m (GValueConstruct o) Source #
Construct a GValueConstruct
with valid value for the “model
” property. This is rarely needed directly, but it is used by new
.
getCellViewModel :: (MonadIO m, IsCellView o) => o -> m (Maybe TreeModel) Source #
Get the value of the “model
” property.
When overloading is enabled, this is equivalent to
get
cellView #model
setCellViewModel :: (MonadIO m, IsCellView o, IsTreeModel a) => o -> a -> m () Source #
Set the value of the “model
” property.
When overloading is enabled, this is equivalent to
set
cellView [ #model:=
value ]