package oxbow

  1. Overview
  2. Docs
Dynamic window manager for the river Wayland compositor

Install

dune-project
 Dependency

Authors

Maintainers

Sources

v0.1.0.tar.gz
md5=a637acaa0e19046cd65fff733874eb97
sha512=76230cbecd7510de7a05b5d1f335915ef7b6c4aa557d8dbfd23591606618d2cfa25082d17b93f2f4b53a118d1cbf6a80e4ad51cf0f099b4921fb83d6df0c9801

doc/src/oxbow.state/window.ml.html

Source file window.ml

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
open! Oxbow_core
include Types.Window

module Lifecycle = struct
  include Types.Window.Lifecycle

  let to_string = function
    | New -> "new"
    | Active -> "active"
    | Closing -> "closing"
  ;;
end

let next_id = Atomic.make 1

let fresh_id () =
  let id = Atomic.get next_id in
  Atomic.incr next_id;
  id
;;

let create (output : Types.Output.t option) scroll_width river_window : t =
  { obj = river_window
  ; node = Emit.get_node river_window
  ; lifecycle = New
  ; id = fresh_id ()
  ; app_id = None
  ; title = None
  ; identifier = None
  ; unreliable_pid = None
  ; parent = None
  ; float_seed_pending = false
  ; close_pending = false
  ; decoration_hint = None
  ; presentation_hint = None
  ; defense = Idle
  ; geom = { x = 0l; y = 0l; w = 0l; h = 0l }
  ; float_rel = None
  ; clip = None
  ; offscreen = false
  ; size_hints = { min_w = None; max_w = None; min_h = None; max_h = None }
  ; tags =
      (match output with
       | None -> Tag.Set.singleton 1
       | Some o -> o.tags.selected)
  ; output
  ; output_before_evac = None
  ; sticky = Off
  ; swallow = { role = Auto; relation = None }
  ; labels = []
  ; is_fixed = false
  ; is_urgent = false
  ; is_captured = false
  ; is_fake_fullscreen = false
  ; scrolling = { consumes = false; width = scroll_width }
  ; scratchpad = { name = None; stashed = false }
  ; committed =
      { proposed = None
      ; in_flight = []
      ; fullscreen_on = None
      ; caps = None
      ; tiled_edges = None
      ; ssd = None
      ; informed_maximized = None
      ; informed_fullscreen = None
      ; informed_resizing = None
      ; borders = None
      ; shown = None
      ; position = None
      ; clip_box = None
      ; content_clip_box = None
      }
  ; presentation = Presentation.Tiled
  ; requests = []
  }
;;

let destroy w =
  match w.lifecycle with
  | Closing -> Emit.destroy_window ~window:w.obj ~node:w.node
  | _ ->
    Log.warn
    @@ fun m ->
    m "destroy refused: Window is %s not closing" (Lifecycle.to_string w.lifecycle)
;;

let set_position w ~x ~y = w.geom <- { w.geom with x; y }
let floor_geom (g : int32 Rect.t) = { g with w = max g.w 0l; h = max g.h 0l }
let set_geom w g = w.geom <- floor_geom g
let set_defense w d = w.defense <- d
let set_proposed w dims = w.committed.proposed <- dims
let push_in_flight w dims = w.committed.in_flight <- w.committed.in_flight @ [ dims ]

let consume_in_flight w ~width ~height =
  let rec from_newest_match = function
    | [] -> None
    | (pw, ph) :: rest as l ->
      (match from_newest_match rest with
       | Some _ as found -> found
       | None -> if pw = width && ph = height then Some l else None)
  in
  match from_newest_match w.committed.in_flight with
  | Some keep ->
    w.committed.in_flight <- keep;
    true
  | None ->
    w.committed.in_flight <- [];
    false
;;

let set_fullscreen_on w output = w.committed.fullscreen_on <- output
let set_clip w clip = w.clip <- clip

let set_clip_within w ~tag ~bw ~bound =
  let dims = Rect.to_int w.geom in
  let visual = Rect.inset ~by:(-bw) dims in
  match Option.bind bound (Rect.intersect visual) with
  | None -> set_clip w None
  | Some i when i = visual -> set_clip w None
  | Some i -> set_clip w @@ Some (tag, { i with x = i.x - dims.x; y = i.y - dims.y })
;;

let set_offscreen w v = w.offscreen <- v

let reject_dimensions w ~width ~height =
  match w.defense with
  | Bounce (bw, bh) when bw = width && bh = height -> ()
  | Hold (hw, hh) when hw = width && hh = height -> ()
  | Idle | Bounce _ | Hold _ ->
    w.defense <- Bounce (width, height);
    Schedule.manage ()
;;

let tag_layout (o : Types.Output.t) = Tag.Table.find o.tag_data o.tags.selected
let on_tags w ~tags = Tag.Set.intersects tags w.tags

let occupied_tags ?except windows =
  List.fold_left
    (fun s w ->
       match except with
       | Some w' when w' == w -> s
       | Some _ | None -> if not w.scratchpad.stashed then Tag.Set.union s w.tags else s)
    Tag.Set.empty
    windows
;;

let tag_visible w =
  if w.scratchpad.stashed
  then false
  else (
    match w.output, w.swallow.relation with
    | None, _ | _, Some (Swallowed_by _) -> false
    | Some o, _ ->
      if o.overview.enabled
      then true
      else (
        match w.sticky with
        | Off -> on_tags ~tags:o.tags.selected w
        | All -> true
        | Occupied ->
          occupied_tags ~except:w o.wm_stack |> Tag.Set.intersects o.tags.selected))
;;

let is_tiled w = w.presentation = Tiled

let is_tiled_or_floating w =
  match w.presentation with
  | Tiled | Floating -> true
  | Maximized _ | Fullscreen _ -> false
;;

let scroll_clipped w =
  match w.clip, w.output with
  | Some (`Scrolling, _), Some o -> (tag_layout o).layout = Scrolling && is_tiled w
  | _ -> false
;;

let floats w (o : Types.Output.t) =
  match w.presentation with
  | Floating -> true
  | Tiled -> (tag_layout o).layout = Floating
  | Maximized _ | Fullscreen _ -> false
;;

let is_tiled_on_tag w = tag_visible w && is_tiled w

let swallowing w =
  match w.swallow.relation with
  | Some (Swallowing _) -> true
  | None | Some (Swallowed_by _) -> false
;;

let can_swallow w =
  match w.swallow.role, w.swallow.relation with
  | Terminal, None -> true
  | (Auto | Disabled), None
  | (Auto | Terminal | Disabled), Some (Swallowing _ | Swallowed_by _) -> false
;;

let fit_to_output w =
  match w.output with
  | None -> ()
  | Some o ->
    let bw =
      match w.committed.borders with
      | None -> 0
      | Some b -> Int32.to_int b.width
    in
    let usable = Rect.(inset ~by:bw o.usable |> to_int32) in
    let clamp_axis ~len ~pos ~span ~lo =
      if len > span then lo else Int32.(max lo pos |> (sub span len |> add lo |> min))
    in
    let new_x = clamp_axis ~len:w.geom.w ~pos:w.geom.x ~span:usable.w ~lo:usable.x in
    let new_y = clamp_axis ~len:w.geom.h ~pos:w.geom.y ~span:usable.h ~lo:usable.y in
    if new_x <> w.geom.x || new_y <> w.geom.y then set_position w ~x:new_x ~y:new_y
;;

let remember_float w =
  match w.output with
  | Some o when o.overview.enabled -> ()
  | None -> ()
  | Some o ->
    let rel_x = Int32.sub w.geom.x o.geom.x in
    let rel_y = Int32.sub w.geom.y o.geom.y in
    w.float_rel <- Some { w.geom with x = rel_x; y = rel_y }
;;

let place_centered w ~(usable : int32 Rect.t) ~(sized : int32 Rect.t) =
  let spare_w = Int32.(sub usable.w sized.w |> max 0l) in
  let spare_h = Int32.(sub usable.h sized.h |> max 0l) in
  let g =
    Rect.(
      Int32.
        { x = div spare_w 2l |> add usable.x
        ; y = div spare_h 2l |> add usable.y
        ; w = sized.w
        ; h = sized.h
        })
  in
  set_geom w g;
  remember_float w
;;

let tile w =
  if w.presentation = Floating then remember_float w;
  w.presentation <- Tiled
;;

let clamp_dim ~min_v ~max_v v =
  v
  |> Option.fold ~none:Fun.id ~some:Int32.max min_v
  |> Option.fold ~none:Fun.id ~some:Int32.min max_v
;;

let clamp w (g : int Rect.t) =
  let h = w.size_hints in
  Rect.(
    Int32.
      { x = of_int g.x
      ; y = of_int g.y
      ; w = of_int g.w |> clamp_dim ~min_v:h.min_w ~max_v:h.max_w
      ; h = of_int g.h |> clamp_dim ~min_v:h.min_h ~max_v:h.max_h
      })
;;

let clamp32 w (g : int32 Rect.t) =
  let h = w.size_hints in
  Rect.
    { x = g.x
    ; y = g.y
    ; w = clamp_dim ~min_v:h.min_w ~max_v:h.max_w g.w
    ; h = clamp_dim ~min_v:h.min_h ~max_v:h.max_h g.h
    }
;;

let set_float_seed_pending w v = w.float_seed_pending <- v

let restore_float w =
  set_float_seed_pending w false;
  match w.output, w.float_rel with
  | None, _ -> ()
  | Some o, Some r ->
    let abs_x = Int32.add o.geom.x r.x in
    let abs_y = Int32.add o.geom.y r.y in
    set_geom w { r with x = abs_x; y = abs_y };
    fit_to_output w
  | Some o, None ->
    let seed = (tag_layout o).floating.seed in
    let sized =
      clamp32
        w
        { x = 0l
        ; y = 0l
        ; w = Extent.resolve seed ~ref:o.usable.w |> Int32.of_int
        ; h = Extent.resolve seed ~ref:o.usable.h |> Int32.of_int
        }
    in
    place_centered w ~usable:(Rect.to_int32 o.usable) ~sized
;;

let center_float w =
  set_float_seed_pending w false;
  match w.output with
  | None -> ()
  | Some o ->
    let usable = Rect.to_int32 o.usable in
    let sized = clamp32 w { w.geom with x = 0l; y = 0l } in
    place_centered w ~usable ~sized
;;

let float w =
  w.presentation <- Floating;
  w.defense <- Idle;
  restore_float w
;;

let is_fullscreen w =
  match w.presentation with
  | Fullscreen _ -> true
  | _ -> false
;;

let fullscreen ?(force : bool = false) w =
  match w.output with
  | None -> ()
  | Some o ->
    let enter restore =
      w.presentation <- Fullscreen { restore };
      set_geom w o.geom
    in
    (match w.presentation with
     | Tiled -> enter `Tiled
     | Floating -> enter `Floating
     | Maximized { restore } -> enter (`Maximized restore)
     | Fullscreen { restore } when force -> enter restore
     | Fullscreen _ -> ())
;;

let maximize ?restore w =
  let enter restore =
    match w.output with
    | None -> ()
    | Some o ->
      let g =
        Rect.(
          Int32.
            { x = of_int o.usable.x
            ; y = of_int o.usable.y
            ; w = of_int o.usable.w
            ; h = of_int o.usable.h
            })
      in
      w.presentation <- Maximized { restore };
      set_geom w g
  in
  match restore with
  | None ->
    (match w.presentation with
     | Tiled -> enter `Tiled
     | Floating ->
       remember_float w;
       enter `Floating
     | Fullscreen _ | Maximized _ -> ())
  | Some r -> enter r
;;

let unmaximize w =
  match w.presentation with
  | Tiled | Floating | Fullscreen _ -> ()
  | Maximized { restore } ->
    (match restore with
     | `Tiled -> tile w
     | `Floating -> float w)
;;

let exit_fullscreen w =
  match w.output, w.presentation with
  | Some _, Fullscreen { restore } ->
    set_proposed w None;
    w
    |>
      (match restore with
      | `Tiled -> tile
      | `Floating -> float
      | `Maximized restore -> maximize ~restore)
  | _, (Tiled | Floating | Maximized _ | Fullscreen _) -> ()
;;

let is_rendered ?fullscreen w =
  tag_visible w
  && (match w.output with
      | None -> false
      | Some o ->
        (not (o.overview.enabled && w.offscreen))
        &&
        let covered =
          match fullscreen with
          | Some b -> b
          | None ->
            List.exists (fun w' -> is_fullscreen w' && tag_visible w') o.focus_stack
        in
        not (covered && not (is_fullscreen w)))
  &&
  match w.output with
  | Some o when (tag_layout o).layout = Scrolling && is_tiled w ->
    Rect.(intersect (to_int w.geom) o.usable) |> Option.is_some
  | _ -> true
;;

let queue_request w request =
  w.requests <- request :: w.requests;
  Schedule.manage ()
;;

let clear_requests w = w.requests <- []
let at_point ~x ~y = List.find_opt (fun w -> tag_visible w && Rect.contains ~x ~y w.geom)
let fake_fullscreen w = if not w.is_fake_fullscreen then w.is_fake_fullscreen <- true
let exit_fake_fullscreen w = if w.is_fake_fullscreen then w.is_fake_fullscreen <- false

let float_in_place w =
  match w.presentation with
  | Floating -> ()
  | Fullscreen _ -> Log.err @@ fun m -> m "unable to float fullscreen window"
  | Tiled | Maximized _ ->
    remember_float w;
    w.presentation <- Floating
;;

let apply_float_geom w g =
  clamp w g |> set_geom w;
  fit_to_output w;
  remember_float w
;;

let with_float_edit w f =
  if is_fullscreen w
  then Log.err @@ fun m -> m "unable to move fullscreen window"
  else (
    match w.output with
    | None -> ()
    | Some o ->
      float_in_place w;
      f o |> apply_float_geom w)
;;

let move_to w ~x ~y =
  with_float_edit w
  @@ fun o ->
  let cur = Rect.to_int w.geom in
  { cur with
    x = o.usable.x + Extent.resolve x ~ref:o.usable.w
  ; y = o.usable.y + Extent.resolve y ~ref:o.usable.h
  }
;;

let move_spatial w (dir : Direction.Spatial.t) by =
  with_float_edit w
  @@ fun o ->
  let cur = Rect.to_int w.geom in
  let dx = Extent.resolve by ~ref:o.usable.w in
  let dy = Extent.resolve by ~ref:o.usable.h in
  match dir with
  | Up -> { cur with y = cur.y - dy }
  | Down -> { cur with y = cur.y + dy }
  | Left -> { cur with x = cur.x - dx }
  | Right -> { cur with x = cur.x + dx }
;;

let resize_to w ~width ~height =
  with_float_edit w
  @@ fun o ->
  let cur = Rect.to_int w.geom in
  { cur with
    w = Extent.resolve width ~ref:o.usable.w
  ; h = Extent.resolve height ~ref:o.usable.h
  }
;;

let resize_spatial w (dir : Direction.Spatial.t) by =
  with_float_edit w
  @@ fun o ->
  let cur = Rect.to_int w.geom in
  let dx = Extent.resolve by ~ref:o.usable.w in
  let dy = Extent.resolve by ~ref:o.usable.h in
  match dir with
  | Up -> { cur with y = cur.y - dy; h = cur.h + dy }
  | Down -> { cur with h = cur.h + dy }
  | Left -> { cur with x = cur.x - dx; w = cur.w + dx }
  | Right -> { cur with w = cur.w + dx }
;;

let set_tags w tags =
  if not @@ Tag.Set.is_empty tags
  then (
    w.tags <- tags;
    Schedule.manage ())
  else invalid_arg "Windows cannot have an empty set of tags."
;;

let set_consumes w v =
  if v <> w.scrolling.consumes
  then (
    w.scrolling.consumes <- v;
    Schedule.manage ())
;;

let set_scroll_width w v =
  if w.scrolling.width <> v
  then (
    w.scrolling.width <- v;
    Schedule.manage ())
;;

let rec set_output w output =
  let aux () =
    Schedule.manage ();
    w.output <- output;
    set_fullscreen_on w None;
    set_proposed w None;
    match w.swallow.relation with
    | Some (Swallowing host) -> set_output host output
    | Some (Swallowed_by _) | None -> ()
  in
  match w.output, output with
  | Some o, None when Option.is_none w.output_before_evac ->
    w.output_before_evac <- o.name;
    aux ()
  | _ -> aux ()
;;

let set_presentation w presentation =
  w.presentation <- presentation;
  Schedule.manage ()
;;

let set_is_urgent w is_urgent =
  w.is_urgent <- is_urgent;
  Schedule.manage ()
;;

let set_is_captured w is_captured =
  w.is_captured <- is_captured;
  Schedule.manage ()
;;

let set_lifecycle w lifecycle = w.lifecycle <- lifecycle
let set_title w title = w.title <- title
let set_app_id w app_id = w.app_id <- app_id
let set_identifier w identifier = w.identifier <- identifier
let set_unreliable_pid w pid = w.unreliable_pid <- pid

let set_parent w ~parent =
  w.parent <- parent;
  Schedule.manage ()
;;

let set_close_pending w v = w.close_pending <- v
let set_decoration_hint w hint = w.decoration_hint <- hint
let set_presentation_hint w hint = w.presentation_hint <- hint
let set_size_hints w hints = w.size_hints <- hints

let set_sticky w scope =
  if w.sticky <> scope
  then (
    w.sticky <- scope;
    Schedule.manage ())
;;

let add_label w label =
  if not @@ List.mem label w.labels
  then w.labels <- label :: w.labels |> List.sort String.compare
;;

let remove_label w label = w.labels <- List.filter (( <> ) label) w.labels

let set_swallow_role w v =
  w.swallow.role <- v;
  Schedule.manage ()
;;

let set_swallow_relation w o =
  w.swallow.relation <- o;
  Schedule.manage ()
;;

let swallow ~host ~child =
  set_swallow_relation child (Some (Swallowing host));
  set_swallow_relation host (Some (Swallowed_by child))
;;

let set_is_fixed w is_fixed = w.is_fixed <- is_fixed
let set_scratchpad w name = w.scratchpad.name <- name
let set_stashed w b = w.scratchpad.stashed <- b

let rehome w name =
  match w.output_before_evac with
  | Some n when String.equal n name ->
    w.output_before_evac <- None;
    queue_request w @@ Send_to_output_name { name; policy = Tag.Policy.Keep }
  | _ -> ()
;;

let presentation_string w =
  match w.presentation with
  | Tiled -> "tiled"
  | Floating -> "floating"
  | Maximized _ -> "maximized"
  | Fullscreen _ -> "fullscreen"
;;

let set_informed_fullscreen w o = w.committed.informed_fullscreen <- o
let set_informed_maximized w o = w.committed.informed_maximized <- o
let set_informed_resizing w o = w.committed.informed_resizing <- o
let set_caps w o = w.committed.caps <- o
let set_tiled_edges w o = w.committed.tiled_edges <- o
let set_ssd w o = w.committed.ssd <- o
let set_borders w o = w.committed.borders <- o
let set_shown w o = w.committed.shown <- o
let set_committed_position w o = w.committed.position <- o
let set_clip_box w o = w.committed.clip_box <- o
let set_content_clip_box w o = w.committed.content_clip_box <- o