Update of /cvsroot/htoolkit/gio/src/Graphics/UI/GIO
In directory sc8-pr-cvs1:/tmp/cvs-serv32685/src/Graphics/UI/GIO
Modified Files:
Types.hs
Log Message:
The Vector data type was unused and now is removed.
Index: Types.hs
===================================================================
RCS file: /cvsroot/htoolkit/gio/src/Graphics/UI/GIO/Types.hs,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** Types.hs 8 Jun 2003 19:42:13 -0000 1.12
--- Types.hs 2 Jul 2003 17:50:47 -0000 1.13
***************
*** 1,8 ****
-----------------------------------------------------------------------------------------
{-| Module : Types
! Copyright : (c) Daan Leijen 2003
License : BSD-style
! Maintainer : da...@cs...
Stability : provisional
Portability : portable
--- 1,8 ----
-----------------------------------------------------------------------------------------
{-| Module : Types
! Copyright : (c) Krasimir Angelov 2003
License : BSD-style
! Maintainer : ka2...@ya...
Stability : provisional
Portability : portable
***************
*** 17,38 ****
Size(..), sz
, sizeEncloses
-- ** Point
, Point(..), pt
- , pointFromVec
, pointMove
!
! -- ** Vector
! , Vector(..), vc
! , vecNegate, vecFromPoint
-- ** Rectangle
, Rect(..)
- , rectMoveTo, rectStretchTo
- , rectMove
- , rectUnion
- , rectSect
- , disjointRects
- , rectsDiff
-- *** Construction
--- 17,29 ----
Size(..), sz
, sizeEncloses
+ , maxSize, addh, addv, sizeDistance
-- ** Point
, Point(..), pt
, pointMove
! , pointAdd, pointSub, pointScale
-- ** Rectangle
, Rect(..)
-- *** Construction
***************
*** 40,49 ****
, rectAt
, rectOfSize
-- *** Access
, topLeft, topRight, bottomLeft, bottomRight
! , rectSize, rectIsEmpty, pointInRect, pointToRect
! , centralPoint, centralRect
!
-- * Events
--- 31,50 ----
, rectAt
, rectOfSize
+ , pointToRect
-- *** Access
, topLeft, topRight, bottomLeft, bottomRight
! , rectSize
!
! -- *** Calculations
! , rectMove, rectMoveTo, rectStretchTo
! , rectUnion
! , rectSect
! , disjointRects
! , rectsDiff
! , centralPoint
! , centralRect
! , rectIsEmpty
! , pointInRect
-- * Events
|