gi-gtk-4.0.4: Gtk bindings
CopyrightWill Thompson Iñaki García Etxebarria and Jonas Platte
LicenseLGPL-2.1
MaintainerIñaki García Etxebarria
Safe HaskellSafe-Inferred
LanguageHaskell2010

GI.Gtk.Interfaces.TreeDragDest

Description

No description available in the introspection data.

Synopsis

Exported types

newtype TreeDragDest Source #

Memory-managed wrapper type.

Constructors

TreeDragDest (ManagedPtr TreeDragDest) 

Instances

Instances details
Eq TreeDragDest Source # 
Instance details

Defined in GI.Gtk.Interfaces.TreeDragDest

BoxedPtr TreeDragDest Source # 
Instance details

Defined in GI.Gtk.Interfaces.TreeDragDest

ManagedPtrNewtype TreeDragDest Source # 
Instance details

Defined in GI.Gtk.Interfaces.TreeDragDest

Methods

toManagedPtr :: TreeDragDest -> ManagedPtr TreeDragDest

class (ManagedPtrNewtype o, IsDescendantOf TreeDragDest o) => IsTreeDragDest o Source #

Type class for types which implement TreeDragDest.

Instances

Instances details
(ManagedPtrNewtype o, IsDescendantOf TreeDragDest o) => IsTreeDragDest o Source # 
Instance details

Defined in GI.Gtk.Interfaces.TreeDragDest

Methods

Click to display all available methods, including inherited ones

Expand

Methods

dragDataReceived, rowDropPossible.

Getters

None.

Setters

None.

dragDataReceived

treeDragDestDragDataReceived Source #

Arguments

:: (HasCallStack, MonadIO m, IsTreeDragDest a) 
=> a

dragDest: a TreeDragDest

-> TreePath

dest: row to drop in front of

-> GValue

value: data to drop

-> m Bool

Returns: whether a new row was created before position dest

Asks the TreeDragDest to insert a row before the path dest, deriving the contents of the row from value. 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 #

Arguments

:: (HasCallStack, MonadIO m, IsTreeDragDest a) 
=> a

dragDest: a TreeDragDest

-> TreePath

destPath: destination row

-> GValue

value: the data being dropped

-> m Bool

Returns: True if a drop is possible before destPath

Determines whether a drop is possible before the given destPath, at the same depth as destPath. i.e., can we drop the data in value 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.