1999-12-16 04:25:11 -08:00
|
|
|
(*************************************************************************)
|
|
|
|
(* *)
|
|
|
|
(* Objective Caml LablTk library *)
|
|
|
|
(* *)
|
|
|
|
(* Jacques Garrigue, Kyoto University RIMS *)
|
|
|
|
(* *)
|
|
|
|
(* Copyright 1999 Institut National de Recherche en Informatique et *)
|
|
|
|
(* en Automatique and Kyoto University. All rights reserved. *)
|
|
|
|
(* This file is distributed under the terms of the GNU Library *)
|
|
|
|
(* General Public License. *)
|
|
|
|
(* *)
|
|
|
|
(*************************************************************************)
|
|
|
|
|
1999-11-30 06:59:39 -08:00
|
|
|
(* $Id$ *)
|
|
|
|
|
2000-06-07 00:12:46 -07:00
|
|
|
class ['a] history :
|
|
|
|
unit ->
|
|
|
|
object
|
|
|
|
val mutable count : int
|
|
|
|
val mutable history : 'a list
|
|
|
|
method add : 'a -> unit
|
|
|
|
method empty : bool
|
|
|
|
method next : 'a
|
|
|
|
method previous : 'a
|
|
|
|
end
|
|
|
|
|
1999-11-30 06:59:39 -08:00
|
|
|
(* toplevel shell *)
|
|
|
|
|
|
|
|
class shell :
|
|
|
|
textw:Widget.text Widget.widget -> prog:string ->
|
2000-06-07 00:12:46 -07:00
|
|
|
args:string array -> env:string array -> history:string history ->
|
1999-11-30 06:59:39 -08:00
|
|
|
object
|
|
|
|
method alive : bool
|
|
|
|
method kill : unit
|
|
|
|
method interrupt : unit
|
|
|
|
method insert : string -> unit
|
|
|
|
method send : string -> unit
|
|
|
|
method history : [`next|`previous] -> unit
|
|
|
|
end
|
|
|
|
|
|
|
|
val kill_all : unit -> unit
|
|
|
|
val get_all : unit -> (string * shell) list
|
2000-03-03 01:38:43 -08:00
|
|
|
val warnings : string ref
|
1999-11-30 06:59:39 -08:00
|
|
|
|
|
|
|
val f : prog:string -> title:string -> unit
|