Copyright | Will Thompson Iñaki García Etxebarria and Jonas Platte |
---|---|
License | LGPL-2.1 |
Maintainer | Iñaki García Etxebarria (garetxe@gmail.com) |
Safe Haskell | None |
Language | Haskell2010 |
No description available in the introspection data.
Synopsis
- newtype FlowBoxChild = FlowBoxChild (ManagedPtr FlowBoxChild)
- class GObject o => IsFlowBoxChild o
- toFlowBoxChild :: (MonadIO m, IsFlowBoxChild o) => o -> m FlowBoxChild
- noFlowBoxChild :: Maybe FlowBoxChild
- flowBoxChildChanged :: (HasCallStack, MonadIO m, IsFlowBoxChild a) => a -> m ()
- flowBoxChildGetIndex :: (HasCallStack, MonadIO m, IsFlowBoxChild a) => a -> m Int32
- flowBoxChildIsSelected :: (HasCallStack, MonadIO m, IsFlowBoxChild a) => a -> m Bool
- flowBoxChildNew :: (HasCallStack, MonadIO m) => m FlowBoxChild
- type C_FlowBoxChildActivateCallback = Ptr () -> Ptr () -> IO ()
- type FlowBoxChildActivateCallback = IO ()
- afterFlowBoxChildActivate :: (IsFlowBoxChild a, MonadIO m) => a -> FlowBoxChildActivateCallback -> m SignalHandlerId
- genClosure_FlowBoxChildActivate :: FlowBoxChildActivateCallback -> IO Closure
- mk_FlowBoxChildActivateCallback :: C_FlowBoxChildActivateCallback -> IO (FunPtr C_FlowBoxChildActivateCallback)
- noFlowBoxChildActivateCallback :: Maybe FlowBoxChildActivateCallback
- onFlowBoxChildActivate :: (IsFlowBoxChild a, MonadIO m) => a -> FlowBoxChildActivateCallback -> m SignalHandlerId
- wrap_FlowBoxChildActivateCallback :: FlowBoxChildActivateCallback -> C_FlowBoxChildActivateCallback
Exported types
newtype FlowBoxChild Source #
Memory-managed wrapper type.
Instances
GObject FlowBoxChild Source # | |
Defined in GI.Gtk.Objects.FlowBoxChild gobjectType :: FlowBoxChild -> IO GType # | |
IsImplementorIface FlowBoxChild Source # | |
Defined in GI.Gtk.Objects.FlowBoxChild | |
IsObject FlowBoxChild Source # | |
Defined in GI.Gtk.Objects.FlowBoxChild | |
IsBuildable FlowBoxChild Source # | |
Defined in GI.Gtk.Objects.FlowBoxChild | |
IsBin FlowBoxChild Source # | |
Defined in GI.Gtk.Objects.FlowBoxChild | |
IsContainer FlowBoxChild Source # | |
Defined in GI.Gtk.Objects.FlowBoxChild | |
IsFlowBoxChild FlowBoxChild Source # | |
Defined in GI.Gtk.Objects.FlowBoxChild | |
IsWidget FlowBoxChild Source # | |
Defined in GI.Gtk.Objects.FlowBoxChild |
class GObject o => IsFlowBoxChild o Source #
Type class for types which can be safely cast to FlowBoxChild
, for instance with toFlowBoxChild
.
Instances
(GObject a, (UnknownAncestorError FlowBoxChild a :: Constraint)) => IsFlowBoxChild a Source # | |
Defined in GI.Gtk.Objects.FlowBoxChild | |
IsFlowBoxChild FlowBoxChild Source # | |
Defined in GI.Gtk.Objects.FlowBoxChild |
toFlowBoxChild :: (MonadIO m, IsFlowBoxChild o) => o -> m FlowBoxChild Source #
Cast to FlowBoxChild
, for types for which this is known to be safe. For general casts, use castTo
.
noFlowBoxChild :: Maybe FlowBoxChild Source #
A convenience alias for Nothing
:: Maybe
FlowBoxChild
.
Methods
changed
:: (HasCallStack, MonadIO m, IsFlowBoxChild a) | |
=> a |
|
-> m () |
Marks child
as changed, causing any state that depends on this
to be updated. This affects sorting and filtering.
Note that calls to this method must be in sync with the data
used for the sorting and filtering functions. For instance, if
the list is mirroring some external data set, and *two* children
changed in the external data set when you call
flowBoxChildChanged
on the first child, the sort function
must only read the new data for the first of the two changed
children, otherwise the resorting of the children will be wrong.
This generally means that if you don’t fully control the data
model, you have to duplicate the data that affects the sorting
and filtering functions into the widgets themselves. Another
alternative is to call flowBoxInvalidateSort
on any
model change, but that is more expensive.
Since: 3.12
getIndex
:: (HasCallStack, MonadIO m, IsFlowBoxChild a) | |
=> a |
|
-> m Int32 | Returns: the index of the |
Gets the current index of the child
in its FlowBox
container.
Since: 3.12
isSelected
flowBoxChildIsSelected Source #
:: (HasCallStack, MonadIO m, IsFlowBoxChild a) | |
=> a |
|
-> m Bool | Returns: |
Returns whether the child
is currently selected in its
FlowBox
container.
Since: 3.12
new
:: (HasCallStack, MonadIO m) | |
=> m FlowBoxChild | Returns: a new |
Creates a new FlowBoxChild
, to be used as a child
of a FlowBox
.
Since: 3.12
Signals
activate
type C_FlowBoxChildActivateCallback = Ptr () -> Ptr () -> IO () Source #
Type for the callback on the (unwrapped) C side.
type FlowBoxChildActivateCallback = IO () Source #
The ::activate signal is emitted when the user activates
a child widget in a FlowBox
, either by clicking or
double-clicking, or by using the Space or Enter key.
While this signal is used as a [keybinding signal][GtkBindingSignal], it can be used by applications for their own purposes.
afterFlowBoxChildActivate :: (IsFlowBoxChild a, MonadIO m) => a -> FlowBoxChildActivateCallback -> m SignalHandlerId Source #
Connect a signal handler for the “activate
” signal, to be run after the default handler.
When overloading is enabled, this is equivalent to
after
flowBoxChild #activate callback
genClosure_FlowBoxChildActivate :: FlowBoxChildActivateCallback -> IO Closure Source #
Wrap the callback into a Closure
.
mk_FlowBoxChildActivateCallback :: C_FlowBoxChildActivateCallback -> IO (FunPtr C_FlowBoxChildActivateCallback) Source #
Generate a function pointer callable from C code, from a C_FlowBoxChildActivateCallback
.
noFlowBoxChildActivateCallback :: Maybe FlowBoxChildActivateCallback Source #
A convenience synonym for
.Nothing
:: Maybe
FlowBoxChildActivateCallback
onFlowBoxChildActivate :: (IsFlowBoxChild a, MonadIO m) => a -> FlowBoxChildActivateCallback -> m SignalHandlerId Source #
Connect a signal handler for the “activate
” signal, to be run before the default handler.
When overloading is enabled, this is equivalent to
on
flowBoxChild #activate callback