Changeset 12755

Show
Ignore:
Timestamp:
29.10.2009 19:07:54 (3 weeks ago)
Author:
raider
Message:

equalize naming scheme of Gtk and HTk files.

Location:
trunk/GUI
Files:
6 modified
2 moved

Legend:

Unmodified
Added
Removed
  • trunk/GUI/GenericATP.hs

    r12754 r12755  
    33Module      :  $Header$ 
    44Description :  Generic Prover GUI. 
    5 Copyright   :  (c) Thiemo Wiedemeyer, Uni Bremen 2006 
     5Copyright   :  (c) Thiemo Wiedemeyer, Uni Bremen 2009 
    66License     :  similar to LGPL, see HetCATS/LICENSE.txt or LIZENZ.txt 
    77 
     
    1616 
    1717import Interfaces.GenericATPState 
    18  
    19 import Proofs.BatchProcessing 
    2018 
    2119import Logic.Prover 
  • trunk/GUI/GraphMenu.hs

    r12744 r12755  
    223223                 -> IO [GlobalMenu] 
    224224createGlobalMenu 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 
    228231 do 
    229232 ost <- readIORef $ intState gInfo 
  • trunk/GUI/GraphTypes.hs

    r12493 r12755  
    2626 
    2727import GUI.GraphAbstraction(GraphInfo, initGraph) 
    28 import GUI.ProofManagement (GUIMVar) 
     28import GUI.HTkProverGUI (GUIMVar) 
    2929import GUI.UDGUtils 
    3030 
  • trunk/GUI/GtkConsistencyChecker.hs

    r12754 r12755  
    22Module      :  $Header$ 
    33Description :  Gtk GUI for the consistency checker 
    4 Copyright   :  (c) Thiemo Wiedemeyer, Uni Bremen 2008 
     4Copyright   :  (c) Thiemo Wiedemeyer, Uni Bremen 2009 
    55License     :  similar to LGPL, see HetCATS/LICENSE.txt or LIZENZ.txt 
    66 
  • trunk/GUI/GtkGenericATP.hs

    r12754 r12755  
    22Module      :  $Header$ 
    33Description :  Gtk Generic Prover GUI. 
    4 Copyright   :  (c) Thiemo Wiedemeyer, Uni Bremen 2006 
     4Copyright   :  (c) Thiemo Wiedemeyer, Uni Bremen 2009 
    55License     :  similar to LGPL, see HetCATS/LICENSE.txt or LIZENZ.txt 
    66 
  • trunk/GUI/HTkProofDetails.hs

    r12661 r12755  
    1212-} 
    1313 
    14 module GUI.ProofDetails (doShowProofDetails) where 
     14module GUI.HTkProofDetails (doShowProofDetails) where 
    1515 
    1616import qualified Common.Doc as Pretty 
  • trunk/GUI/HTkProverGUI.hs

    r12430 r12755  
    1313-} 
    1414 
    15 module GUI.ProofManagement (proofManagementGUI,GUIMVar) where 
     15module GUI.HTkProverGUI (proofManagementGUI,GUIMVar) where 
    1616 
    1717import Common.AS_Annotation as AS_Anno 
     
    3333import GUI.HTkUtils hiding 
    3434  (createTextSaveDisplay, displayTheoryWithWarning) 
    35 import GUI.ProofDetails 
     35import GUI.HTkProofDetails 
    3636 
    3737import Proofs.AbstractState 
  • trunk/GUI/ProverGUI.hs

    r12478 r12755  
    2727-- #elif defined UNI_PACKAGE 
    2828import Control.Concurrent 
    29 import GUI.ProofManagement 
     29import GUI.HTkProverGUI 
    3030-- #endif 
    3131