Changeset 12756
- Timestamp:
- 29.10.2009 19:40:08 (3 weeks ago)
- Files:
-
- 1 modified
-
trunk/GUI.hs (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/GUI.hs
r10620 r12756 2 2 Module : $Id$ 3 3 Description : graphical user interface modules 4 Copyright : (c) Uni Bremen 2005-200 74 Copyright : (c) Uni Bremen 2005-2009 5 5 License : similar to LGPL, see HetCATS/LICENSE.txt or LIZENZ.txt 6 6 … … 18 18 "GUI.AbstractGraphView" is a graph interface, based on the Workbench 19 19 encapsulation of uDraw(Graph). Provides additional functions 20 for hiding and redisplaying (groups of) nodes and edges. 21 22 "GUI.ConsistencyChecker" provides generic GUI for consistency checker. Based 23 upon "GUI.GenericATP" GUI. 20 for hiding and redisplaying (groups of) nodes and edges. (Obsolete, use 21 GraphAbstraction instead) 24 22 25 23 "GUI.ConsoleUtils" are similar utilities for using without "HTk" (only 26 24 console). 27 25 28 "GUI.DGTranslations" provides funtions to display the logic graph. 26 "GUI.GenericATP" is a generic graphical interface for automatic 27 theorem provers. Decides between Gtk and HTk implementation. 29 28 30 "GUI.GenericATP" is a generic graphical interface for automatic 31 theorem provers. 32 33 "GUI.GenericATPState" provides data structures and initialising functions for 34 prover state and configurations. 35 36 "GUI.GraphAbstraction" provides an interface to the uDrawGraph 29 "GUI.GraphAbstraction" provides an interface to uDrawGraph. 37 30 38 31 "GUI.GraphDisplay" provides functions to display a DevGraph in a new window. … … 41 34 "GUI.GraphMenu" 42 35 43 "GUI.GraphMenu" creates all the menu functions for the File and the Edit menu of the uDrawGraph window. 36 "GUI.GraphMenu" creates the File and the Edit menu of uDrawGraph, as well as the 37 local node and edge menus and types. 44 38 45 39 "GUI.GraphTypes" defines the types used in "GUI.GraphDisplay", "GUI.GraphLogic" 46 40 and "GUI.GraphMenu". 47 41 48 "GUI.History" provides a history of commands in proof-script format. 42 "GUI.GtkConsistencyChecker" gui for checking consistency. 43 44 "GUI.GtkGenericATP" gtk version of generic prove gui. 45 46 "GUI.GtkLinkTypeChoice" small window letting the user select the link types that 47 should be displayed or hidden. 48 49 "GUI.GtkProverGUI" prover gui implementation in gtk. 50 51 "GUI.GtkUtils" a bunch of utility functions for use in and outside of gtk. 52 53 "GUI.HTkGenericATP" htk version of generic prove gui. 54 55 "GUI.HTkProofDetails" sets an additional window used by "GUI.ProverGUI" for 56 displaying and saving proof details (prover output, tactic script, proof tree). 57 58 "GUI.HTkProverGUI" is a goal management GUI for the structured level. 49 59 50 60 "GUI.HTkUtils" provides some utilities on top of "HTk". 51 61 52 "GUI.PrintUtils" are pretty printing functions used by "GUI.GenericATP". 53 54 "GUI.ProofDetails" sets an additional window used by "GUI.ProofManagement" for 55 displaying and saving proof details (prover output, tactic script, proof tree). 56 57 "GUI.ProofManagement" is a goal management GUI for the structured level. 62 "GUI.ProverGUI" is a goal management GUI for the structured level. Decides 63 between Gtk and HTk implementation. 58 64 59 65 "GUI.ShowGraph" displays the final graph. … … 65 71 "GUI.Taxonomy" displays a subsort relation (taxonomy). 66 72 67 "GUI.Utils" are either "GUI.HTkUtils" or "GUI.ConsoleUtils". 73 "GUI.Utils" are either "GUI.HTkUtils", "GUI.GtkUtils" or "GUI.ConsoleUtils". 74 75 "GUI.UDGUtils" just imports and exports uDrawGraph modules. 68 76 -} 69 77