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
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
//! short-lived, popup surfaces for menus
//!
//! A popup surface is a short-lived, temporary surface. It can be used to
//! implement for example menus, popovers, tooltips and other similar user
//! interface concepts.
//!
//! A popup can be made to take an explicit grab. See xdg_popup.grab for
//! details.
//!
//! When the popup is dismissed, a popup_done event will be sent out, and at
//! the same time the surface will be unmapped. See the xdg_popup.popup_done
//! event for details.
//!
//! Explicitly destroying the xdg_popup object will also dismiss the popup and
//! unmap the surface. Clients that want to dismiss the popup when another
//! surface of their own is clicked should dismiss the popup using the destroy
//! request.
//!
//! A newly created xdg_popup will be stacked on top of all previously created
//! xdg_popup surfaces associated with the same xdg_toplevel.
//!
//! The parent of an xdg_popup must be mapped (see the xdg_surface
//! description) before the xdg_popup itself.
//!
//! The client must call wl_surface.commit on the corresponding wl_surface
//! for the xdg_popup state to take effect.
use crate::protocol_helpers::prelude::*;
use super::super::all_types::*;
/// A xdg_popup object.
///
/// See the documentation of [the module][self] for the interface description.
pub struct XdgPopup {
core: ObjectCore,
handler: HandlerHolder<dyn XdgPopupHandler>,
}
struct DefaultHandler;
impl XdgPopupHandler for DefaultHandler { }
impl ConcreteObject for XdgPopup {
const XML_VERSION: u32 = 7;
const INTERFACE: ObjectInterface = ObjectInterface::XdgPopup;
const INTERFACE_NAME: &str = "xdg_popup";
}
impl XdgPopup {
/// Sets a new handler.
pub fn set_handler(&self, handler: impl XdgPopupHandler) {
self.set_boxed_handler(Box::new(handler));
}
/// Sets a new, already boxed handler.
pub fn set_boxed_handler(&self, handler: Box<dyn XdgPopupHandler>) {
if self.core.state.destroyed.get() {
return;
}
self.handler.set(Some(handler));
}
}
impl Debug for XdgPopup {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
f.debug_struct("XdgPopup")
.field("server_obj_id", &self.core.server_obj_id.get())
.field("client_id", &self.core.client_id.get())
.field("client_obj_id", &self.core.client_obj_id.get())
.finish()
}
}
impl XdgPopup {
/// Since when the destroy message is available.
pub const MSG__DESTROY__SINCE: u32 = 1;
/// remove xdg_popup interface
///
/// This destroys the popup. Explicitly destroying the xdg_popup
/// object will also dismiss the popup, and unmap the surface.
///
/// If this xdg_popup is not the "topmost" popup, the
/// xdg_wm_base.not_the_topmost_popup protocol error will be sent.
#[inline]
pub fn try_send_destroy(
&self,
) -> Result<(), ObjectError> {
let core = self.core();
let Some(id) = core.server_obj_id.get() else {
return Err(ObjectError(ObjectErrorKind::ReceiverNoServerId));
};
#[cfg(feature = "logging")]
if self.core.state.log {
#[cold]
fn log(state: &State, id: u32) {
let (millis, micros) = time_since_epoch();
let prefix = &state.log_prefix;
let args = format_args!("[{millis:7}.{micros:03}] {prefix}server <= xdg_popup#{}.destroy()\n", id);
state.log(args);
}
log(&self.core.state, id);
}
let Some(endpoint) = &self.core.state.server else {
return Ok(());
};
if !endpoint.flush_queued.replace(true) {
self.core.state.add_flushable_endpoint(endpoint, None);
}
let mut outgoing_ref = endpoint.outgoing.borrow_mut();
let outgoing = &mut *outgoing_ref;
let mut fmt = outgoing.formatter();
fmt.words([
id,
0,
]);
self.core.handle_server_destroy();
Ok(())
}
/// remove xdg_popup interface
///
/// This destroys the popup. Explicitly destroying the xdg_popup
/// object will also dismiss the popup, and unmap the surface.
///
/// If this xdg_popup is not the "topmost" popup, the
/// xdg_wm_base.not_the_topmost_popup protocol error will be sent.
#[inline]
pub fn send_destroy(
&self,
) {
let res = self.try_send_destroy(
);
if let Err(e) = res {
log_send("xdg_popup.destroy", &e);
}
}
/// Since when the grab message is available.
pub const MSG__GRAB__SINCE: u32 = 1;
/// make the popup take an explicit grab
///
/// This request makes the created popup take an explicit grab. An explicit
/// grab will be dismissed when the user dismisses the popup, or when the
/// client destroys the xdg_popup. This can be done by the user clicking
/// outside the surface, using the keyboard, or even locking the screen
/// through closing the lid or a timeout.
///
/// If the compositor denies the grab, the popup will be immediately
/// dismissed.
///
/// This request must be used in response to some sort of user action like a
/// button press, key press, or touch down event. The serial number of the
/// event should be passed as 'serial'.
///
/// The parent of a grabbing popup must either be an xdg_toplevel surface or
/// another xdg_popup with an explicit grab. If the parent is another
/// xdg_popup it means that the popups are nested, with this popup now being
/// the topmost popup.
///
/// Nested popups must be destroyed in the reverse order they were created
/// in, e.g. the only popup you are allowed to destroy at all times is the
/// topmost one.
///
/// When compositors choose to dismiss a popup, they may dismiss every
/// nested grabbing popup as well. When a compositor dismisses popups, it
/// will follow the same dismissing order as required from the client.
///
/// If the topmost grabbing popup is destroyed, the grab will be returned to
/// the parent of the popup, if that parent previously had an explicit grab.
///
/// If the parent is a grabbing popup which has already been dismissed, this
/// popup will be immediately dismissed. If the parent is a popup that did
/// not take an explicit grab, an error will be raised.
///
/// During a popup grab, the client owning the grab will receive pointer
/// and touch events for all their surfaces as normal (similar to an
/// "owner-events" grab in X11 parlance), while the top most grabbing popup
/// will always have keyboard focus.
///
/// # Arguments
///
/// - `seat`: the wl_seat of the user event
/// - `serial`: the serial of the user event
#[inline]
pub fn try_send_grab(
&self,
seat: &Rc<WlSeat>,
serial: u32,
) -> Result<(), ObjectError> {
let (
arg0,
arg1,
) = (
seat,
serial,
);
let arg0 = arg0.core();
let core = self.core();
let Some(id) = core.server_obj_id.get() else {
return Err(ObjectError(ObjectErrorKind::ReceiverNoServerId));
};
let arg0_id = match arg0.server_obj_id.get() {
None => return Err(ObjectError(ObjectErrorKind::ArgNoServerId("seat"))),
Some(id) => id,
};
#[cfg(feature = "logging")]
if self.core.state.log {
#[cold]
fn log(state: &State, id: u32, arg0: u32, arg1: u32) {
let (millis, micros) = time_since_epoch();
let prefix = &state.log_prefix;
let args = format_args!("[{millis:7}.{micros:03}] {prefix}server <= xdg_popup#{}.grab(seat: wl_seat#{}, serial: {})\n", id, arg0, arg1);
state.log(args);
}
log(&self.core.state, id, arg0_id, arg1);
}
let Some(endpoint) = &self.core.state.server else {
return Ok(());
};
if !endpoint.flush_queued.replace(true) {
self.core.state.add_flushable_endpoint(endpoint, None);
}
let mut outgoing_ref = endpoint.outgoing.borrow_mut();
let outgoing = &mut *outgoing_ref;
let mut fmt = outgoing.formatter();
fmt.words([
id,
1,
arg0_id,
arg1,
]);
Ok(())
}
/// make the popup take an explicit grab
///
/// This request makes the created popup take an explicit grab. An explicit
/// grab will be dismissed when the user dismisses the popup, or when the
/// client destroys the xdg_popup. This can be done by the user clicking
/// outside the surface, using the keyboard, or even locking the screen
/// through closing the lid or a timeout.
///
/// If the compositor denies the grab, the popup will be immediately
/// dismissed.
///
/// This request must be used in response to some sort of user action like a
/// button press, key press, or touch down event. The serial number of the
/// event should be passed as 'serial'.
///
/// The parent of a grabbing popup must either be an xdg_toplevel surface or
/// another xdg_popup with an explicit grab. If the parent is another
/// xdg_popup it means that the popups are nested, with this popup now being
/// the topmost popup.
///
/// Nested popups must be destroyed in the reverse order they were created
/// in, e.g. the only popup you are allowed to destroy at all times is the
/// topmost one.
///
/// When compositors choose to dismiss a popup, they may dismiss every
/// nested grabbing popup as well. When a compositor dismisses popups, it
/// will follow the same dismissing order as required from the client.
///
/// If the topmost grabbing popup is destroyed, the grab will be returned to
/// the parent of the popup, if that parent previously had an explicit grab.
///
/// If the parent is a grabbing popup which has already been dismissed, this
/// popup will be immediately dismissed. If the parent is a popup that did
/// not take an explicit grab, an error will be raised.
///
/// During a popup grab, the client owning the grab will receive pointer
/// and touch events for all their surfaces as normal (similar to an
/// "owner-events" grab in X11 parlance), while the top most grabbing popup
/// will always have keyboard focus.
///
/// # Arguments
///
/// - `seat`: the wl_seat of the user event
/// - `serial`: the serial of the user event
#[inline]
pub fn send_grab(
&self,
seat: &Rc<WlSeat>,
serial: u32,
) {
let res = self.try_send_grab(
seat,
serial,
);
if let Err(e) = res {
log_send("xdg_popup.grab", &e);
}
}
/// Since when the configure message is available.
pub const MSG__CONFIGURE__SINCE: u32 = 1;
/// configure the popup surface
///
/// This event asks the popup surface to configure itself given the
/// configuration. The configured state should not be applied immediately.
/// See xdg_surface.configure for details.
///
/// The x and y arguments represent the position the popup was placed at
/// given the xdg_positioner rule, relative to the upper left corner of the
/// window geometry of the parent surface.
///
/// For version 2 or older, the configure event for an xdg_popup is only
/// ever sent once for the initial configuration. Starting with version 3,
/// it may be sent again if the popup is setup with an xdg_positioner with
/// set_reactive requested, or in response to xdg_popup.reposition requests.
///
/// # Arguments
///
/// - `x`: x position relative to parent surface window geometry
/// - `y`: y position relative to parent surface window geometry
/// - `width`: window geometry width
/// - `height`: window geometry height
#[inline]
pub fn try_send_configure(
&self,
x: i32,
y: i32,
width: i32,
height: i32,
) -> Result<(), ObjectError> {
let (
arg0,
arg1,
arg2,
arg3,
) = (
x,
y,
width,
height,
);
let core = self.core();
let client_ref = core.client.borrow();
let Some(client) = &*client_ref else {
return Err(ObjectError(ObjectErrorKind::ReceiverNoClient));
};
let id = core.client_obj_id.get().unwrap_or(0);
#[cfg(feature = "logging")]
if self.core.state.log {
#[cold]
fn log(state: &State, client_id: u64, id: u32, arg0: i32, arg1: i32, arg2: i32, arg3: i32) {
let (millis, micros) = time_since_epoch();
let prefix = &state.log_prefix;
let args = format_args!("[{millis:7}.{micros:03}] {prefix}client#{:<4} <= xdg_popup#{}.configure(x: {}, y: {}, width: {}, height: {})\n", client_id, id, arg0, arg1, arg2, arg3);
state.log(args);
}
log(&self.core.state, client.endpoint.id, id, arg0, arg1, arg2, arg3);
}
let endpoint = &client.endpoint;
if !endpoint.flush_queued.replace(true) {
self.core.state.add_flushable_endpoint(endpoint, Some(client));
}
let mut outgoing_ref = endpoint.outgoing.borrow_mut();
let outgoing = &mut *outgoing_ref;
let mut fmt = outgoing.formatter();
fmt.words([
id,
0,
arg0 as u32,
arg1 as u32,
arg2 as u32,
arg3 as u32,
]);
Ok(())
}
/// configure the popup surface
///
/// This event asks the popup surface to configure itself given the
/// configuration. The configured state should not be applied immediately.
/// See xdg_surface.configure for details.
///
/// The x and y arguments represent the position the popup was placed at
/// given the xdg_positioner rule, relative to the upper left corner of the
/// window geometry of the parent surface.
///
/// For version 2 or older, the configure event for an xdg_popup is only
/// ever sent once for the initial configuration. Starting with version 3,
/// it may be sent again if the popup is setup with an xdg_positioner with
/// set_reactive requested, or in response to xdg_popup.reposition requests.
///
/// # Arguments
///
/// - `x`: x position relative to parent surface window geometry
/// - `y`: y position relative to parent surface window geometry
/// - `width`: window geometry width
/// - `height`: window geometry height
#[inline]
pub fn send_configure(
&self,
x: i32,
y: i32,
width: i32,
height: i32,
) {
let res = self.try_send_configure(
x,
y,
width,
height,
);
if let Err(e) = res {
log_send("xdg_popup.configure", &e);
}
}
/// Since when the popup_done message is available.
pub const MSG__POPUP_DONE__SINCE: u32 = 1;
/// popup interaction is done
///
/// The popup_done event is sent out when a popup is dismissed by the
/// compositor. The client should destroy the xdg_popup object at this
/// point.
#[inline]
pub fn try_send_popup_done(
&self,
) -> Result<(), ObjectError> {
let core = self.core();
let client_ref = core.client.borrow();
let Some(client) = &*client_ref else {
return Err(ObjectError(ObjectErrorKind::ReceiverNoClient));
};
let id = core.client_obj_id.get().unwrap_or(0);
#[cfg(feature = "logging")]
if self.core.state.log {
#[cold]
fn log(state: &State, client_id: u64, id: u32) {
let (millis, micros) = time_since_epoch();
let prefix = &state.log_prefix;
let args = format_args!("[{millis:7}.{micros:03}] {prefix}client#{:<4} <= xdg_popup#{}.popup_done()\n", client_id, id);
state.log(args);
}
log(&self.core.state, client.endpoint.id, id);
}
let endpoint = &client.endpoint;
if !endpoint.flush_queued.replace(true) {
self.core.state.add_flushable_endpoint(endpoint, Some(client));
}
let mut outgoing_ref = endpoint.outgoing.borrow_mut();
let outgoing = &mut *outgoing_ref;
let mut fmt = outgoing.formatter();
fmt.words([
id,
1,
]);
Ok(())
}
/// popup interaction is done
///
/// The popup_done event is sent out when a popup is dismissed by the
/// compositor. The client should destroy the xdg_popup object at this
/// point.
#[inline]
pub fn send_popup_done(
&self,
) {
let res = self.try_send_popup_done(
);
if let Err(e) = res {
log_send("xdg_popup.popup_done", &e);
}
}
/// Since when the reposition message is available.
pub const MSG__REPOSITION__SINCE: u32 = 3;
/// recalculate the popup's location
///
/// Reposition an already-mapped popup. The popup will be placed given the
/// details in the passed xdg_positioner object, and a
/// xdg_popup.repositioned followed by xdg_popup.configure and
/// xdg_surface.configure will be emitted in response. Any parameters set
/// by the previous positioner will be discarded.
///
/// The passed token will be sent in the corresponding
/// xdg_popup.repositioned event. The new popup position will not take
/// effect until the corresponding configure event is acknowledged by the
/// client. See xdg_popup.repositioned for details. The token itself is
/// opaque, and has no other special meaning.
///
/// If multiple reposition requests are sent, the compositor may skip all
/// but the last one.
///
/// If the popup is repositioned in response to a configure event for its
/// parent, the client should send an xdg_positioner.set_parent_configure
/// and possibly an xdg_positioner.set_parent_size request to allow the
/// compositor to properly constrain the popup.
///
/// If the popup is repositioned together with a parent that is being
/// resized, but not in response to a configure event, the client should
/// send an xdg_positioner.set_parent_size request.
///
/// # Arguments
///
/// - `positioner`:
/// - `token`: reposition request token
#[inline]
pub fn try_send_reposition(
&self,
positioner: &Rc<XdgPositioner>,
token: u32,
) -> Result<(), ObjectError> {
let (
arg0,
arg1,
) = (
positioner,
token,
);
let arg0 = arg0.core();
let core = self.core();
let Some(id) = core.server_obj_id.get() else {
return Err(ObjectError(ObjectErrorKind::ReceiverNoServerId));
};
let arg0_id = match arg0.server_obj_id.get() {
None => return Err(ObjectError(ObjectErrorKind::ArgNoServerId("positioner"))),
Some(id) => id,
};
#[cfg(feature = "logging")]
if self.core.state.log {
#[cold]
fn log(state: &State, id: u32, arg0: u32, arg1: u32) {
let (millis, micros) = time_since_epoch();
let prefix = &state.log_prefix;
let args = format_args!("[{millis:7}.{micros:03}] {prefix}server <= xdg_popup#{}.reposition(positioner: xdg_positioner#{}, token: {})\n", id, arg0, arg1);
state.log(args);
}
log(&self.core.state, id, arg0_id, arg1);
}
let Some(endpoint) = &self.core.state.server else {
return Ok(());
};
if !endpoint.flush_queued.replace(true) {
self.core.state.add_flushable_endpoint(endpoint, None);
}
let mut outgoing_ref = endpoint.outgoing.borrow_mut();
let outgoing = &mut *outgoing_ref;
let mut fmt = outgoing.formatter();
fmt.words([
id,
2,
arg0_id,
arg1,
]);
Ok(())
}
/// recalculate the popup's location
///
/// Reposition an already-mapped popup. The popup will be placed given the
/// details in the passed xdg_positioner object, and a
/// xdg_popup.repositioned followed by xdg_popup.configure and
/// xdg_surface.configure will be emitted in response. Any parameters set
/// by the previous positioner will be discarded.
///
/// The passed token will be sent in the corresponding
/// xdg_popup.repositioned event. The new popup position will not take
/// effect until the corresponding configure event is acknowledged by the
/// client. See xdg_popup.repositioned for details. The token itself is
/// opaque, and has no other special meaning.
///
/// If multiple reposition requests are sent, the compositor may skip all
/// but the last one.
///
/// If the popup is repositioned in response to a configure event for its
/// parent, the client should send an xdg_positioner.set_parent_configure
/// and possibly an xdg_positioner.set_parent_size request to allow the
/// compositor to properly constrain the popup.
///
/// If the popup is repositioned together with a parent that is being
/// resized, but not in response to a configure event, the client should
/// send an xdg_positioner.set_parent_size request.
///
/// # Arguments
///
/// - `positioner`:
/// - `token`: reposition request token
#[inline]
pub fn send_reposition(
&self,
positioner: &Rc<XdgPositioner>,
token: u32,
) {
let res = self.try_send_reposition(
positioner,
token,
);
if let Err(e) = res {
log_send("xdg_popup.reposition", &e);
}
}
/// Since when the repositioned message is available.
pub const MSG__REPOSITIONED__SINCE: u32 = 3;
/// signal the completion of a repositioned request
///
/// The repositioned event is sent as part of a popup configuration
/// sequence, together with xdg_popup.configure and lastly
/// xdg_surface.configure to notify the completion of a reposition request.
///
/// The repositioned event is to notify about the completion of a
/// xdg_popup.reposition request. The token argument is the token passed
/// in the xdg_popup.reposition request.
///
/// Immediately after this event is emitted, xdg_popup.configure and
/// xdg_surface.configure will be sent with the updated size and position,
/// as well as a new configure serial.
///
/// The client should optionally update the content of the popup, but must
/// acknowledge the new popup configuration for the new position to take
/// effect. See xdg_surface.ack_configure for details.
///
/// # Arguments
///
/// - `token`: reposition request token
#[inline]
pub fn try_send_repositioned(
&self,
token: u32,
) -> Result<(), ObjectError> {
let (
arg0,
) = (
token,
);
let core = self.core();
let client_ref = core.client.borrow();
let Some(client) = &*client_ref else {
return Err(ObjectError(ObjectErrorKind::ReceiverNoClient));
};
let id = core.client_obj_id.get().unwrap_or(0);
#[cfg(feature = "logging")]
if self.core.state.log {
#[cold]
fn log(state: &State, client_id: u64, id: u32, arg0: u32) {
let (millis, micros) = time_since_epoch();
let prefix = &state.log_prefix;
let args = format_args!("[{millis:7}.{micros:03}] {prefix}client#{:<4} <= xdg_popup#{}.repositioned(token: {})\n", client_id, id, arg0);
state.log(args);
}
log(&self.core.state, client.endpoint.id, id, arg0);
}
let endpoint = &client.endpoint;
if !endpoint.flush_queued.replace(true) {
self.core.state.add_flushable_endpoint(endpoint, Some(client));
}
let mut outgoing_ref = endpoint.outgoing.borrow_mut();
let outgoing = &mut *outgoing_ref;
let mut fmt = outgoing.formatter();
fmt.words([
id,
2,
arg0,
]);
Ok(())
}
/// signal the completion of a repositioned request
///
/// The repositioned event is sent as part of a popup configuration
/// sequence, together with xdg_popup.configure and lastly
/// xdg_surface.configure to notify the completion of a reposition request.
///
/// The repositioned event is to notify about the completion of a
/// xdg_popup.reposition request. The token argument is the token passed
/// in the xdg_popup.reposition request.
///
/// Immediately after this event is emitted, xdg_popup.configure and
/// xdg_surface.configure will be sent with the updated size and position,
/// as well as a new configure serial.
///
/// The client should optionally update the content of the popup, but must
/// acknowledge the new popup configuration for the new position to take
/// effect. See xdg_surface.ack_configure for details.
///
/// # Arguments
///
/// - `token`: reposition request token
#[inline]
pub fn send_repositioned(
&self,
token: u32,
) {
let res = self.try_send_repositioned(
token,
);
if let Err(e) = res {
log_send("xdg_popup.repositioned", &e);
}
}
}
/// A message handler for [`XdgPopup`] proxies.
pub trait XdgPopupHandler: Any {
/// Event handler for wl_display.delete_id messages deleting the ID of this object.
///
/// The default handler forwards the event to the client, if any.
#[inline]
fn delete_id(&mut self, slf: &Rc<XdgPopup>) {
slf.core.delete_id();
}
/// remove xdg_popup interface
///
/// This destroys the popup. Explicitly destroying the xdg_popup
/// object will also dismiss the popup, and unmap the surface.
///
/// If this xdg_popup is not the "topmost" popup, the
/// xdg_wm_base.not_the_topmost_popup protocol error will be sent.
#[inline]
fn handle_destroy(
&mut self,
slf: &Rc<XdgPopup>,
) {
if !slf.core.forward_to_server.get() {
return;
}
let res = slf.try_send_destroy(
);
if let Err(e) = res {
log_forward("xdg_popup.destroy", &e);
}
}
/// make the popup take an explicit grab
///
/// This request makes the created popup take an explicit grab. An explicit
/// grab will be dismissed when the user dismisses the popup, or when the
/// client destroys the xdg_popup. This can be done by the user clicking
/// outside the surface, using the keyboard, or even locking the screen
/// through closing the lid or a timeout.
///
/// If the compositor denies the grab, the popup will be immediately
/// dismissed.
///
/// This request must be used in response to some sort of user action like a
/// button press, key press, or touch down event. The serial number of the
/// event should be passed as 'serial'.
///
/// The parent of a grabbing popup must either be an xdg_toplevel surface or
/// another xdg_popup with an explicit grab. If the parent is another
/// xdg_popup it means that the popups are nested, with this popup now being
/// the topmost popup.
///
/// Nested popups must be destroyed in the reverse order they were created
/// in, e.g. the only popup you are allowed to destroy at all times is the
/// topmost one.
///
/// When compositors choose to dismiss a popup, they may dismiss every
/// nested grabbing popup as well. When a compositor dismisses popups, it
/// will follow the same dismissing order as required from the client.
///
/// If the topmost grabbing popup is destroyed, the grab will be returned to
/// the parent of the popup, if that parent previously had an explicit grab.
///
/// If the parent is a grabbing popup which has already been dismissed, this
/// popup will be immediately dismissed. If the parent is a popup that did
/// not take an explicit grab, an error will be raised.
///
/// During a popup grab, the client owning the grab will receive pointer
/// and touch events for all their surfaces as normal (similar to an
/// "owner-events" grab in X11 parlance), while the top most grabbing popup
/// will always have keyboard focus.
///
/// # Arguments
///
/// - `seat`: the wl_seat of the user event
/// - `serial`: the serial of the user event
///
/// All borrowed proxies passed to this function are guaranteed to be
/// immutable and non-null.
#[inline]
fn handle_grab(
&mut self,
slf: &Rc<XdgPopup>,
seat: &Rc<WlSeat>,
serial: u32,
) {
if !slf.core.forward_to_server.get() {
return;
}
let res = slf.try_send_grab(
seat,
serial,
);
if let Err(e) = res {
log_forward("xdg_popup.grab", &e);
}
}
/// configure the popup surface
///
/// This event asks the popup surface to configure itself given the
/// configuration. The configured state should not be applied immediately.
/// See xdg_surface.configure for details.
///
/// The x and y arguments represent the position the popup was placed at
/// given the xdg_positioner rule, relative to the upper left corner of the
/// window geometry of the parent surface.
///
/// For version 2 or older, the configure event for an xdg_popup is only
/// ever sent once for the initial configuration. Starting with version 3,
/// it may be sent again if the popup is setup with an xdg_positioner with
/// set_reactive requested, or in response to xdg_popup.reposition requests.
///
/// # Arguments
///
/// - `x`: x position relative to parent surface window geometry
/// - `y`: y position relative to parent surface window geometry
/// - `width`: window geometry width
/// - `height`: window geometry height
#[inline]
fn handle_configure(
&mut self,
slf: &Rc<XdgPopup>,
x: i32,
y: i32,
width: i32,
height: i32,
) {
if !slf.core.forward_to_client.get() {
return;
}
let res = slf.try_send_configure(
x,
y,
width,
height,
);
if let Err(e) = res {
log_forward("xdg_popup.configure", &e);
}
}
/// popup interaction is done
///
/// The popup_done event is sent out when a popup is dismissed by the
/// compositor. The client should destroy the xdg_popup object at this
/// point.
#[inline]
fn handle_popup_done(
&mut self,
slf: &Rc<XdgPopup>,
) {
if !slf.core.forward_to_client.get() {
return;
}
let res = slf.try_send_popup_done(
);
if let Err(e) = res {
log_forward("xdg_popup.popup_done", &e);
}
}
/// recalculate the popup's location
///
/// Reposition an already-mapped popup. The popup will be placed given the
/// details in the passed xdg_positioner object, and a
/// xdg_popup.repositioned followed by xdg_popup.configure and
/// xdg_surface.configure will be emitted in response. Any parameters set
/// by the previous positioner will be discarded.
///
/// The passed token will be sent in the corresponding
/// xdg_popup.repositioned event. The new popup position will not take
/// effect until the corresponding configure event is acknowledged by the
/// client. See xdg_popup.repositioned for details. The token itself is
/// opaque, and has no other special meaning.
///
/// If multiple reposition requests are sent, the compositor may skip all
/// but the last one.
///
/// If the popup is repositioned in response to a configure event for its
/// parent, the client should send an xdg_positioner.set_parent_configure
/// and possibly an xdg_positioner.set_parent_size request to allow the
/// compositor to properly constrain the popup.
///
/// If the popup is repositioned together with a parent that is being
/// resized, but not in response to a configure event, the client should
/// send an xdg_positioner.set_parent_size request.
///
/// # Arguments
///
/// - `positioner`:
/// - `token`: reposition request token
///
/// All borrowed proxies passed to this function are guaranteed to be
/// immutable and non-null.
#[inline]
fn handle_reposition(
&mut self,
slf: &Rc<XdgPopup>,
positioner: &Rc<XdgPositioner>,
token: u32,
) {
if !slf.core.forward_to_server.get() {
return;
}
let res = slf.try_send_reposition(
positioner,
token,
);
if let Err(e) = res {
log_forward("xdg_popup.reposition", &e);
}
}
/// signal the completion of a repositioned request
///
/// The repositioned event is sent as part of a popup configuration
/// sequence, together with xdg_popup.configure and lastly
/// xdg_surface.configure to notify the completion of a reposition request.
///
/// The repositioned event is to notify about the completion of a
/// xdg_popup.reposition request. The token argument is the token passed
/// in the xdg_popup.reposition request.
///
/// Immediately after this event is emitted, xdg_popup.configure and
/// xdg_surface.configure will be sent with the updated size and position,
/// as well as a new configure serial.
///
/// The client should optionally update the content of the popup, but must
/// acknowledge the new popup configuration for the new position to take
/// effect. See xdg_surface.ack_configure for details.
///
/// # Arguments
///
/// - `token`: reposition request token
#[inline]
fn handle_repositioned(
&mut self,
slf: &Rc<XdgPopup>,
token: u32,
) {
if !slf.core.forward_to_client.get() {
return;
}
let res = slf.try_send_repositioned(
token,
);
if let Err(e) = res {
log_forward("xdg_popup.repositioned", &e);
}
}
}
impl ObjectPrivate for XdgPopup {
fn new(state: &Rc<State>, version: u32) -> Rc<Self> {
Rc::<Self>::new_cyclic(|slf| Self {
core: ObjectCore::new(state, slf.clone(), ObjectInterface::XdgPopup, version),
handler: Default::default(),
})
}
fn delete_id(self: Rc<Self>) -> Result<(), (ObjectError, Rc<dyn Object>)> {
let Some(mut handler) = self.handler.try_borrow_mut() else {
return Err((ObjectError(ObjectErrorKind::HandlerBorrowed), self));
};
if let Some(handler) = &mut *handler {
handler.delete_id(&self);
} else {
self.core.delete_id();
}
Ok(())
}
fn handle_request(self: Rc<Self>, client: &Rc<Client>, msg: &[u32], fds: &mut VecDeque<Rc<OwnedFd>>) -> Result<(), ObjectError> {
let Some(mut handler) = self.handler.try_borrow_mut() else {
return Err(ObjectError(ObjectErrorKind::HandlerBorrowed));
};
let handler = &mut *handler;
match msg[1] & 0xffff {
0 => {
if msg.len() != 2 {
return Err(ObjectError(ObjectErrorKind::WrongMessageSize(msg.len() as u32 * 4, 8)));
}
#[cfg(feature = "logging")]
if self.core.state.log {
#[cold]
fn log(state: &State, client_id: u64, id: u32) {
let (millis, micros) = time_since_epoch();
let prefix = &state.log_prefix;
let args = format_args!("[{millis:7}.{micros:03}] {prefix}client#{:<4} -> xdg_popup#{}.destroy()\n", client_id, id);
state.log(args);
}
log(&self.core.state, client.endpoint.id, msg[0]);
}
self.core.handle_client_destroy();
if let Some(handler) = handler {
(**handler).handle_destroy(&self);
} else {
DefaultHandler.handle_destroy(&self);
}
}
1 => {
let [
arg0,
arg1,
] = msg[2..] else {
return Err(ObjectError(ObjectErrorKind::WrongMessageSize(msg.len() as u32 * 4, 16)));
};
#[cfg(feature = "logging")]
if self.core.state.log {
#[cold]
fn log(state: &State, client_id: u64, id: u32, arg0: u32, arg1: u32) {
let (millis, micros) = time_since_epoch();
let prefix = &state.log_prefix;
let args = format_args!("[{millis:7}.{micros:03}] {prefix}client#{:<4} -> xdg_popup#{}.grab(seat: wl_seat#{}, serial: {})\n", client_id, id, arg0, arg1);
state.log(args);
}
log(&self.core.state, client.endpoint.id, msg[0], arg0, arg1);
}
let arg0_id = arg0;
let Some(arg0) = client.endpoint.lookup(arg0_id) else {
return Err(ObjectError(ObjectErrorKind::NoClientObject(client.endpoint.id, arg0_id)));
};
let Ok(arg0) = (arg0 as Rc<dyn Any>).downcast::<WlSeat>() else {
let o = client.endpoint.lookup(arg0_id).unwrap();
return Err(ObjectError(ObjectErrorKind::WrongObjectType("seat", o.core().interface, ObjectInterface::WlSeat)));
};
let arg0 = &arg0;
if let Some(handler) = handler {
(**handler).handle_grab(&self, arg0, arg1);
} else {
DefaultHandler.handle_grab(&self, arg0, arg1);
}
}
2 => {
let [
arg0,
arg1,
] = msg[2..] else {
return Err(ObjectError(ObjectErrorKind::WrongMessageSize(msg.len() as u32 * 4, 16)));
};
#[cfg(feature = "logging")]
if self.core.state.log {
#[cold]
fn log(state: &State, client_id: u64, id: u32, arg0: u32, arg1: u32) {
let (millis, micros) = time_since_epoch();
let prefix = &state.log_prefix;
let args = format_args!("[{millis:7}.{micros:03}] {prefix}client#{:<4} -> xdg_popup#{}.reposition(positioner: xdg_positioner#{}, token: {})\n", client_id, id, arg0, arg1);
state.log(args);
}
log(&self.core.state, client.endpoint.id, msg[0], arg0, arg1);
}
let arg0_id = arg0;
let Some(arg0) = client.endpoint.lookup(arg0_id) else {
return Err(ObjectError(ObjectErrorKind::NoClientObject(client.endpoint.id, arg0_id)));
};
let Ok(arg0) = (arg0 as Rc<dyn Any>).downcast::<XdgPositioner>() else {
let o = client.endpoint.lookup(arg0_id).unwrap();
return Err(ObjectError(ObjectErrorKind::WrongObjectType("positioner", o.core().interface, ObjectInterface::XdgPositioner)));
};
let arg0 = &arg0;
if let Some(handler) = handler {
(**handler).handle_reposition(&self, arg0, arg1);
} else {
DefaultHandler.handle_reposition(&self, arg0, arg1);
}
}
n => {
let _ = client;
let _ = msg;
let _ = fds;
let _ = handler;
return Err(ObjectError(ObjectErrorKind::UnknownMessageId(n)));
}
}
Ok(())
}
fn handle_event(self: Rc<Self>, server: &Endpoint, msg: &[u32], fds: &mut VecDeque<Rc<OwnedFd>>) -> Result<(), ObjectError> {
let Some(mut handler) = self.handler.try_borrow_mut() else {
return Err(ObjectError(ObjectErrorKind::HandlerBorrowed));
};
let handler = &mut *handler;
match msg[1] & 0xffff {
0 => {
let [
arg0,
arg1,
arg2,
arg3,
] = msg[2..] else {
return Err(ObjectError(ObjectErrorKind::WrongMessageSize(msg.len() as u32 * 4, 24)));
};
let arg0 = arg0 as i32;
let arg1 = arg1 as i32;
let arg2 = arg2 as i32;
let arg3 = arg3 as i32;
#[cfg(feature = "logging")]
if self.core.state.log {
#[cold]
fn log(state: &State, id: u32, arg0: i32, arg1: i32, arg2: i32, arg3: i32) {
let (millis, micros) = time_since_epoch();
let prefix = &state.log_prefix;
let args = format_args!("[{millis:7}.{micros:03}] {prefix}server -> xdg_popup#{}.configure(x: {}, y: {}, width: {}, height: {})\n", id, arg0, arg1, arg2, arg3);
state.log(args);
}
log(&self.core.state, msg[0], arg0, arg1, arg2, arg3);
}
if let Some(handler) = handler {
(**handler).handle_configure(&self, arg0, arg1, arg2, arg3);
} else {
DefaultHandler.handle_configure(&self, arg0, arg1, arg2, arg3);
}
}
1 => {
if msg.len() != 2 {
return Err(ObjectError(ObjectErrorKind::WrongMessageSize(msg.len() as u32 * 4, 8)));
}
#[cfg(feature = "logging")]
if self.core.state.log {
#[cold]
fn log(state: &State, id: u32) {
let (millis, micros) = time_since_epoch();
let prefix = &state.log_prefix;
let args = format_args!("[{millis:7}.{micros:03}] {prefix}server -> xdg_popup#{}.popup_done()\n", id);
state.log(args);
}
log(&self.core.state, msg[0]);
}
if let Some(handler) = handler {
(**handler).handle_popup_done(&self);
} else {
DefaultHandler.handle_popup_done(&self);
}
}
2 => {
let [
arg0,
] = msg[2..] else {
return Err(ObjectError(ObjectErrorKind::WrongMessageSize(msg.len() as u32 * 4, 12)));
};
#[cfg(feature = "logging")]
if self.core.state.log {
#[cold]
fn log(state: &State, id: u32, arg0: u32) {
let (millis, micros) = time_since_epoch();
let prefix = &state.log_prefix;
let args = format_args!("[{millis:7}.{micros:03}] {prefix}server -> xdg_popup#{}.repositioned(token: {})\n", id, arg0);
state.log(args);
}
log(&self.core.state, msg[0], arg0);
}
if let Some(handler) = handler {
(**handler).handle_repositioned(&self, arg0);
} else {
DefaultHandler.handle_repositioned(&self, arg0);
}
}
n => {
let _ = server;
let _ = msg;
let _ = fds;
let _ = handler;
return Err(ObjectError(ObjectErrorKind::UnknownMessageId(n)));
}
}
Ok(())
}
fn get_request_name(&self, id: u32) -> Option<&'static str> {
let name = match id {
0 => "destroy",
1 => "grab",
2 => "reposition",
_ => return None,
};
Some(name)
}
fn get_event_name(&self, id: u32) -> Option<&'static str> {
let name = match id {
0 => "configure",
1 => "popup_done",
2 => "repositioned",
_ => return None,
};
Some(name)
}
}
impl Object for XdgPopup {
fn core(&self) -> &ObjectCore {
&self.core
}
fn unset_handler(&self) {
self.handler.set(None);
}
fn get_handler_any_ref(&self) -> Result<HandlerRef<'_, dyn Any>, HandlerAccessError> {
let borrowed = self.handler.try_borrow().ok_or(HandlerAccessError::AlreadyBorrowed)?;
if borrowed.is_none() {
return Err(HandlerAccessError::NoHandler);
}
Ok(HandlerRef::map(borrowed, |handler| &**handler.as_ref().unwrap() as &dyn Any))
}
fn get_handler_any_mut(&self) -> Result<HandlerMut<'_, dyn Any>, HandlerAccessError> {
let borrowed = self.handler.try_borrow_mut().ok_or(HandlerAccessError::AlreadyBorrowed)?;
if borrowed.is_none() {
return Err(HandlerAccessError::NoHandler);
}
Ok(HandlerMut::map(borrowed, |handler| &mut **handler.as_mut().unwrap() as &mut dyn Any))
}
}
impl XdgPopup {
/// Since when the error.invalid_grab enum variant is available.
pub const ENM__ERROR_INVALID_GRAB__SINCE: u32 = 1;
}
#[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
pub struct XdgPopupError(pub u32);
impl XdgPopupError {
/// tried to grab after being mapped
pub const INVALID_GRAB: Self = Self(0);
}
impl Debug for XdgPopupError {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
let name = match *self {
Self::INVALID_GRAB => "INVALID_GRAB",
_ => return Debug::fmt(&self.0, f),
};
f.write_str(name)
}
}