{-# LANGUAGE TypeApplications #-}
#if (MIN_VERSION_haskell_gi_overloading(1,0,0) && !defined(__HADDOCK_VERSION__))
#define ENABLE_OVERLOADING
#endif
module GI.Cairo.Structs.FontOptions
(
FontOptions(..) ,
#if defined(ENABLE_OVERLOADING)
ResolveFontOptionsMethod ,
#endif
) 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.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
newtype FontOptions = FontOptions (SP.ManagedPtr FontOptions)
deriving (FontOptions -> FontOptions -> Bool
(FontOptions -> FontOptions -> Bool)
-> (FontOptions -> FontOptions -> Bool) -> Eq FontOptions
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: FontOptions -> FontOptions -> Bool
$c/= :: FontOptions -> FontOptions -> Bool
== :: FontOptions -> FontOptions -> Bool
$c== :: FontOptions -> FontOptions -> Bool
Eq)
instance SP.ManagedPtrNewtype FontOptions where
toManagedPtr :: FontOptions -> ManagedPtr FontOptions
toManagedPtr (FontOptions ManagedPtr FontOptions
p) = ManagedPtr FontOptions
p
foreign import ccall "cairo_gobject_font_options_get_type" c_cairo_gobject_font_options_get_type ::
IO GType
type instance O.ParentTypes FontOptions = '[]
instance O.HasParentTypes FontOptions
instance B.Types.TypedObject FontOptions where
glibType :: IO GType
glibType = IO GType
c_cairo_gobject_font_options_get_type
instance B.Types.GBoxed FontOptions
instance B.GValue.IsGValue FontOptions where
toGValue :: FontOptions -> IO GValue
toGValue FontOptions
o = do
GType
gtype <- IO GType
c_cairo_gobject_font_options_get_type
FontOptions -> (Ptr FontOptions -> IO GValue) -> IO GValue
forall a c.
(HasCallStack, ManagedPtrNewtype a) =>
a -> (Ptr a -> IO c) -> IO c
B.ManagedPtr.withManagedPtr FontOptions
o (GType
-> (GValue -> Ptr FontOptions -> IO ())
-> Ptr FontOptions
-> IO GValue
forall a. GType -> (GValue -> a -> IO ()) -> a -> IO GValue
B.GValue.buildGValue GType
gtype GValue -> Ptr FontOptions -> IO ()
forall a. GValue -> Ptr a -> IO ()
B.GValue.set_boxed)
fromGValue :: GValue -> IO FontOptions
fromGValue GValue
gv = do
Ptr FontOptions
ptr <- GValue -> IO (Ptr FontOptions)
forall b. GValue -> IO (Ptr b)
B.GValue.get_boxed GValue
gv :: IO (Ptr FontOptions)
(ManagedPtr FontOptions -> FontOptions)
-> Ptr FontOptions -> IO FontOptions
forall a.
(HasCallStack, GBoxed a) =>
(ManagedPtr a -> a) -> Ptr a -> IO a
B.ManagedPtr.newBoxed ManagedPtr FontOptions -> FontOptions
FontOptions Ptr FontOptions
ptr
#if defined(ENABLE_OVERLOADING)
instance O.HasAttributeList FontOptions
type instance O.AttributeList FontOptions = FontOptionsAttributeList
type FontOptionsAttributeList = ('[ ] :: [(Symbol, *)])
#endif
#if defined(ENABLE_OVERLOADING)
type family ResolveFontOptionsMethod (t :: Symbol) (o :: *) :: * where
ResolveFontOptionsMethod l o = O.MethodResolutionFailed l o
instance (info ~ ResolveFontOptionsMethod t FontOptions, O.MethodInfo info FontOptions p) => OL.IsLabel t (FontOptions -> p) where
#if MIN_VERSION_base(4,10,0)
fromLabel = O.overloadedMethod @info
#else
fromLabel _ = O.overloadedMethod @info
#endif
#endif