{-# LANGUAGE TypeApplications #-}
#if (MIN_VERSION_haskell_gi_overloading(1,0,0) && !defined(__HADDOCK_VERSION__))
#define ENABLE_OVERLOADING
#endif
module GI.Gtk.Interfaces.CellLayout
(
CellLayout(..) ,
IsCellLayout ,
toCellLayout ,
#if defined(ENABLE_OVERLOADING)
ResolveCellLayoutMethod ,
#endif
#if defined(ENABLE_OVERLOADING)
CellLayoutAddAttributeMethodInfo ,
#endif
cellLayoutAddAttribute ,
#if defined(ENABLE_OVERLOADING)
CellLayoutClearMethodInfo ,
#endif
cellLayoutClear ,
#if defined(ENABLE_OVERLOADING)
CellLayoutClearAttributesMethodInfo ,
#endif
cellLayoutClearAttributes ,
#if defined(ENABLE_OVERLOADING)
CellLayoutGetAreaMethodInfo ,
#endif
cellLayoutGetArea ,
#if defined(ENABLE_OVERLOADING)
CellLayoutGetCellsMethodInfo ,
#endif
cellLayoutGetCells ,
#if defined(ENABLE_OVERLOADING)
CellLayoutPackEndMethodInfo ,
#endif
cellLayoutPackEnd ,
#if defined(ENABLE_OVERLOADING)
CellLayoutPackStartMethodInfo ,
#endif
cellLayoutPackStart ,
#if defined(ENABLE_OVERLOADING)
CellLayoutReorderMethodInfo ,
#endif
cellLayoutReorder ,
#if defined(ENABLE_OVERLOADING)
CellLayoutSetCellDataFuncMethodInfo ,
#endif
cellLayoutSetCellDataFunc ,
) where
import Data.GI.Base.ShortPrelude
import qualified Data.GI.Base.ShortPrelude as SP
import qualified Data.GI.Base.Overloading as O
import qualified Prelude as P
import qualified Data.GI.Base.Attributes as GI.Attributes
import qualified Data.GI.Base.BasicTypes as B.Types
import qualified Data.GI.Base.ManagedPtr as B.ManagedPtr
import qualified Data.GI.Base.GArray as B.GArray
import qualified Data.GI.Base.GClosure as B.GClosure
import qualified Data.GI.Base.GError as B.GError
import qualified Data.GI.Base.GVariant as B.GVariant
import qualified Data.GI.Base.GValue as B.GValue
import qualified Data.GI.Base.GParamSpec as B.GParamSpec
import qualified Data.GI.Base.CallStack as B.CallStack
import qualified Data.GI.Base.Properties as B.Properties
import qualified Data.GI.Base.Signals as B.Signals
import qualified Control.Monad.IO.Class as MIO
import qualified Data.Text as T
import qualified Data.ByteString.Char8 as B
import qualified Data.Map as Map
import qualified Foreign.Ptr as FP
import qualified GHC.OverloadedLabels as OL
import qualified GI.GLib.Callbacks as GLib.Callbacks
import qualified GI.GObject.Objects.Object as GObject.Object
import qualified GI.Gtk.Callbacks as Gtk.Callbacks
import {-# SOURCE #-} qualified GI.Gtk.Objects.CellArea as Gtk.CellArea
import {-# SOURCE #-} qualified GI.Gtk.Objects.CellRenderer as Gtk.CellRenderer
newtype CellLayout = CellLayout (SP.ManagedPtr CellLayout)
deriving (CellLayout -> CellLayout -> Bool
(CellLayout -> CellLayout -> Bool)
-> (CellLayout -> CellLayout -> Bool) -> Eq CellLayout
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: CellLayout -> CellLayout -> Bool
$c/= :: CellLayout -> CellLayout -> Bool
== :: CellLayout -> CellLayout -> Bool
$c== :: CellLayout -> CellLayout -> Bool
Eq)
instance SP.ManagedPtrNewtype CellLayout where
toManagedPtr :: CellLayout -> ManagedPtr CellLayout
toManagedPtr (CellLayout ManagedPtr CellLayout
p) = ManagedPtr CellLayout
p
foreign import ccall "gtk_cell_layout_get_type"
c_gtk_cell_layout_get_type :: IO B.Types.GType
instance B.Types.TypedObject CellLayout where
glibType :: IO GType
glibType = IO GType
c_gtk_cell_layout_get_type
instance B.Types.GObject CellLayout
instance B.GValue.IsGValue CellLayout where
toGValue :: CellLayout -> IO GValue
toGValue CellLayout
o = do
GType
gtype <- IO GType
c_gtk_cell_layout_get_type
CellLayout -> (Ptr CellLayout -> IO GValue) -> IO GValue
forall a c.
(HasCallStack, ManagedPtrNewtype a) =>
a -> (Ptr a -> IO c) -> IO c
B.ManagedPtr.withManagedPtr CellLayout
o (GType
-> (GValue -> Ptr CellLayout -> IO ())
-> Ptr CellLayout
-> IO GValue
forall a. GType -> (GValue -> a -> IO ()) -> a -> IO GValue
B.GValue.buildGValue GType
gtype GValue -> Ptr CellLayout -> IO ()
forall a. GObject a => GValue -> Ptr a -> IO ()
B.GValue.set_object)
fromGValue :: GValue -> IO CellLayout
fromGValue GValue
gv = do
Ptr CellLayout
ptr <- GValue -> IO (Ptr CellLayout)
forall b. GObject b => GValue -> IO (Ptr b)
B.GValue.get_object GValue
gv :: IO (Ptr CellLayout)
(ManagedPtr CellLayout -> CellLayout)
-> Ptr CellLayout -> IO CellLayout
forall a b.
(HasCallStack, GObject a, GObject b) =>
(ManagedPtr a -> a) -> Ptr b -> IO a
B.ManagedPtr.newObject ManagedPtr CellLayout -> CellLayout
CellLayout Ptr CellLayout
ptr
class (SP.GObject o, O.IsDescendantOf CellLayout o) => IsCellLayout o
instance (SP.GObject o, O.IsDescendantOf CellLayout o) => IsCellLayout o
instance O.HasParentTypes CellLayout
type instance O.ParentTypes CellLayout = '[GObject.Object.Object]
toCellLayout :: (MonadIO m, IsCellLayout o) => o -> m CellLayout
toCellLayout :: o -> m CellLayout
toCellLayout = IO CellLayout -> m CellLayout
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO CellLayout -> m CellLayout)
-> (o -> IO CellLayout) -> o -> m CellLayout
forall b c a. (b -> c) -> (a -> b) -> a -> c
. (ManagedPtr CellLayout -> CellLayout) -> o -> IO CellLayout
forall o o'.
(HasCallStack, ManagedPtrNewtype o, TypedObject o,
ManagedPtrNewtype o', TypedObject o') =>
(ManagedPtr o' -> o') -> o -> IO o'
unsafeCastTo ManagedPtr CellLayout -> CellLayout
CellLayout
#if defined(ENABLE_OVERLOADING)
instance O.HasAttributeList CellLayout
type instance O.AttributeList CellLayout = CellLayoutAttributeList
type CellLayoutAttributeList = ('[ ] :: [(Symbol, *)])
#endif
#if defined(ENABLE_OVERLOADING)
#endif
#if defined(ENABLE_OVERLOADING)
type family ResolveCellLayoutMethod (t :: Symbol) (o :: *) :: * where
ResolveCellLayoutMethod "addAttribute" o = CellLayoutAddAttributeMethodInfo
ResolveCellLayoutMethod "bindProperty" o = GObject.Object.ObjectBindPropertyMethodInfo
ResolveCellLayoutMethod "bindPropertyFull" o = GObject.Object.ObjectBindPropertyFullMethodInfo
ResolveCellLayoutMethod "clear" o = CellLayoutClearMethodInfo
ResolveCellLayoutMethod "clearAttributes" o = CellLayoutClearAttributesMethodInfo
ResolveCellLayoutMethod "forceFloating" o = GObject.Object.ObjectForceFloatingMethodInfo
ResolveCellLayoutMethod "freezeNotify" o = GObject.Object.ObjectFreezeNotifyMethodInfo
ResolveCellLayoutMethod "getv" o = GObject.Object.ObjectGetvMethodInfo
ResolveCellLayoutMethod "isFloating" o = GObject.Object.ObjectIsFloatingMethodInfo
ResolveCellLayoutMethod "notify" o = GObject.Object.ObjectNotifyMethodInfo
ResolveCellLayoutMethod "notifyByPspec" o = GObject.Object.ObjectNotifyByPspecMethodInfo
ResolveCellLayoutMethod "packEnd" o = CellLayoutPackEndMethodInfo
ResolveCellLayoutMethod "packStart" o = CellLayoutPackStartMethodInfo
ResolveCellLayoutMethod "ref" o = GObject.Object.ObjectRefMethodInfo
ResolveCellLayoutMethod "refSink" o = GObject.Object.ObjectRefSinkMethodInfo
ResolveCellLayoutMethod "reorder" o = CellLayoutReorderMethodInfo
ResolveCellLayoutMethod "runDispose" o = GObject.Object.ObjectRunDisposeMethodInfo
ResolveCellLayoutMethod "stealData" o = GObject.Object.ObjectStealDataMethodInfo
ResolveCellLayoutMethod "stealQdata" o = GObject.Object.ObjectStealQdataMethodInfo
ResolveCellLayoutMethod "thawNotify" o = GObject.Object.ObjectThawNotifyMethodInfo
ResolveCellLayoutMethod "unref" o = GObject.Object.ObjectUnrefMethodInfo
ResolveCellLayoutMethod "watchClosure" o = GObject.Object.ObjectWatchClosureMethodInfo
ResolveCellLayoutMethod "getArea" o = CellLayoutGetAreaMethodInfo
ResolveCellLayoutMethod "getCells" o = CellLayoutGetCellsMethodInfo
ResolveCellLayoutMethod "getData" o = GObject.Object.ObjectGetDataMethodInfo
ResolveCellLayoutMethod "getProperty" o = GObject.Object.ObjectGetPropertyMethodInfo
ResolveCellLayoutMethod "getQdata" o = GObject.Object.ObjectGetQdataMethodInfo
ResolveCellLayoutMethod "setCellDataFunc" o = CellLayoutSetCellDataFuncMethodInfo
ResolveCellLayoutMethod "setData" o = GObject.Object.ObjectSetDataMethodInfo
ResolveCellLayoutMethod "setDataFull" o = GObject.Object.ObjectSetDataFullMethodInfo
ResolveCellLayoutMethod "setProperty" o = GObject.Object.ObjectSetPropertyMethodInfo
ResolveCellLayoutMethod l o = O.MethodResolutionFailed l o
instance (info ~ ResolveCellLayoutMethod t CellLayout, O.MethodInfo info CellLayout p) => OL.IsLabel t (CellLayout -> p) where
#if MIN_VERSION_base(4,10,0)
fromLabel = O.overloadedMethod @info
#else
fromLabel _ = O.overloadedMethod @info
#endif
#endif
foreign import ccall "gtk_cell_layout_add_attribute" gtk_cell_layout_add_attribute ::
Ptr CellLayout ->
Ptr Gtk.CellRenderer.CellRenderer ->
CString ->
Int32 ->
IO ()
cellLayoutAddAttribute ::
(B.CallStack.HasCallStack, MonadIO m, IsCellLayout a, Gtk.CellRenderer.IsCellRenderer b) =>
a
-> b
-> T.Text
-> Int32
-> m ()
cellLayoutAddAttribute :: a -> b -> Text -> Int32 -> m ()
cellLayoutAddAttribute a
cellLayout b
cell Text
attribute Int32
column = IO () -> m ()
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO () -> m ()) -> IO () -> m ()
forall a b. (a -> b) -> a -> b
$ do
Ptr CellLayout
cellLayout' <- a -> IO (Ptr CellLayout)
forall a b. (HasCallStack, ManagedPtrNewtype a) => a -> IO (Ptr b)
unsafeManagedPtrCastPtr a
cellLayout
Ptr CellRenderer
cell' <- b -> IO (Ptr CellRenderer)
forall a b. (HasCallStack, ManagedPtrNewtype a) => a -> IO (Ptr b)
unsafeManagedPtrCastPtr b
cell
CString
attribute' <- Text -> IO CString
textToCString Text
attribute
Ptr CellLayout -> Ptr CellRenderer -> CString -> Int32 -> IO ()
gtk_cell_layout_add_attribute Ptr CellLayout
cellLayout' Ptr CellRenderer
cell' CString
attribute' Int32
column
a -> IO ()
forall a. ManagedPtrNewtype a => a -> IO ()
touchManagedPtr a
cellLayout
b -> IO ()
forall a. ManagedPtrNewtype a => a -> IO ()
touchManagedPtr b
cell
CString -> IO ()
forall a. Ptr a -> IO ()
freeMem CString
attribute'
() -> IO ()
forall (m :: * -> *) a. Monad m => a -> m a
return ()
#if defined(ENABLE_OVERLOADING)
data CellLayoutAddAttributeMethodInfo
instance (signature ~ (b -> T.Text -> Int32 -> m ()), MonadIO m, IsCellLayout a, Gtk.CellRenderer.IsCellRenderer b) => O.MethodInfo CellLayoutAddAttributeMethodInfo a signature where
overloadedMethod = cellLayoutAddAttribute
#endif
foreign import ccall "gtk_cell_layout_clear" gtk_cell_layout_clear ::
Ptr CellLayout ->
IO ()
cellLayoutClear ::
(B.CallStack.HasCallStack, MonadIO m, IsCellLayout a) =>
a
-> m ()
cellLayoutClear :: a -> m ()
cellLayoutClear a
cellLayout = IO () -> m ()
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO () -> m ()) -> IO () -> m ()
forall a b. (a -> b) -> a -> b
$ do
Ptr CellLayout
cellLayout' <- a -> IO (Ptr CellLayout)
forall a b. (HasCallStack, ManagedPtrNewtype a) => a -> IO (Ptr b)
unsafeManagedPtrCastPtr a
cellLayout
Ptr CellLayout -> IO ()
gtk_cell_layout_clear Ptr CellLayout
cellLayout'
a -> IO ()
forall a. ManagedPtrNewtype a => a -> IO ()
touchManagedPtr a
cellLayout
() -> IO ()
forall (m :: * -> *) a. Monad m => a -> m a
return ()
#if defined(ENABLE_OVERLOADING)
data CellLayoutClearMethodInfo
instance (signature ~ (m ()), MonadIO m, IsCellLayout a) => O.MethodInfo CellLayoutClearMethodInfo a signature where
overloadedMethod = cellLayoutClear
#endif
foreign import ccall "gtk_cell_layout_clear_attributes" gtk_cell_layout_clear_attributes ::
Ptr CellLayout ->
Ptr Gtk.CellRenderer.CellRenderer ->
IO ()
cellLayoutClearAttributes ::
(B.CallStack.HasCallStack, MonadIO m, IsCellLayout a, Gtk.CellRenderer.IsCellRenderer b) =>
a
-> b
-> m ()
cellLayoutClearAttributes :: a -> b -> m ()
cellLayoutClearAttributes a
cellLayout b
cell = IO () -> m ()
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO () -> m ()) -> IO () -> m ()
forall a b. (a -> b) -> a -> b
$ do
Ptr CellLayout
cellLayout' <- a -> IO (Ptr CellLayout)
forall a b. (HasCallStack, ManagedPtrNewtype a) => a -> IO (Ptr b)
unsafeManagedPtrCastPtr a
cellLayout
Ptr CellRenderer
cell' <- b -> IO (Ptr CellRenderer)
forall a b. (HasCallStack, ManagedPtrNewtype a) => a -> IO (Ptr b)
unsafeManagedPtrCastPtr b
cell
Ptr CellLayout -> Ptr CellRenderer -> IO ()
gtk_cell_layout_clear_attributes Ptr CellLayout
cellLayout' Ptr CellRenderer
cell'
a -> IO ()
forall a. ManagedPtrNewtype a => a -> IO ()
touchManagedPtr a
cellLayout
b -> IO ()
forall a. ManagedPtrNewtype a => a -> IO ()
touchManagedPtr b
cell
() -> IO ()
forall (m :: * -> *) a. Monad m => a -> m a
return ()
#if defined(ENABLE_OVERLOADING)
data CellLayoutClearAttributesMethodInfo
instance (signature ~ (b -> m ()), MonadIO m, IsCellLayout a, Gtk.CellRenderer.IsCellRenderer b) => O.MethodInfo CellLayoutClearAttributesMethodInfo a signature where
overloadedMethod = cellLayoutClearAttributes
#endif
foreign import ccall "gtk_cell_layout_get_area" gtk_cell_layout_get_area ::
Ptr CellLayout ->
IO (Ptr Gtk.CellArea.CellArea)
cellLayoutGetArea ::
(B.CallStack.HasCallStack, MonadIO m, IsCellLayout a) =>
a
-> m (Maybe Gtk.CellArea.CellArea)
cellLayoutGetArea :: a -> m (Maybe CellArea)
cellLayoutGetArea a
cellLayout = IO (Maybe CellArea) -> m (Maybe CellArea)
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO (Maybe CellArea) -> m (Maybe CellArea))
-> IO (Maybe CellArea) -> m (Maybe CellArea)
forall a b. (a -> b) -> a -> b
$ do
Ptr CellLayout
cellLayout' <- a -> IO (Ptr CellLayout)
forall a b. (HasCallStack, ManagedPtrNewtype a) => a -> IO (Ptr b)
unsafeManagedPtrCastPtr a
cellLayout
Ptr CellArea
result <- Ptr CellLayout -> IO (Ptr CellArea)
gtk_cell_layout_get_area Ptr CellLayout
cellLayout'
Maybe CellArea
maybeResult <- Ptr CellArea
-> (Ptr CellArea -> IO CellArea) -> IO (Maybe CellArea)
forall a b. Ptr a -> (Ptr a -> IO b) -> IO (Maybe b)
convertIfNonNull Ptr CellArea
result ((Ptr CellArea -> IO CellArea) -> IO (Maybe CellArea))
-> (Ptr CellArea -> IO CellArea) -> IO (Maybe CellArea)
forall a b. (a -> b) -> a -> b
$ \Ptr CellArea
result' -> do
CellArea
result'' <- ((ManagedPtr CellArea -> CellArea) -> Ptr CellArea -> IO CellArea
forall a b.
(HasCallStack, GObject a, GObject b) =>
(ManagedPtr a -> a) -> Ptr b -> IO a
newObject ManagedPtr CellArea -> CellArea
Gtk.CellArea.CellArea) Ptr CellArea
result'
CellArea -> IO CellArea
forall (m :: * -> *) a. Monad m => a -> m a
return CellArea
result''
a -> IO ()
forall a. ManagedPtrNewtype a => a -> IO ()
touchManagedPtr a
cellLayout
Maybe CellArea -> IO (Maybe CellArea)
forall (m :: * -> *) a. Monad m => a -> m a
return Maybe CellArea
maybeResult
#if defined(ENABLE_OVERLOADING)
data CellLayoutGetAreaMethodInfo
instance (signature ~ (m (Maybe Gtk.CellArea.CellArea)), MonadIO m, IsCellLayout a) => O.MethodInfo CellLayoutGetAreaMethodInfo a signature where
overloadedMethod = cellLayoutGetArea
#endif
foreign import ccall "gtk_cell_layout_get_cells" gtk_cell_layout_get_cells ::
Ptr CellLayout ->
IO (Ptr (GList (Ptr Gtk.CellRenderer.CellRenderer)))
cellLayoutGetCells ::
(B.CallStack.HasCallStack, MonadIO m, IsCellLayout a) =>
a
-> m [Gtk.CellRenderer.CellRenderer]
cellLayoutGetCells :: a -> m [CellRenderer]
cellLayoutGetCells a
cellLayout = IO [CellRenderer] -> m [CellRenderer]
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO [CellRenderer] -> m [CellRenderer])
-> IO [CellRenderer] -> m [CellRenderer]
forall a b. (a -> b) -> a -> b
$ do
Ptr CellLayout
cellLayout' <- a -> IO (Ptr CellLayout)
forall a b. (HasCallStack, ManagedPtrNewtype a) => a -> IO (Ptr b)
unsafeManagedPtrCastPtr a
cellLayout
Ptr (GList (Ptr CellRenderer))
result <- Ptr CellLayout -> IO (Ptr (GList (Ptr CellRenderer)))
gtk_cell_layout_get_cells Ptr CellLayout
cellLayout'
[Ptr CellRenderer]
result' <- Ptr (GList (Ptr CellRenderer)) -> IO [Ptr CellRenderer]
forall a. Ptr (GList (Ptr a)) -> IO [Ptr a]
unpackGList Ptr (GList (Ptr CellRenderer))
result
[CellRenderer]
result'' <- (Ptr CellRenderer -> IO CellRenderer)
-> [Ptr CellRenderer] -> IO [CellRenderer]
forall (t :: * -> *) (m :: * -> *) a b.
(Traversable t, Monad m) =>
(a -> m b) -> t a -> m (t b)
mapM ((ManagedPtr CellRenderer -> CellRenderer)
-> Ptr CellRenderer -> IO CellRenderer
forall a b.
(HasCallStack, GObject a, GObject b) =>
(ManagedPtr a -> a) -> Ptr b -> IO a
newObject ManagedPtr CellRenderer -> CellRenderer
Gtk.CellRenderer.CellRenderer) [Ptr CellRenderer]
result'
Ptr (GList (Ptr CellRenderer)) -> IO ()
forall a. Ptr (GList a) -> IO ()
g_list_free Ptr (GList (Ptr CellRenderer))
result
a -> IO ()
forall a. ManagedPtrNewtype a => a -> IO ()
touchManagedPtr a
cellLayout
[CellRenderer] -> IO [CellRenderer]
forall (m :: * -> *) a. Monad m => a -> m a
return [CellRenderer]
result''
#if defined(ENABLE_OVERLOADING)
data CellLayoutGetCellsMethodInfo
instance (signature ~ (m [Gtk.CellRenderer.CellRenderer]), MonadIO m, IsCellLayout a) => O.MethodInfo CellLayoutGetCellsMethodInfo a signature where
overloadedMethod = cellLayoutGetCells
#endif
foreign import ccall "gtk_cell_layout_pack_end" gtk_cell_layout_pack_end ::
Ptr CellLayout ->
Ptr Gtk.CellRenderer.CellRenderer ->
CInt ->
IO ()
cellLayoutPackEnd ::
(B.CallStack.HasCallStack, MonadIO m, IsCellLayout a, Gtk.CellRenderer.IsCellRenderer b) =>
a
-> b
-> Bool
-> m ()
cellLayoutPackEnd :: a -> b -> Bool -> m ()
cellLayoutPackEnd a
cellLayout b
cell Bool
expand = IO () -> m ()
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO () -> m ()) -> IO () -> m ()
forall a b. (a -> b) -> a -> b
$ do
Ptr CellLayout
cellLayout' <- a -> IO (Ptr CellLayout)
forall a b. (HasCallStack, ManagedPtrNewtype a) => a -> IO (Ptr b)
unsafeManagedPtrCastPtr a
cellLayout
Ptr CellRenderer
cell' <- b -> IO (Ptr CellRenderer)
forall a b. (HasCallStack, ManagedPtrNewtype a) => a -> IO (Ptr b)
unsafeManagedPtrCastPtr b
cell
let expand' :: CInt
expand' = (Int -> CInt
forall a b. (Integral a, Num b) => a -> b
fromIntegral (Int -> CInt) -> (Bool -> Int) -> Bool -> CInt
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Bool -> Int
forall a. Enum a => a -> Int
fromEnum) Bool
expand
Ptr CellLayout -> Ptr CellRenderer -> CInt -> IO ()
gtk_cell_layout_pack_end Ptr CellLayout
cellLayout' Ptr CellRenderer
cell' CInt
expand'
a -> IO ()
forall a. ManagedPtrNewtype a => a -> IO ()
touchManagedPtr a
cellLayout
b -> IO ()
forall a. ManagedPtrNewtype a => a -> IO ()
touchManagedPtr b
cell
() -> IO ()
forall (m :: * -> *) a. Monad m => a -> m a
return ()
#if defined(ENABLE_OVERLOADING)
data CellLayoutPackEndMethodInfo
instance (signature ~ (b -> Bool -> m ()), MonadIO m, IsCellLayout a, Gtk.CellRenderer.IsCellRenderer b) => O.MethodInfo CellLayoutPackEndMethodInfo a signature where
overloadedMethod = cellLayoutPackEnd
#endif
foreign import ccall "gtk_cell_layout_pack_start" gtk_cell_layout_pack_start ::
Ptr CellLayout ->
Ptr Gtk.CellRenderer.CellRenderer ->
CInt ->
IO ()
cellLayoutPackStart ::
(B.CallStack.HasCallStack, MonadIO m, IsCellLayout a, Gtk.CellRenderer.IsCellRenderer b) =>
a
-> b
-> Bool
-> m ()
cellLayoutPackStart :: a -> b -> Bool -> m ()
cellLayoutPackStart a
cellLayout b
cell Bool
expand = IO () -> m ()
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO () -> m ()) -> IO () -> m ()
forall a b. (a -> b) -> a -> b
$ do
Ptr CellLayout
cellLayout' <- a -> IO (Ptr CellLayout)
forall a b. (HasCallStack, ManagedPtrNewtype a) => a -> IO (Ptr b)
unsafeManagedPtrCastPtr a
cellLayout
Ptr CellRenderer
cell' <- b -> IO (Ptr CellRenderer)
forall a b. (HasCallStack, ManagedPtrNewtype a) => a -> IO (Ptr b)
unsafeManagedPtrCastPtr b
cell
let expand' :: CInt
expand' = (Int -> CInt
forall a b. (Integral a, Num b) => a -> b
fromIntegral (Int -> CInt) -> (Bool -> Int) -> Bool -> CInt
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Bool -> Int
forall a. Enum a => a -> Int
fromEnum) Bool
expand
Ptr CellLayout -> Ptr CellRenderer -> CInt -> IO ()
gtk_cell_layout_pack_start Ptr CellLayout
cellLayout' Ptr CellRenderer
cell' CInt
expand'
a -> IO ()
forall a. ManagedPtrNewtype a => a -> IO ()
touchManagedPtr a
cellLayout
b -> IO ()
forall a. ManagedPtrNewtype a => a -> IO ()
touchManagedPtr b
cell
() -> IO ()
forall (m :: * -> *) a. Monad m => a -> m a
return ()
#if defined(ENABLE_OVERLOADING)
data CellLayoutPackStartMethodInfo
instance (signature ~ (b -> Bool -> m ()), MonadIO m, IsCellLayout a, Gtk.CellRenderer.IsCellRenderer b) => O.MethodInfo CellLayoutPackStartMethodInfo a signature where
overloadedMethod = cellLayoutPackStart
#endif
foreign import ccall "gtk_cell_layout_reorder" gtk_cell_layout_reorder ::
Ptr CellLayout ->
Ptr Gtk.CellRenderer.CellRenderer ->
Int32 ->
IO ()
cellLayoutReorder ::
(B.CallStack.HasCallStack, MonadIO m, IsCellLayout a, Gtk.CellRenderer.IsCellRenderer b) =>
a
-> b
-> Int32
-> m ()
cellLayoutReorder :: a -> b -> Int32 -> m ()
cellLayoutReorder a
cellLayout b
cell Int32
position = IO () -> m ()
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO () -> m ()) -> IO () -> m ()
forall a b. (a -> b) -> a -> b
$ do
Ptr CellLayout
cellLayout' <- a -> IO (Ptr CellLayout)
forall a b. (HasCallStack, ManagedPtrNewtype a) => a -> IO (Ptr b)
unsafeManagedPtrCastPtr a
cellLayout
Ptr CellRenderer
cell' <- b -> IO (Ptr CellRenderer)
forall a b. (HasCallStack, ManagedPtrNewtype a) => a -> IO (Ptr b)
unsafeManagedPtrCastPtr b
cell
Ptr CellLayout -> Ptr CellRenderer -> Int32 -> IO ()
gtk_cell_layout_reorder Ptr CellLayout
cellLayout' Ptr CellRenderer
cell' Int32
position
a -> IO ()
forall a. ManagedPtrNewtype a => a -> IO ()
touchManagedPtr a
cellLayout
b -> IO ()
forall a. ManagedPtrNewtype a => a -> IO ()
touchManagedPtr b
cell
() -> IO ()
forall (m :: * -> *) a. Monad m => a -> m a
return ()
#if defined(ENABLE_OVERLOADING)
data CellLayoutReorderMethodInfo
instance (signature ~ (b -> Int32 -> m ()), MonadIO m, IsCellLayout a, Gtk.CellRenderer.IsCellRenderer b) => O.MethodInfo CellLayoutReorderMethodInfo a signature where
overloadedMethod = cellLayoutReorder
#endif
foreign import ccall "gtk_cell_layout_set_cell_data_func" gtk_cell_layout_set_cell_data_func ::
Ptr CellLayout ->
Ptr Gtk.CellRenderer.CellRenderer ->
FunPtr Gtk.Callbacks.C_CellLayoutDataFunc ->
Ptr () ->
FunPtr GLib.Callbacks.C_DestroyNotify ->
IO ()
cellLayoutSetCellDataFunc ::
(B.CallStack.HasCallStack, MonadIO m, IsCellLayout a, Gtk.CellRenderer.IsCellRenderer b) =>
a
-> b
-> Maybe (Gtk.Callbacks.CellLayoutDataFunc)
-> m ()
cellLayoutSetCellDataFunc :: a -> b -> Maybe CellLayoutDataFunc -> m ()
cellLayoutSetCellDataFunc a
cellLayout b
cell Maybe CellLayoutDataFunc
func = IO () -> m ()
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO () -> m ()) -> IO () -> m ()
forall a b. (a -> b) -> a -> b
$ do
Ptr CellLayout
cellLayout' <- a -> IO (Ptr CellLayout)
forall a b. (HasCallStack, ManagedPtrNewtype a) => a -> IO (Ptr b)
unsafeManagedPtrCastPtr a
cellLayout
Ptr CellRenderer
cell' <- b -> IO (Ptr CellRenderer)
forall a b. (HasCallStack, ManagedPtrNewtype a) => a -> IO (Ptr b)
unsafeManagedPtrCastPtr b
cell
FunPtr C_CellLayoutDataFunc
maybeFunc <- case Maybe CellLayoutDataFunc
func of
Maybe CellLayoutDataFunc
Nothing -> FunPtr C_CellLayoutDataFunc -> IO (FunPtr C_CellLayoutDataFunc)
forall (m :: * -> *) a. Monad m => a -> m a
return (Ptr Any -> FunPtr C_CellLayoutDataFunc
forall a b. Ptr a -> FunPtr b
castPtrToFunPtr Ptr Any
forall a. Ptr a
nullPtr)
Just CellLayoutDataFunc
jFunc -> do
FunPtr C_CellLayoutDataFunc
jFunc' <- C_CellLayoutDataFunc -> IO (FunPtr C_CellLayoutDataFunc)
Gtk.Callbacks.mk_CellLayoutDataFunc (Maybe (Ptr (FunPtr C_CellLayoutDataFunc))
-> CellLayoutDataFunc_WithClosures -> C_CellLayoutDataFunc
Gtk.Callbacks.wrap_CellLayoutDataFunc Maybe (Ptr (FunPtr C_CellLayoutDataFunc))
forall a. Maybe a
Nothing (CellLayoutDataFunc -> CellLayoutDataFunc_WithClosures
Gtk.Callbacks.drop_closures_CellLayoutDataFunc CellLayoutDataFunc
jFunc))
FunPtr C_CellLayoutDataFunc -> IO (FunPtr C_CellLayoutDataFunc)
forall (m :: * -> *) a. Monad m => a -> m a
return FunPtr C_CellLayoutDataFunc
jFunc'
let funcData :: Ptr ()
funcData = FunPtr C_CellLayoutDataFunc -> Ptr ()
forall a b. FunPtr a -> Ptr b
castFunPtrToPtr FunPtr C_CellLayoutDataFunc
maybeFunc
let destroy :: FunPtr (Ptr a -> IO ())
destroy = FunPtr (Ptr a -> IO ())
forall a. FunPtr (Ptr a -> IO ())
safeFreeFunPtrPtr
Ptr CellLayout
-> Ptr CellRenderer
-> FunPtr C_CellLayoutDataFunc
-> Ptr ()
-> FunPtr C_DestroyNotify
-> IO ()
gtk_cell_layout_set_cell_data_func Ptr CellLayout
cellLayout' Ptr CellRenderer
cell' FunPtr C_CellLayoutDataFunc
maybeFunc Ptr ()
funcData FunPtr C_DestroyNotify
forall a. FunPtr (Ptr a -> IO ())
destroy
a -> IO ()
forall a. ManagedPtrNewtype a => a -> IO ()
touchManagedPtr a
cellLayout
b -> IO ()
forall a. ManagedPtrNewtype a => a -> IO ()
touchManagedPtr b
cell
() -> IO ()
forall (m :: * -> *) a. Monad m => a -> m a
return ()
#if defined(ENABLE_OVERLOADING)
data CellLayoutSetCellDataFuncMethodInfo
instance (signature ~ (b -> Maybe (Gtk.Callbacks.CellLayoutDataFunc) -> m ()), MonadIO m, IsCellLayout a, Gtk.CellRenderer.IsCellRenderer b) => O.MethodInfo CellLayoutSetCellDataFuncMethodInfo a signature where
overloadedMethod = cellLayoutSetCellDataFunc
#endif
#if defined(ENABLE_OVERLOADING)
type instance O.SignalList CellLayout = CellLayoutSignalList
type CellLayoutSignalList = ('[ '("notify", GObject.Object.ObjectNotifySignalInfo)] :: [(Symbol, *)])
#endif