Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

xcb_change_save_set_checked(3) [centos man page]

xcb_change_save_set(3)						   XCB Requests 					    xcb_change_save_set(3)

NAME
xcb_change_save_set - Changes a client's save set SYNOPSIS
#include <xcb/xproto.h> Request function xcb_void_cookie_t xcb_change_save_set(xcb_connection_t *conn, uint8_t mode, xcb_window_t window); REQUEST ARGUMENTS
conn The XCB connection to X11. mode One of the following values: XCB_SET_MODE_INSERT TODO: NOT YET DOCUMENTED. XCB_SET_MODE_DELETE TODO: NOT YET DOCUMENTED. Insert to add the specified window to the save set or Delete to delete it from the save set. window The window to add or delete to/from your save set. DESCRIPTION
TODO: explain what the save set is for. This function either adds or removes the specified window to the client's (your application's) save set. RETURN VALUE
Returns an xcb_void_cookie_t. Errors (if any) have to be handled in the event loop. If you want to handle errors directly with xcb_request_check instead, use xcb_change_save_set_checked. See xcb-requests(3) for details. ERRORS
xcb_window_error_t The specified window does not exist. xcb_value_error_t You specified an invalid mode. xcb_match_error_t You created the specified window. This does not make sense, you can only add windows created by other clients to your save set. SEE ALSO
xcb-requests(3), xcb_reparent_window(3) AUTHOR
Generated from xproto.xml. Contact xcb@lists.freedesktop.org for corrections and improvements. XCB
2014-06-10 xcb_change_save_set(3)

Check Out this Related Man Page

xcb_circulate_window(3) 					   XCB Requests 					   xcb_circulate_window(3)

NAME
xcb_circulate_window - Change window stacking order SYNOPSIS
#include <xcb/xproto.h> Request function xcb_void_cookie_t xcb_circulate_window(xcb_connection_t *conn, uint8_t direction, xcb_window_t window); REQUEST ARGUMENTS
conn The XCB connection to X11. direction One of the following values: XCB_CIRCULATE_RAISE_LOWEST TODO: NOT YET DOCUMENTED. XCB_CIRCULATE_LOWER_HIGHEST TODO: NOT YET DOCUMENTED. window The window to raise/lower (depending on direction). DESCRIPTION
If direction is XCB_CIRCULATE_RAISE_LOWEST, the lowest mapped child (if any) will be raised to the top of the stack. If direction is XCB_CIRCULATE_LOWER_HIGHEST, the highest mapped child will be lowered to the bottom of the stack. RETURN VALUE
Returns an xcb_void_cookie_t. Errors (if any) have to be handled in the event loop. If you want to handle errors directly with xcb_request_check instead, use xcb_circulate_window_checked. See xcb-requests(3) for details. ERRORS
xcb_window_error_t The specified window does not exist. xcb_value_error_t The specified direction is invalid. SEE ALSO
xcb-requests(3) AUTHOR
Generated from xproto.xml. Contact xcb@lists.freedesktop.org for corrections and improvements. XCB
2014-06-10 xcb_circulate_window(3)
Man Page

9 More Discussions You Might Find Interesting

1. Solaris

terminal output - save to file?

I have a window open on my ultra 10 - a terminal window connecting to a server. Is there any way I can log all output to this window to a log file on my ultra 10 ? (2 Replies)
Discussion started by: frustrated1
2 Replies

2. Shell Programming and Scripting

Edit a file and save the changes

I have an xml file that gets created as a part of daily build. I have to modify some lines in this file, uncomment some lines, comment some line, add 2 new lines in the file every time. Is there an easier automated way to do this using perl, bash, or sh. I would appreciate it if someone can point... (1 Reply)
Discussion started by: saurabh1982
1 Replies

3. UNIX for Dummies Questions & Answers

Delete ^ using sed

Hi All, I am very new to UNIX... I was trying to delete ^ from a file and save it with different name... The version is AIX 5.3 The input file is in this directory /a/b The Input file name is o9876.out I want the output file in same path with different name like ABC.txt... (5 Replies)
Discussion started by: us_pokiri
5 Replies

4. UNIX for Dummies Questions & Answers

how to save changes to a file

is i want to sort or delete lines etc etc to a file, how do i save the changes. example i do sort file > file when i do cat file, all data is erased. thanks. (2 Replies)
Discussion started by: hobiwhenuknowme
2 Replies

5. Post Here to Contact Site Administrators and Moderators

Is there a "add to favorite" function?

hi there, when I found some good/useful posts, I want to save them somewhere in our forum, so that I can check them out easily later. Do we have something like "add to favorite" functionality? I didn't find any. One similar thing is "subscribed posts". But not same as favorite. thx (10 Replies)
Discussion started by: sk1418
10 Replies

6. Shell Programming and Scripting

sed delete but save deleted output into other file

Hi guys, I am currently using this to save first 50 lines into top50.txt and delete them from list.txt ... it's 2 commands: head -n 50 list.txt > top50.txt && sed -i "1,50 d" list.txt I want to change that so it's 1 command - whereby sed removes the first 50 lines as above but that which is... (3 Replies)
Discussion started by: holyearth
3 Replies

7. UNIX for Dummies Questions & Answers

How to get out of vi

I created a file and edited in vi. Do you save the file in the editor or hit esc to come out of edit mode and save the file? (6 Replies)
Discussion started by: debsawyer
6 Replies

8. UNIX for Dummies Questions & Answers

How to save and run a list of commands?

Dear every one, I am working with the data of my lab program and I have to do many times by the same list of some commands (grep, then save to file, then use awk to delete odd lines, save to file, use awk to delete even lines, save to file...). Is there any way to save a list of command which I... (4 Replies)
Discussion started by: phamnu
4 Replies

9. Programming

Low level X11 programming

How to use X11 without Xlib not XCB? How draw window directly on low level? I must use anyway window manager like Motif? I have ridden that X11 has server-client architecture, client send via TCP/IP to port 6000 request for primitives and get replies. Where is detailed description of it? In X11... (0 Replies)
Discussion started by: AndrzejB
0 Replies