1TICKIT_WINDOW_RAISE(3) Library Functions Manual TICKIT_WINDOW_RAISE(3)
2
3
4
6 tickit_window_raise, tickit_window_lower - change window stacking order
7
9 #include <tickit.h>
10
11 void tickit_window_raise(TickitWindow *win);
12 void tickit_window_raise_to_front(TickitWindow *win);
13 void tickit_window_lower(TickitWindow *win);
14 void tickit_window_lower_to_back(TickitWindow *win);
15
16 Link with -ltickit.
17
19 tickit_window_raise() brings the given window one level higher up in
20 the stacking order in its parent. tickit_window_raise_to_front() brings
21 the given window to the front of the stacking order in its parent.
22 These functions may cause new areas of the given window or children of
23 it to become exposed, and may result in TICKIT_EV_EXPOSE events when
24 tickit_window_flush(3) is next called.
25
26 tickit_window_lower() brings the given window one level lower down in
27 the stacking order in its parent. tickit_window_lower_to_back() brings
28 the given window to the back of the stacking order in its parent. These
29 functions may cause new areas of other sibling windows or their chil‐
30 dren to become exposed, and may result in TICKIT_EV_EXPOSE events when
31 tickit_window_flush(3) is next called.
32
34 These functions return no value.
35
37 tickit_window_new(3), tickit_window_show(3), tickit_win‐
38 dow_bind_event(3), tickit_window_flush(3), tickit_window(7), tickit(7)
39
40
41
42 TICKIT_WINDOW_RAISE(3)