ShowGraph.hs revision 0193c86704431f83731015a77cb613d67ae4e3c2
{- |
Module : $Header$
Copyright : (c) Uni Bremen 2002-2005
License : similar to LGPL, see HetCATS/LICENSE.txt or LIZENZ.txt
Maintainer : maeder@tzi.de
Stability : provisional
Portability : non-portable (Logic)
display the final graph
-}
module GUI.ShowGraph
(showGraph)
where
import Driver.Options
import Syntax.AS_Library(LIB_NAME)
import Static.DevGraph
import GUI.AbstractGraphView
import GUI.GraphTypes
import GUI.GraphLogic(hideNodes)
import InfoBus
import Events
import Destructible
import DialogWin (useHTk)
showGraph :: FilePath -> HetcatsOpts ->
Maybe (LIB_NAME, -- filename
LibEnv -- DGraphs for imported modules
) -> IO ()
showGraph file opts env = case env of
Just (ln, libenv) ->
showGraphAux file opts ( \ gm -> convertGraph gm ln libenv opts
"development graph")
Nothing -> putIfVerbose opts 1 $
"Error: Basic Analysis is neccessary to display "
++ "graphs in a graphical window"
showGraphAux :: FilePath -> HetcatsOpts
-> (GInfo -> IO (Descr, GraphInfo, ConversionMaps))
-> IO ()
showGraphAux file opts convFct = do
putIfVerbose opts 2 $ "Trying to display " ++ file
++ " in a graphical window"
putIfVerbose opts 3 "Initializing Converter"
(gInfo,wishInst) <- initializeConverter
useHTk -- All messages are displayed in TK dialog windows
-- from this point on
putIfVerbose opts 3 "Converting Graph"
(gid, gv, _cmaps) <- convFct gInfo
redisplay gid gv
hideNodes gInfo True
redisplay gid gv
graph <- get_graphid gid gv
sync(destroyed graph)
destroy wishInst