diagrams-lib-1.0: src/Diagrams/Names.hs
{-# LANGUAGE FlexibleContexts #-}
-----------------------------------------------------------------------------
-- |
-- Module : Diagrams.Names
-- Copyright : (c) 2013 diagrams-lib team (see LICENSE)
-- License : BSD-style (see LICENSE)
-- Maintainer : diagrams-discuss@googlegroups.com
--
-- Names can be given to subdiagrams, and subdiagrams can later be
-- queried by name. This module exports types for representing names
-- and subdiagrams, and various functions for working with them.
--
-----------------------------------------------------------------------------
module Diagrams.Names
( -- * Names
AName, Name, IsName(..), (.>)
, Qualifiable(..)
-- * Subdiagrams
, Subdiagram, mkSubdiagram, subPoint, getSub, rawSub, location
-- * Subdiagram maps
, SubMap, fromNames, rememberAs, lookupSub
-- * Naming things
, named, nameSub, namePoint, localize
-- * Querying by name
, names
, lookupName
, withName, withNameAll, withNames
) where
import Data.Semigroup
import Data.VectorSpace
import Diagrams.Core (HasLinearMap, OrderedField, Point)
import Diagrams.Core.Names
import Diagrams.Core.Types
-- | Attach an atomic name to a diagram.
named :: ( IsName n
, HasLinearMap v, InnerSpace v, OrderedField (Scalar v), Semigroup m)
=> n -> QDiagram b v m -> QDiagram b v m
named = nameSub mkSubdiagram
-- | Attach an atomic name to a certain point (which may be computed
-- from the given diagram), treated as a subdiagram with no content
-- and a point envelope.
namePoint :: ( IsName n
, HasLinearMap v, InnerSpace v, OrderedField (Scalar v), Semigroup m)
=> (QDiagram b v m -> Point v) -> n -> QDiagram b v m -> QDiagram b v m
namePoint p = nameSub (subPoint . p)