Browse thread
[Caml-list] Osiris 1.0 Released
- Warp
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
| Date: | -- (:) |
| From: | Warp <warplayer@f...> |
| Subject: | [Caml-list] Osiris 1.0 Released |
Hi all !
Osiris is a set of very-easy-to-use Class Wrappers for the Win32 Controls
API.
The main goal of Osiris is to enable RAD (Rapid Application Developpement)
of user interfaces.
You can now get sources & precompiled binaries at http://warplayer.free.fr
Sample :
(* file : sample.ml *)
open Osiris;;
let my_wnd = new_window() in
my_wnd#caption "My Window Caption";
let lpan = new_panel my_wnd#container in
lpan#align AlLeft;
let lbutton = new_button lpan#container in
lbutton#align AlCenter;
lbutton#caption "Click Me !";
lbutton#on_click (fun x -> message_box (x#get_caption^" Clicked"));
my_wnd#state Normal;
my_wnd#update;
while my_wnd#process do
()
done
Requirements :
- OCaml 3.04 - for dynlink purpose
- Windows 95/98/NT/2K/Me/...
- A recent version of the Win32 OCaml API by Harry Chomsky ( can be found at
www.chomsky.net )
(dynamic binaries are included in the current distribution)
Nicolas Cannasse
-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners