11 import qualified PersistentDocument as PD
13 import Graphics.UI.WXCore hiding (Document)
18 data What = Everything | JustRules | JustNet
20 -- Generate textual description
21 genTextual :: (InfoKind n g, InfoKind e g) => IOOp g n e
22 genTextual doc state =
23 do mRes <- genTextualDialog state
24 pDoc <- getDocument state
25 inName <- PD.getFileName pDoc
28 Just (what, simp, wher, tool) ->
29 do let simpF = if simp then simplify else id
32 JustRules -> filterRules
34 net = filt . simpF $ doc2net doc
38 do w <- getNetworkFrame state
41 let filename = changeExt ".INblobs" ('-':show tool ++ ".net") $ fromMaybe "" inName
42 mf <- fileSaveDialog w
43 rememberCurrentDir overwritePrompt
45 [("Net Files", ["*.net"])]
49 Just fn -> writeFile fn . showRepresentation tool $ net
51 else -- print to screen
52 do logMessage "printing Net"
53 logMessage (showRepresentation tool net)
54 putStr $ showRepresentation tool net
55 where rememberCurrentDir = True
56 overwritePrompt = True
59 -- | Change file extension and suffix filename.
60 changeExt :: String -- ^ \".INblobs\"
61 -> String -- ^ \"-TOOL.net\"
62 -> String -- ^ file.INblobs
63 -> String -- ^ file-TOOL.net
64 changeExt old suffix = aux . span (/= '.')
66 aux (str,"") = str ++ suffix
68 | str2 == old = str1 ++ suffix
69 | otherwise = let (str3,str4) = span (/='.') (tail str2)
70 in aux (str1 ++ '.':str3, str4)
72 genTextualDialog :: State g n e -> IO (Maybe (What, Bool, Bool, Representation))
73 genTextualDialog state =
74 do theFrame <- getNetworkFrame state
76 dialog <- dialog theFrame
77 [ text := "Generate Textual Description"
82 let infoWhat = [ ("interaction system and net", Everything)
83 , ("interaction system only", JustRules)
84 , ("interaction net only",JustNet)
86 (labelsWhat,dataWhat) = unzip infoWhat
88 rWhat <- radioBox p Vertical labelsWhat
92 let infoSimp = [ ("simplified", True)
93 , ("not simplified", False)
95 (labelsSimp,dataSimp) = unzip infoSimp
97 rSimp <- radioBox p Vertical labelsSimp
101 let infoWhere = [ ("save to file", True)
102 , ("print to screen", False)
104 (labelsWhere,dataWhere) = unzip infoWhere
106 rWhere <- radioBox p Vertical labelsWhere
109 let infoTool = [ ("AMIN", AMIN)
112 (labelsTool,dataTool) = unzip infoTool
114 rTool <- radioBox p Vertical labelsTool
115 [ text := "Output Tool :"
118 ok <- button p [ text := "Ok" ]
120 set dialog [ layout := container p $
122 column 5 [ label "Generate textual description"
127 , hfloatCentre $ widget ok
131 showModal dialog $ \stop ->
132 do set ok [on command :=
133 do iWhat <- get rWhat selection
134 iSimp <- get rSimp selection
135 iWhere <- get rWhere selection
136 iTool <- get rTool selection
138 stop (Just ( dataWhat !! iWhat
140 , dataWhere !! iWhere