blob: d0829bd2b239fe9fa0c5e2ae03c5cb212d08db98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
(***********************************************************************)
(* *)
(* MLTk, Tcl/Tk interface of OCaml *)
(* *)
(* Francois Rouaix, Francois Pessaux, Jun Furuse and Pierre Weis *)
(* projet Cristal, INRIA Rocquencourt *)
(* Jacques Garrigue, Kyoto University RIMS *)
(* *)
(* Copyright 2002 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, with the special exception on linking *)
(* described in file LICENSE found in the OCaml source tree. *)
(* *)
(***********************************************************************)
open Camltk;;
let win = opentk();;
let cvs = Canvas.create win [];;
let t = Label.create cvs [Text "File name"];;
let b =
Button.create cvs
[Text "Save";
Command
(function _ ->
let s =
getSaveFile
[Title "SAVE FILE TEST";
DefaultExtension ".foo";
FileTypes [ { typename= "just test";
extensions= [".foo"; ".test"];
mactypes= ["FOOO"; "BARR"] } ];
InitialDir Filename.temp_dir_name;
InitialFile "hogehoge" ] in
Label.configure t [Text s])];;
let bb =
Button.create cvs
[Text "Open";
Command
(function _ ->
let s = getOpenFile [] in
Label.configure t [Text s])];;
let q =
Button.create cvs
[Text "Quit";
Command
(function _ -> closeTk (); exit 0)];;
pack [cvs; q; bb; b; t] [];;
mainLoop ();;
|