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-04-19 19:45:44 -07:00
|
|
|
open Widget
|
|
|
|
|
1999-11-30 06:59:39 -08:00
|
|
|
val formatted :
|
|
|
|
title:string ->
|
2000-04-19 19:45:44 -07:00
|
|
|
?on:frame widget ->
|
2000-03-14 21:51:26 -08:00
|
|
|
?ppf:Format.formatter ->
|
1999-11-30 06:59:39 -08:00
|
|
|
?width:int ->
|
|
|
|
?maxheight:int ->
|
|
|
|
?minheight:int ->
|
2000-04-19 19:45:44 -07:00
|
|
|
unit -> any widget * text widget * (unit -> unit)
|
1999-11-30 06:59:39 -08:00
|
|
|
|
|
|
|
val ask :
|
2000-04-19 19:45:44 -07:00
|
|
|
title:string -> ?master:toplevel widget ->
|
2001-10-02 02:27:47 -07:00
|
|
|
?no:bool -> ?cancel:bool -> string -> [`cancel|`no|`yes]
|