| 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 |
GI.GtkSource.Objects.Mark
Description
No description available in the introspection data.
Synopsis
- newtype Mark = Mark (ManagedPtr Mark)
- class GObject o => IsMark o
- toMark :: (MonadIO m, IsMark o) => o -> m Mark
- noMark :: Maybe Mark
- markGetCategory :: (HasCallStack, MonadIO m, IsMark a) => a -> m Text
- markNew :: (HasCallStack, MonadIO m) => Text -> Text -> m Mark
- markNext :: (HasCallStack, MonadIO m, IsMark a) => a -> Maybe Text -> m (Maybe Mark)
- markPrev :: (HasCallStack, MonadIO m, IsMark a) => a -> Text -> m (Maybe Mark)
- constructMarkCategory :: IsMark o => Text -> IO (GValueConstruct o)
- getMarkCategory :: (MonadIO m, IsMark o) => o -> m Text
Exported types
Memory-managed wrapper type.
Constructors
| Mark (ManagedPtr Mark) |
Instances
| GObject Mark Source # | |
Defined in GI.GtkSource.Objects.Mark Methods gobjectType :: Mark -> IO GType # | |
| IsObject Mark Source # | |
Defined in GI.GtkSource.Objects.Mark | |
| IsTextMark Mark Source # | |
Defined in GI.GtkSource.Objects.Mark | |
| IsMark Mark Source # | |
Defined in GI.GtkSource.Objects.Mark | |
class GObject o => IsMark o Source #
Instances
| (GObject a, (UnknownAncestorError Mark a :: Constraint)) => IsMark a Source # | |
Defined in GI.GtkSource.Objects.Mark | |
| IsMark Mark Source # | |
Defined in GI.GtkSource.Objects.Mark | |
Methods
getCategory
Arguments
| :: (HasCallStack, MonadIO m, IsMark a) | |
| => a |
|
| -> m Text | Returns: the category of the |
Returns the mark category.
Since: 2.2
new
Arguments
| :: (HasCallStack, MonadIO m) | |
| => Text |
|
| -> Text |
|
| -> m Mark | Returns: a new |
Creates a text mark. Add it to a buffer using textBufferAddMark.
If name is NULL, the mark is anonymous; otherwise, the mark can be retrieved
by name using textBufferGetMark.
Normally marks are created using the utility function
bufferCreateSourceMark.
Since: 2.2
next
prev
Properties
category
The category of the Mark, classifies the mark and controls
which pixbuf is used and with which priority it is drawn.
constructMarkCategory :: IsMark o => Text -> IO (GValueConstruct o) Source #
Construct a GValueConstruct with valid value for the “category” property. This is rarely needed directly, but it is used by new.
getMarkCategory :: (MonadIO m, IsMark o) => o -> m Text Source #
Get the value of the “category” property.
When overloading is enabled, this is equivalent to
get mark #category