{- | Copyright : Will Thompson, Iñaki García Etxebarria and Jonas Platte License : LGPL-2.1 Maintainer : Iñaki García Etxebarria (inaki@blueleaf.cc) /No description available in the introspection data./ -} #define ENABLE_OVERLOADING (MIN_VERSION_haskell_gi_overloading(1,0,0) \ && !defined(__HADDOCK_VERSION__)) module GI.Gtk.Structs.SettingsValue ( -- * Exported types SettingsValue(..) , newZeroSettingsValue , noSettingsValue , -- * Properties -- ** origin #attr:origin# {- | Origin should be something like “filename:linenumber” for rc files, or e.g. “XProperty” for other sources. -} clearSettingsValueOrigin , getSettingsValueOrigin , setSettingsValueOrigin , #if ENABLE_OVERLOADING settingsValue_origin , #endif -- ** value #attr:value# {- | Valid types are LONG, DOUBLE and STRING corresponding to the token parsed, or a GSTRING holding an unparsed statement -} getSettingsValueValue , #if ENABLE_OVERLOADING settingsValue_value , #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.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.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 -- | Memory-managed wrapper type. newtype SettingsValue = SettingsValue (ManagedPtr SettingsValue) instance WrappedPtr SettingsValue where wrappedPtrCalloc = callocBytes 32 wrappedPtrCopy = \p -> withManagedPtr p (copyBytes 32 >=> wrapPtr SettingsValue) wrappedPtrFree = Just ptr_to_g_free -- | Construct a `SettingsValue` struct initialized to zero. newZeroSettingsValue :: MonadIO m => m SettingsValue newZeroSettingsValue = liftIO $ wrappedPtrCalloc >>= wrapPtr SettingsValue instance tag ~ 'AttrSet => Constructible SettingsValue tag where new _ attrs = do o <- newZeroSettingsValue GI.Attributes.set o attrs return o -- | A convenience alias for `Nothing` :: `Maybe` `SettingsValue`. noSettingsValue :: Maybe SettingsValue noSettingsValue = Nothing {- | Get the value of the “@origin@” field. When is enabled, this is equivalent to @ 'Data.GI.Base.Attributes.get' settingsValue #origin @ -} getSettingsValueOrigin :: MonadIO m => SettingsValue -> m (Maybe T.Text) getSettingsValueOrigin s = liftIO $ withManagedPtr s $ \ptr -> do val <- peek (ptr `plusPtr` 0) :: IO CString result <- SP.convertIfNonNull val $ \val' -> do val'' <- cstringToText val' return val'' return result {- | Set the value of the “@origin@” field. When is enabled, this is equivalent to @ 'Data.GI.Base.Attributes.set' settingsValue [ #origin 'Data.GI.Base.Attributes.:=' value ] @ -} setSettingsValueOrigin :: MonadIO m => SettingsValue -> CString -> m () setSettingsValueOrigin s val = liftIO $ withManagedPtr s $ \ptr -> do poke (ptr `plusPtr` 0) (val :: CString) {- | Set the value of the “@origin@” field to `Nothing`. When is enabled, this is equivalent to @ 'Data.GI.Base.Attributes.clear' #origin @ -} clearSettingsValueOrigin :: MonadIO m => SettingsValue -> m () clearSettingsValueOrigin s = liftIO $ withManagedPtr s $ \ptr -> do poke (ptr `plusPtr` 0) (FP.nullPtr :: CString) #if ENABLE_OVERLOADING data SettingsValueOriginFieldInfo instance AttrInfo SettingsValueOriginFieldInfo where type AttrAllowedOps SettingsValueOriginFieldInfo = '[ 'AttrSet, 'AttrGet, 'AttrClear] type AttrSetTypeConstraint SettingsValueOriginFieldInfo = (~) CString type AttrBaseTypeConstraint SettingsValueOriginFieldInfo = (~) SettingsValue type AttrGetType SettingsValueOriginFieldInfo = Maybe T.Text type AttrLabel SettingsValueOriginFieldInfo = "origin" type AttrOrigin SettingsValueOriginFieldInfo = SettingsValue attrGet _ = getSettingsValueOrigin attrSet _ = setSettingsValueOrigin attrConstruct = undefined attrClear _ = clearSettingsValueOrigin settingsValue_origin :: AttrLabelProxy "origin" settingsValue_origin = AttrLabelProxy #endif {- | Get the value of the “@value@” field. When is enabled, this is equivalent to @ 'Data.GI.Base.Attributes.get' settingsValue #value @ -} getSettingsValueValue :: MonadIO m => SettingsValue -> m GValue getSettingsValueValue s = liftIO $ withManagedPtr s $ \ptr -> do let val = ptr `plusPtr` 8 :: (Ptr GValue) val' <- (newBoxed GValue) val return val' #if ENABLE_OVERLOADING data SettingsValueValueFieldInfo instance AttrInfo SettingsValueValueFieldInfo where type AttrAllowedOps SettingsValueValueFieldInfo = '[ 'AttrGet] type AttrSetTypeConstraint SettingsValueValueFieldInfo = (~) (Ptr GValue) type AttrBaseTypeConstraint SettingsValueValueFieldInfo = (~) SettingsValue type AttrGetType SettingsValueValueFieldInfo = GValue type AttrLabel SettingsValueValueFieldInfo = "value" type AttrOrigin SettingsValueValueFieldInfo = SettingsValue attrGet _ = getSettingsValueValue attrSet _ = undefined attrConstruct = undefined attrClear _ = undefined settingsValue_value :: AttrLabelProxy "value" settingsValue_value = AttrLabelProxy #endif #if ENABLE_OVERLOADING instance O.HasAttributeList SettingsValue type instance O.AttributeList SettingsValue = SettingsValueAttributeList type SettingsValueAttributeList = ('[ '("origin", SettingsValueOriginFieldInfo), '("value", SettingsValueValueFieldInfo)] :: [(Symbol, *)]) #endif #if ENABLE_OVERLOADING type family ResolveSettingsValueMethod (t :: Symbol) (o :: *) :: * where ResolveSettingsValueMethod l o = O.MethodResolutionFailed l o instance (info ~ ResolveSettingsValueMethod t SettingsValue, O.MethodInfo info SettingsValue p) => OL.IsLabel t (SettingsValue -> p) where #if MIN_VERSION_base(4,10,0) fromLabel = O.overloadedMethod (O.MethodProxy :: O.MethodProxy info) #else fromLabel _ = O.overloadedMethod (O.MethodProxy :: O.MethodProxy info) #endif #endif