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 TreeDragDest = TreeDragDest (ManagedPtr TreeDragDest)
- noTreeDragDest :: Maybe TreeDragDest
- class ManagedPtrNewtype a => IsTreeDragDest a
- treeDragDestDragDataReceived :: (HasCallStack, MonadIO m, IsTreeDragDest a) => a -> TreePath -> SelectionData -> m Bool
- treeDragDestRowDropPossible :: (HasCallStack, MonadIO m, IsTreeDragDest a) => a -> TreePath -> SelectionData -> m Bool
Exported types
newtype TreeDragDest Source #
Memory-managed wrapper type.
Instances
WrappedPtr TreeDragDest Source # | |
Defined in GI.Gtk.Interfaces.TreeDragDest wrappedPtrCalloc :: IO (Ptr TreeDragDest) # wrappedPtrCopy :: TreeDragDest -> IO TreeDragDest # wrappedPtrFree :: Maybe (FunPtr (Ptr TreeDragDest -> IO ())) # | |
IsTreeDragDest TreeDragDest Source # | |
Defined in GI.Gtk.Interfaces.TreeDragDest |
noTreeDragDest :: Maybe TreeDragDest Source #
A convenience alias for Nothing
:: Maybe
TreeDragDest
.
class ManagedPtrNewtype a => IsTreeDragDest a Source #
Type class for types which implement TreeDragDest
.
Instances
IsTreeDragDest TreeDragDest Source # | |
Defined in GI.Gtk.Interfaces.TreeDragDest | |
IsTreeDragDest TreeStore Source # | |
Defined in GI.Gtk.Objects.TreeStore | |
IsTreeDragDest ListStore Source # | |
Defined in GI.Gtk.Objects.ListStore |
Methods
dragDataReceived
treeDragDestDragDataReceived Source #
:: (HasCallStack, MonadIO m, IsTreeDragDest a) | |
=> a |
|
-> TreePath |
|
-> SelectionData |
|
-> m Bool | Returns: whether a new row was created before position |
Asks the TreeDragDest
to insert a row before the path dest
,
deriving the contents of the row from selectionData
. If dest
is
outside the tree so that inserting before it is impossible, False
will be returned. Also, False
may be returned if the new row is
not created for some model-specific reason. Should robustly handle
a dest
no longer found in the model!
rowDropPossible
treeDragDestRowDropPossible Source #
:: (HasCallStack, MonadIO m, IsTreeDragDest a) | |
=> a |
|
-> TreePath |
|
-> SelectionData |
|
-> m Bool | Returns: |
Determines whether a drop is possible before the given destPath
,
at the same depth as destPath
. i.e., can we drop the data in
selectionData
at that location. destPath
does not have to
exist; the return value will almost certainly be False
if the
parent of destPath
doesn’t exist, though.