sdl2-2.5.2.0: Both high- and low-level bindings to the SDL library (version 2.0.6+).

Safe HaskellSafe
LanguageHaskell2010

SDL.Power

Contents

Synopsis

Power Status

getPowerInfo :: (Functor m, MonadIO m) => m PowerState Source #

Current power supply details.

Throws SDLException if the current power state can not be determined.

See SDL_GetPowerInfo for C documentation.

data PowerState Source #

Information about the power supply for the user's environment

Constructors

Battery BatteryState Charge

The user is on a battery powered device. See BatteryState for charge information, and Charge for charge information

Mains

The user is on a device connected to the mains.

UnknownPowerState

SDL could not determine the power for the device.

Instances
Eq PowerState Source # 
Instance details

Defined in SDL.Power

Ord PowerState Source # 
Instance details

Defined in SDL.Power

Read PowerState Source # 
Instance details

Defined in SDL.Power

Show PowerState Source # 
Instance details

Defined in SDL.Power

Generic PowerState Source # 
Instance details

Defined in SDL.Power

Associated Types

type Rep PowerState :: Type -> Type #

type Rep PowerState Source # 
Instance details

Defined in SDL.Power

data BatteryState Source #

Information on battery consumption for battery powered devices

Constructors

Draining

The battery is currently being drained.

Charged

The battery is fully charged.

Charging

The device is plugged in and the battery is charging.

Instances
Bounded BatteryState Source # 
Instance details

Defined in SDL.Power

Enum BatteryState Source # 
Instance details

Defined in SDL.Power

Eq BatteryState Source # 
Instance details

Defined in SDL.Power

Data BatteryState Source # 
Instance details

Defined in SDL.Power

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> BatteryState -> c BatteryState #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c BatteryState #

toConstr :: BatteryState -> Constr #

dataTypeOf :: BatteryState -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c BatteryState) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c BatteryState) #

gmapT :: (forall b. Data b => b -> b) -> BatteryState -> BatteryState #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> BatteryState -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> BatteryState -> r #

gmapQ :: (forall d. Data d => d -> u) -> BatteryState -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> BatteryState -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> BatteryState -> m BatteryState #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> BatteryState -> m BatteryState #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> BatteryState -> m BatteryState #

Ord BatteryState Source # 
Instance details

Defined in SDL.Power

Read BatteryState Source # 
Instance details

Defined in SDL.Power

Show BatteryState Source # 
Instance details

Defined in SDL.Power

Generic BatteryState Source # 
Instance details

Defined in SDL.Power

Associated Types

type Rep BatteryState :: Type -> Type #

type Rep BatteryState Source # 
Instance details

Defined in SDL.Power

type Rep BatteryState = D1 (MetaData "BatteryState" "SDL.Power" "sdl2-2.5.2.0-ELe18fNVphO8KGoFngt8o" False) (C1 (MetaCons "Draining" PrefixI False) (U1 :: Type -> Type) :+: (C1 (MetaCons "Charged" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "Charging" PrefixI False) (U1 :: Type -> Type)))

data Charge Source #

Information about how much charge a battery has.

Constructors

Charge 

Fields

Instances
Eq Charge Source # 
Instance details

Defined in SDL.Power

Methods

(==) :: Charge -> Charge -> Bool #

(/=) :: Charge -> Charge -> Bool #

Ord Charge Source # 
Instance details

Defined in SDL.Power

Read Charge Source # 
Instance details

Defined in SDL.Power

Show Charge Source # 
Instance details

Defined in SDL.Power

Generic Charge Source # 
Instance details

Defined in SDL.Power

Associated Types

type Rep Charge :: Type -> Type #

Methods

from :: Charge -> Rep Charge x #

to :: Rep Charge x -> Charge #

type Rep Charge Source # 
Instance details

Defined in SDL.Power

type Rep Charge = D1 (MetaData "Charge" "SDL.Power" "sdl2-2.5.2.0-ELe18fNVphO8KGoFngt8o" False) (C1 (MetaCons "Charge" PrefixI True) (S1 (MetaSel (Just "chargeSecondsLeft") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe CInt)) :*: S1 (MetaSel (Just "chargePercent") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 (Maybe CInt))))