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 |
The AtkRelationSet held by an object establishes its relationships with objects beyond the normal "parent/child" hierarchical relationships that all user interface objects have. AtkRelationSets establish whether objects are labelled or controlled by other components, share group membership with other components (for instance within a radio-button group), or share content which "flows" between them, among other types of possible relationships.
Synopsis
- newtype RelationSet = RelationSet (ManagedPtr RelationSet)
- class GObject o => IsRelationSet o
- toRelationSet :: (MonadIO m, IsRelationSet o) => o -> m RelationSet
- noRelationSet :: Maybe RelationSet
- relationSetAdd :: (HasCallStack, MonadIO m, IsRelationSet a, IsRelation b) => a -> b -> m ()
- relationSetAddRelationByType :: (HasCallStack, MonadIO m, IsRelationSet a, IsObject b) => a -> RelationType -> b -> m ()
- relationSetContains :: (HasCallStack, MonadIO m, IsRelationSet a) => a -> RelationType -> m Bool
- relationSetContainsTarget :: (HasCallStack, MonadIO m, IsRelationSet a, IsObject b) => a -> RelationType -> b -> m Bool
- relationSetGetNRelations :: (HasCallStack, MonadIO m, IsRelationSet a) => a -> m Int32
- relationSetGetRelation :: (HasCallStack, MonadIO m, IsRelationSet a) => a -> Int32 -> m Relation
- relationSetGetRelationByType :: (HasCallStack, MonadIO m, IsRelationSet a) => a -> RelationType -> m Relation
- relationSetNew :: (HasCallStack, MonadIO m) => m RelationSet
- relationSetRemove :: (HasCallStack, MonadIO m, IsRelationSet a, IsRelation b) => a -> b -> m ()
Exported types
newtype RelationSet Source #
Memory-managed wrapper type.
Instances
GObject RelationSet Source # | |
Defined in GI.Atk.Objects.RelationSet gobjectType :: RelationSet -> IO GType # | |
IsObject RelationSet Source # | |
Defined in GI.Atk.Objects.RelationSet | |
IsRelationSet RelationSet Source # | |
Defined in GI.Atk.Objects.RelationSet |
class GObject o => IsRelationSet o Source #
Type class for types which can be safely cast to RelationSet
, for instance with toRelationSet
.
Instances
(GObject a, (UnknownAncestorError RelationSet a :: Constraint)) => IsRelationSet a Source # | |
Defined in GI.Atk.Objects.RelationSet | |
IsRelationSet RelationSet Source # | |
Defined in GI.Atk.Objects.RelationSet |
toRelationSet :: (MonadIO m, IsRelationSet o) => o -> m RelationSet Source #
Cast to RelationSet
, for types for which this is known to be safe. For general casts, use castTo
.
noRelationSet :: Maybe RelationSet Source #
A convenience alias for Nothing
:: Maybe
RelationSet
.
Methods
add
:: (HasCallStack, MonadIO m, IsRelationSet a, IsRelation b) | |
=> a |
|
-> b |
|
-> m () |
Add a new relation to the current relation set if it is not already present. This function ref's the AtkRelation so the caller of this function should unref it to ensure that it will be destroyed when the AtkRelationSet is destroyed.
addRelationByType
relationSetAddRelationByType Source #
:: (HasCallStack, MonadIO m, IsRelationSet a, IsObject b) | |
=> a |
|
-> RelationType |
|
-> b |
|
-> m () |
Add a new relation of the specified type with the specified target to the current relation set if the relation set does not contain a relation of that type. If it is does contain a relation of that typea the target is added to the relation.
Since: 1.9
contains
:: (HasCallStack, MonadIO m, IsRelationSet a) | |
=> a |
|
-> RelationType |
|
-> m Bool | Returns: |
Determines whether the relation set contains a relation that matches the specified type.
containsTarget
relationSetContainsTarget Source #
:: (HasCallStack, MonadIO m, IsRelationSet a, IsObject b) | |
=> a |
|
-> RelationType |
|
-> b |
|
-> m Bool | Returns: |
Determines whether the relation set contains a relation that
matches the specified pair formed by type relationship
and object
target
.
getNRelations
relationSetGetNRelations Source #
:: (HasCallStack, MonadIO m, IsRelationSet a) | |
=> a |
|
-> m Int32 | Returns: an integer representing the number of relations in the set. |
Determines the number of relations in a relation set.
getRelation
relationSetGetRelation Source #
:: (HasCallStack, MonadIO m, IsRelationSet a) | |
=> a |
|
-> Int32 |
|
-> m Relation | Returns: a |
Determines the relation at the specified position in the relation set.
getRelationByType
relationSetGetRelationByType Source #
:: (HasCallStack, MonadIO m, IsRelationSet a) | |
=> a |
|
-> RelationType |
|
-> m Relation | Returns: an |
Finds a relation that matches the specified type.
new
:: (HasCallStack, MonadIO m) | |
=> m RelationSet | Returns: a new |
Creates a new empty relation set.
remove
:: (HasCallStack, MonadIO m, IsRelationSet a, IsRelation b) | |
=> a |
|
-> b |
|
-> m () |
Removes a relation from the relation set.
This function unref's the Relation
so it will be deleted unless there
is another reference to it.