/usr/lib/ocaml/obrowser/AXOToolkit.ml is in libobrowser-ocaml-dev 1.1.1+dfsg-1build3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 | (* Obrowser
* http://www.ocsigen.org
* Copyright (C) 2009
* Raphaël Proust
* Laboratoire PPS - CNRS Université Paris Diderot
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, with linking exception;
* either version 2.1 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*)
(* This module agregates usual constructions. If anything come out to be
* compatible with all of AXOWidgets' widgets, it can (and should) be moved there. *)
open JSOO
open AXOLang
let (@@) f g = fun x -> f (g x)
(** Empty widget : can be used for graphic purpose... There is no methods to change the content, it can only be stylised ! *)
class block_widget =
object
inherit AXOWidgets.common_wrap (AXOHtml.Low.div ())
inherit AXOWidgets.widget_plugin
end
(** BR & other "constants" : make childless nodes *)
class br =
object inherit AXOWidgets.common_wrap (AXOHtml.Low.br ()) end
class nbsp =
object inherit AXOWidgets.common_wrap (AXOJs.Node.element " ") end
(** Text *)
(* simple static text 'common' *)
let text t = new AXOWidgets.common_wrap (AXOJs.Node.text t)
(** text_widget : widgets with a text content that can be changed afterward *)
class text_widget_wrap txt obj_ =
object (self)
inherit AXOWidgets.common_wrap obj_
inherit AXOWidgets.widget_plugin
val mutable text = txt
method get_text = text
method set_text t =
text <- t ;
self#obj >>> AXOJs.Node.empty ;
self#obj >>> AXOJs.Node.append ( AXOJs.Node.text t ) ;
initializer self#obj >>> AXOJs.Node.append (AXOJs.Node.text txt)
end
class inline_widget_text txt =
object inherit text_widget_wrap txt (AXOHtml.Low.span ()) end
class block_widget_text txt =
object inherit text_widget_wrap txt (AXOHtml.Low.div ()) end
(** Classic containers : blocks, inline and vbox*)
class block_container =
object
inherit AXOWidgets.common_wrap (AXOHtml.Low.div ())
inherit AXOWidgets.container_plugin
end
class inline_container =
object
inherit AXOWidgets.common_wrap (AXOHtml.Low.span ())
inherit AXOWidgets.container_plugin
end
class vbox = (* a different implementation of generic_container inserting br's between elements *)
object ( self )
inherit AXOWidgets.common_wrap (AXOHtml.Low.div ())
inherit AXOWidgets.generic_container
val mutable content = []
method get_content = fst (List.split content)
method wipe_content = content <- [] ;
self#obj >>> AXOJs.Node.empty ;
method add_common ?before wi =
let br = new br in
match before with
| None ->
content <- (wi, br) :: (List.filter ( ((=) wi) @@ fst ) content) ;
self#obj >>> AXOJs.Node.append wi#obj ;
self#obj >>> AXOJs.Node.append br#obj ;
| Some wii ->
content <- LList.insert_after_ content (wi,br) ( ((=) wii) @@ fst ) ;
self#obj >>> AXOJs.Node.insert_before wi#obj wii#obj ;
self#obj >>> AXOJs.Node.insert_before wi#obj br#obj ;
method remove_common wi =
let ((wi,br),c) = LList.find_remove ( ((=) wi) @@ fst ) content in
content <- c ;
self#obj >>> AXOJs.Node.remove wi#obj ;
self#obj >>> AXOJs.Node.remove br#obj ;
end
(** Container with widget abilities (AKA stylish containers)*)
class widget_container_wrap obj_ =
object
inherit AXOWidgets.common_wrap obj_
inherit AXOWidgets.container_plugin
inherit AXOWidgets.widget_plugin
end
class block_widget_container =
object
inherit widget_container_wrap (AXOHtml.Low.div ())
end
class inline_widget_container =
object
inherit widget_container_wrap (AXOHtml.Low.div ())
end
class widget_vbox =
object
inherit vbox
inherit AXOWidgets.widget_plugin
end
(** Some buttons : image and text buttons... *)
(** simple text_widget with buttons capabilities *)
class inline_text_widget_button ?(activated = true) txt =
object
inherit text_widget_wrap txt (AXOHtml.Low.span ())
inherit AXOWidgets.widget_plugin
inherit AXOWidgets.button_plugin activated
end
(** text buttons that changes its content when clicked *)
class virtual cyclic_text_button_wrap activated hd_txt tl_txt obj_ =
let q =
let q = Queue.create () in
List.iter (fun t -> Queue.push t q) ( hd_txt :: tl_txt ) ;
q
in
let cycle () =
let res = Queue.pop q in
Queue.push res q ;
res
in
object (* OBOB proof *)
inherit text_widget_wrap (cycle ()) obj_ as t
inherit AXOWidgets.button_plugin activated as b
initializer
b # add_click_action (fun () -> t # set_text (cycle ()))
end
class cyclic_inline_text_button ?(activated = true) hd_txt tl_txt =
object
inherit cyclic_text_button_wrap
activated hd_txt tl_txt (AXOHtml.Low.span ())
end
(** image buttons *)
(* The lazyness prevents reloading at each cycle *)
class cyclic_img_button ?(activated = true) alt hd_srcs tl_srcs =
let c = new inline_container in
let q =
let q = Queue.create () in
List.iter
(fun src ->
Queue.push
(lazy (new AXOWidgets.common_wrap (AXOHtml.High.img ~src ~alt ())))
q
)
( hd_srcs :: tl_srcs ) ;
q
in
let cycle () =
let res = Queue.pop q in
Queue.push res q ;
c#wipe_content ;
c#add_common (Lazy.force res)
in
object (self)
method obj = c#obj
inherit AXOWidgets.button_plugin activated as b
inherit AXOWidgets.widget_plugin
initializer
cycle () ;
b # add_click_action ( fun () -> cycle () ) ;
end
class img_button ?(activated = true) ?(alt = "") src =
object
inherit AXOWidgets.common_wrap (AXOHtml.High.img ~src ~alt ())
inherit AXOWidgets.button_plugin activated
inherit AXOWidgets.widget_plugin
end
(** User input : select/text input (with auto updating)... *)
module On_input_change =
AXOEvents.Make
( struct
type v = string
let name = "onchange"
let name_modifier = Some "_for_input_"
let destruct obj =
obj >>> AXOEvents.get_target >>> get "value" >>> as_string
let default_value = None
end )
(* select input *)
class [ 'a ] select string_of_t t_of_string (value : 'a) alts =
object (self)
inherit AXOWidgets.common_wrap (AXOHtml.Low.select ())
inherit AXOWidgets.widget_plugin
inherit AXOWidgets.container_plugin
val mutable option_list = []
val mutable current = value
method get_value = current
method set_value v = self#set_attribute "value" (string_of_t v) ; current <- v
method private set_value_ s =
self#set_attribute "value" s ; current <- (t_of_string s)
method add_option value =
let child = new AXOWidgets.common_wrap
(AXOHtml.High.option (string_of_t value) )
in
option_list <- ( child, value ) :: option_list ;
self # add_common child ;
method private remove_by f =
let ( (child,_),new_option_list ) = LList.find_remove f option_list in
self # remove_common child ;
option_list <- new_option_list ;
method remove_option value =
self#remove_by (fun (_,v) -> v = value)
method set_editable b =
if b
then try self#set_attribute "diasbled" "disabled" with _ -> ()
else try self#remove_attribute "disabled" with _ -> ()
initializer
List.iter (fun v -> self#add_option v) ( value :: alts ) ;
self#set_attribute "value" (string_of_t value) ;
self#obj >>> On_input_change.bind (fun s -> self#set_value_ s)
end
class [ 'a ] auto_update_select string_of_t t_of_string (value : 'a) alts
name url args =
object (self)
inherit [ 'a ] select string_of_t t_of_string value alts as s
initializer
s#obj >>> On_input_change.bind
(fun v ->
AXOCom.alert_on_code
( AXOCom.http_post url
( (name, string_of_t (t_of_string v)) :: args) )
)
end
(* text input *)
class text_input value =
object (self)
inherit AXOWidgets.common_wrap
( AXOHtml.Low.input
~attrs:[("type", "text") ; ("value", value)]
()
)
inherit AXOWidgets.widget_plugin
val mutable v = value
method get_value = v
method set_value vv = self#set_attribute "value" vv ; v <- vv
initializer
self#obj >>> On_input_change.bind (fun sv -> self#set_value sv )
end
class [ 'a ] typed_text_input
?parse_error_color
?parse_error_message
?size
string_of_t t_of_string (value : 'a) =
object (self)
inherit AXOWidgets.common_wrap
( AXOHtml.Low.input
~attrs:(
LOption.optionnaly_add_to_list
[("type", "text") ; ("value", string_of_t value)]
(LOption.apply_on_opted
(fun s -> ("size",string_of_int s))
size
)
)
()
)
inherit AXOWidgets.widget_plugin
val mutable v = value
method get_value = v
method set_value vv = self#set_attribute "value" (string_of_t vv) ; v <- vv
initializer
self#obj >>> On_input_change.bind
(let bgcol =
ref (try self # get_style_property "background" with _ -> "")
in
fun sv ->
try
self # set_value (t_of_string sv) ;
self#set_style_property "background" !bgcol ;
with _ ->
self # set_value v ;
bgcol := (try self # get_style_property "background" with _ -> "") ;
LOption.cb_on_opted (self # set_style_property "background")
parse_error_color ;
LOption.cb_on_opted AXOJs.alert parse_error_message ;
)
end
(** Folding : a foldable block. *)
(* Arguments are
[?folded] (default to true) should the foldable start as folded
[?persistent_as_container] (default to false) should the foldable part be inserted in the persistent part or in a new container
[button] the button the fold/unfold action is to be binded to
[persistent] the part that never get folded (can be used for title...)
[foldable] the part that gets folded/unfolded when the button is clicked
*)
class block_foldable
?(folded = true)
?(persistent_as_container = false)
(button : AXOWidgets.generic_button )
(persistent : AXOWidgets.generic_container)
(foldable : AXOWidgets.generic_container)
=
let box =
if persistent_as_container
then persistent
else new block_container
in
object (self)
inherit AXOWidgets.common
method obj = box # obj
inherit AXOWidgets.widget_plugin
val mutable folded_ = folded
method get_persistent = persistent
method get_foldable = foldable
method private unfold =
box#add_common (foldable :> AXOWidgets.common) ;
method private fold =
box#remove_common (foldable :> AXOWidgets.common) ;
initializer
box#add_common
?before:(try Some (List.hd box#get_content) with Failure "hd" -> None)
(button :> AXOWidgets.common)
;
if persistent_as_container
then ()
else box#add_common (persistent :> AXOWidgets.common)
;
if folded then () else self#unfold ;
button # add_click_action
(fun () ->
(if folded_
then self#unfold
else self#fold
) ;
folded_ <- not folded_ ;
) ;
end
(** tree : a function to represent a foldable tree *)
(* Arguments are :
[?depth] (default to -1) the depth the tree is to be unfolded at startup (when negative, infinite)
[?persistent_as_container] (default to false) should the childrens be inserted in the parent node ?
[tree] the tree (of type AXOLang.LTree.tree) to be shown
[elements] a function that takes the current tree node, the current tree node's children and a boolean indicating the folded (true)/unfolded (false) state of the node and returning a 3-uple with (the folding/unfolding button, the node container, the node children's container) ; the node children's container will be populated with their own buttons and container
[container] where to place the resulting tree
*)
let foldable_tree ?(depth = (-1)) ?persistent_as_container
?(separators = ( fun _ _ _ -> None ))
tree elements container
=
let rec aux t l container d = (* the core function *)
let folded = d > depth in
let (but,com,kid) = elements t l folded in
List.iter
(fun { LTree.content = t ; LTree.children = l } ->
kid#add_common ?before:None
((aux t l kid (succ d)) :> AXOWidgets.common ))
l ;
let b = new block_foldable ~folded ?persistent_as_container but com kid in
LOption.cb_on_opted com#add_common (separators t l folded) ;
b
in aux (LTree.get_content tree) (LTree.get_children tree) container 0
(** Mask : makes a black semi-transparent fullsized panel. *)
class mask =
object (self)
inherit block_widget
initializer
self#set_attribute "style"
"position: fixed; right: 0px; top: 0px; width: 100%; \
height: 100%; background-color: black; opacity: .5;"
end
(** links *)
(* text link with widget capabilities *)
class link_widget ?href txt =
object (self)
inherit AXOWidgets.common_wrap
(AXOHtml.High.a ?href ~children:[AXOHtml.Low.string txt] ())
inherit AXOWidgets.widget_plugin
method set_href href = self#obj >>> AXOJs.Node.set_attribute "href" href
method get_href = self#obj >>> AXOJs.Node.get_attribute "href"
end
(* image link *)
class img_link ?href ~src ~alt =
object (self)
inherit AXOWidgets.common_wrap
(AXOHtml.High.a ?href
~children:[AXOHtml.High.img ~src ~alt ()]
()
)
inherit AXOWidgets.widget_plugin
method set_href href = self#obj >>> AXOJs.Node.set_attribute "href" href
method get_href = self#obj >>> AXOJs.Node.get_attribute "href"
end
(** popup : to make popup with content *)
class popup ?(background = "white") cont =
let m = new mask in
let x = new inline_text_widget_button "CLOSE" in
object (self) (*TODO: restrict access to the container part of self by forcing type in .mli *)
inherit block_widget_container as c
val mutable showed = false
method show =
if showed
then ()
else (
m#set_style_property "zIndex" (string_of_int (AXOJs.Misc.new_z_index ()));
AXOWidgets.body#add_common ( m :> AXOWidgets.common ) ;
c#set_style_property "zIndex" (string_of_int (AXOJs.Misc.new_z_index ()));
AXOWidgets.body#add_common ( self :> AXOWidgets.common ) ;
showed <- not showed ;
)
method hide =
if showed
then (
AXOWidgets.body#remove_common ( self :> AXOWidgets.common ) ;
AXOWidgets.body#remove_common ( m :> AXOWidgets.common ) ;
showed <- not showed ;
)
else ()
initializer
x#set_style_property "position"
(AXOWidgets.string_of_position AXOWidgets.Absolute) ;
x#set_style_property "right" "0px" ;
x#add_click_action (fun () -> self#hide) ;
c#set_style_property "background" background ;
c#set_style_property "padding" "2px" ;
c#add_common ( x :> AXOWidgets.common ) ;
c#add_common ( (new br) :> AXOWidgets.common ) ;
c#add_common ( cont :> AXOWidgets.common ) ;
end
(** ul, ol, li *)
class ul_widget_container =
object
inherit AXOWidgets.common_wrap (AXOHtml.Low.ul ())
inherit AXOWidgets.container_plugin
inherit AXOWidgets.widget_plugin
end
class li_widget_container =
object
inherit AXOWidgets.common_wrap (AXOHtml.Low.li ())
inherit AXOWidgets.container_plugin
inherit AXOWidgets.widget_plugin
end
(** movable : a movable structure (can be made into a window)
* /!\ slow when populated with lots of nodes
* *)
(* custom Events... *)
module Movable_move =
AXOEvents.Make
(struct
type v = int * int
let name = "onmousemove"
let name_modifier = Some "_for_movable_"
let destruct obj =
(obj >>> get "clientX" >>> as_int,
obj >>> get "clientY" >>> as_int)
let default_value = None
end)
module Movable_down =
AXOEvents.Make
(struct
type v = int * int
let name = "onmousedown"
let name_modifier = Some "_for_movable_"
let destruct obj =
(obj >>> get "clientX" >>> as_int,
obj >>> get "clientY" >>> as_int)
let default_value = None
end)
module Movable_up =
AXOEvents.Make
(struct
type v = int * int
let name = "onmouseup"
let name_modifier = Some "_for_movable_"
let destruct obj =
(obj >>> get "clientX" >>> as_int,
obj >>> get "clientY" >>> as_int)
let default_value = None
end)
(* the movable class. Arguments are :
[handle] where to bind the "grip, move and let go" mouse chain of event
[content] what to move
the handle and the content will be both placed into a container and moved together
*)
class movable handle content_ =
object
inherit block_widget_container as container
(* temporary values to remember the coordinates of the mouse when the move
* is initiated. *)
val mutable mx = 0
val mutable my = 0
initializer
(* First we make sure the container and the handle are ok *)
handle#obj >>> get "style" >>> set "cursor" (JSOO.string "move") ;
container#add_common (handle :> AXOWidgets.common) ;
container#add_common (content_ :> AXOWidgets.common) ;
container#set_style_property "position" (AXOWidgets.string_of_position AXOWidgets.Absolute) ;
container#set_style_property "border" "1px" ;
(* Then we define the handlers *)
let rec move_handler (x,y) =
let vx = x - mx and vy = y - my in
mx <- x ; my <- y ;
container#set_style_property "left"
(AXOWidgets.px_string
((container#get_style_property "offsetLeft" >>> int_of_string) + vx)
) ;
container#set_style_property "top"
(AXOWidgets.px_string
((container#get_style_property "offsetTop" >>> int_of_string) + vy)
) ;
and up_handler _ =
AXOJs.Node.window >>> Movable_move.unbind move_handler ;
AXOJs.Node.window >>> Movable_up.unbind up_handler ;
in
(* Then we bind the mousedown event *)
handle#obj >>> Movable_down.bind
(fun (sx,sy) ->
mx <- sx ; my <- sy ;
container#set_style_property "zIndex"
(string_of_int (AXOJs.Misc.new_z_index ())) ;
AXOJs.Node.window >>> Movable_move.bind move_handler ;
AXOJs.Node.window >>> Movable_up.bind up_handler
)
end
(*
(** Drop down *)
class drop_down_menu title items =
let button = new inline_text_widget_button title in
let foldable =
let f = new in
List.iter f#add_common items ;
f#set_style_property "position" (AXOWidgets.string_of_position AXOWidgets.Absolute) ;
f
in
object
inherit block_foldable button foldable persistent
end
*)
|