Changeset 12755
- Timestamp:
- 29.10.2009 19:07:54 (3 weeks ago)
- Location:
- trunk/GUI
- Files:
-
- 6 modified
- 2 moved
-
GenericATP.hs (modified) (2 diffs)
-
GraphMenu.hs (modified) (1 diff)
-
GraphTypes.hs (modified) (1 diff)
-
GtkConsistencyChecker.hs (modified) (1 diff)
-
GtkGenericATP.hs (modified) (1 diff)
-
HTkProofDetails.hs (moved) (moved from trunk/GUI/ProofDetails.hs) (1 diff)
-
HTkProverGUI.hs (moved) (moved from trunk/GUI/ProofManagement.hs) (2 diffs)
-
ProverGUI.hs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/GUI/GenericATP.hs
r12754 r12755 3 3 Module : $Header$ 4 4 Description : Generic Prover GUI. 5 Copyright : (c) Thiemo Wiedemeyer, Uni Bremen 200 65 Copyright : (c) Thiemo Wiedemeyer, Uni Bremen 2009 6 6 License : similar to LGPL, see HetCATS/LICENSE.txt or LIZENZ.txt 7 7 … … 16 16 17 17 import Interfaces.GenericATPState 18 19 import Proofs.BatchProcessing20 18 21 19 import Logic.Prover -
trunk/GUI/GraphMenu.hs
r12744 r12755 223 223 -> IO [GlobalMenu] 224 224 createGlobalMenu gInfo@(GInfo { hetcatsOpts = opts 225 , graphInfo = gi 226 , libName = ln }) 227 showLib deselectEdgeTypes = 225 , libName = ln 226 #ifdef GTKGLADE 227 , graphInfo = gi}) showLib deselectEdgeTypes = 228 #else 229 }) showLib _ = 230 #endif 228 231 do 229 232 ost <- readIORef $ intState gInfo -
trunk/GUI/GraphTypes.hs
r12493 r12755 26 26 27 27 import GUI.GraphAbstraction(GraphInfo, initGraph) 28 import GUI. ProofManagement(GUIMVar)28 import GUI.HTkProverGUI (GUIMVar) 29 29 import GUI.UDGUtils 30 30 -
trunk/GUI/GtkConsistencyChecker.hs
r12754 r12755 2 2 Module : $Header$ 3 3 Description : Gtk GUI for the consistency checker 4 Copyright : (c) Thiemo Wiedemeyer, Uni Bremen 200 84 Copyright : (c) Thiemo Wiedemeyer, Uni Bremen 2009 5 5 License : similar to LGPL, see HetCATS/LICENSE.txt or LIZENZ.txt 6 6 -
trunk/GUI/GtkGenericATP.hs
r12754 r12755 2 2 Module : $Header$ 3 3 Description : Gtk Generic Prover GUI. 4 Copyright : (c) Thiemo Wiedemeyer, Uni Bremen 200 64 Copyright : (c) Thiemo Wiedemeyer, Uni Bremen 2009 5 5 License : similar to LGPL, see HetCATS/LICENSE.txt or LIZENZ.txt 6 6 -
trunk/GUI/HTkProofDetails.hs
r12661 r12755 12 12 -} 13 13 14 module GUI. ProofDetails (doShowProofDetails) where14 module GUI.HTkProofDetails (doShowProofDetails) where 15 15 16 16 import qualified Common.Doc as Pretty -
trunk/GUI/HTkProverGUI.hs
r12430 r12755 13 13 -} 14 14 15 module GUI. ProofManagement(proofManagementGUI,GUIMVar) where15 module GUI.HTkProverGUI (proofManagementGUI,GUIMVar) where 16 16 17 17 import Common.AS_Annotation as AS_Anno … … 33 33 import GUI.HTkUtils hiding 34 34 (createTextSaveDisplay, displayTheoryWithWarning) 35 import GUI. ProofDetails35 import GUI.HTkProofDetails 36 36 37 37 import Proofs.AbstractState -
trunk/GUI/ProverGUI.hs
r12478 r12755 27 27 -- #elif defined UNI_PACKAGE 28 28 import Control.Concurrent 29 import GUI. ProofManagement29 import GUI.HTkProverGUI 30 30 -- #endif 31 31