|
From: <kr_...@us...> - 2003-03-24 17:18:44
|
Update of /cvsroot/htoolkit/gio/src/Graphics/UI/GIO
In directory sc8-pr-cvs1:/tmp/cvs-serv32467/src/Graphics/UI/GIO
Modified Files:
Types.hs
Log Message:
Export the entire Port.Colors module instead of small subset of colors
Index: Types.hs
===================================================================
RCS file: /cvsroot/htoolkit/gio/src/Graphics/UI/GIO/Types.hs,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** Types.hs 31 Jan 2003 01:01:44 -0000 1.6
--- Types.hs 24 Mar 2003 17:18:37 -0000 1.7
***************
*** 57,70 ****
, KeyboardEvent(..), Key(..)
, keyboardKey, keyboardRepeat, keyModifiers
-- * Render
-- ** Colors
! , Color
! , rgbColor, colorRed, colorGreen, colorBlue
! , black, darkgrey, grey, lightgrey, white
! , red, green, blue
! , cyan, magenta, yellow
! , dialoggrey
-- ** Bitmaps
--- 57,68 ----
, KeyboardEvent(..), Key(..)
, keyboardKey, keyboardRepeat, keyModifiers
+
+ -- * Document interface
+ , DocumentInterface(..)
-- * Render
-- ** Colors
! , module Graphics.UI.Port.Colors
-- ** Bitmaps
***************
*** 108,112 ****
) where
! import Graphics.UI.Port.Types
import Control.Concurrent.MVar
import Control.Monad( when )
--- 106,111 ----
) where
! import Graphics.UI.Port.Types
! import Graphics.UI.Port.Colors
import Control.Concurrent.MVar
import Control.Monad( when )
|