Blame browser/mytypes.mli

Packit bd2e5d
(*************************************************************************)
Packit bd2e5d
(*                                                                       *)
Packit bd2e5d
(*                         OCaml LablTk library                          *)
Packit bd2e5d
(*                                                                       *)
Packit bd2e5d
(*            Jacques Garrigue, Kyoto University RIMS                    *)
Packit bd2e5d
(*                                                                       *)
Packit bd2e5d
(*   Copyright 1999 Institut National de Recherche en Informatique et    *)
Packit bd2e5d
(*   en Automatique and Kyoto University.  All rights reserved.          *)
Packit bd2e5d
(*   This file is distributed under the terms of the GNU Library         *)
Packit bd2e5d
(*   General Public License, with the special exception on linking       *)
Packit bd2e5d
(*   described in file ../../../LICENSE.                                 *)
Packit bd2e5d
(*                                                                       *)
Packit bd2e5d
(*************************************************************************)
Packit bd2e5d
Packit bd2e5d
(* $Id$ *)
Packit bd2e5d
Packit bd2e5d
open Widget
Packit bd2e5d
Packit bd2e5d
type edit_window =
Packit bd2e5d
  { mutable name: string;
Packit bd2e5d
    tw: text widget;
Packit bd2e5d
    frame: frame widget;
Packit bd2e5d
    modified: Textvariable.textVariable;
Packit bd2e5d
    mutable shell: (string * Shell.shell) option;
Packit bd2e5d
    mutable structure: Typedtree.structure_item list;
Packit bd2e5d
    mutable type_info: Stypes.annotation list;
Packit bd2e5d
    mutable signature: Types.signature;
Packit bd2e5d
    mutable psignature: Parsetree.signature;
Packit bd2e5d
    number: string }