clang-format and rearrange comments in i3bar/src/xcb.c

This commit is contained in:
Michael Stapelberg 2015-03-23 09:23:01 +01:00
parent 658d106fce
commit 8d0fb482d9
1 changed files with 33 additions and 22 deletions

View File

@ -106,13 +106,24 @@ struct xcb_colors_t {
};
struct xcb_colors_t colors;
const static int ws_hoff_px = 4, /* Horizontal offset between a workspace label and button borders */
ws_voff_px = 3, /* Vertical offset between a workspace label and button borders */
ws_spacing_px = 1, /* Offset between two workspace buttons */
sb_hoff_px = 4, /* Offset between the statusline and 1) workspace buttons on the left
/* Horizontal offset between a workspace label and button borders */
const static int ws_hoff_px = 4;
/* Vertical offset between a workspace label and button borders */
const static int ws_voff_px = 3;
/* Offset between two workspace buttons */
const static int ws_spacing_px = 1;
/* Offset between the statusline and 1) workspace buttons on the left
* 2) the tray or screen edge on the right */
tray_loff_px = 2, /* Additional offset between the tray and the statusline, if the tray is not empty */
sep_voff_px = 4; /* Vertical offset between the bar and a separator */
const static int sb_hoff_px = 4;
/* Additional offset between the tray and the statusline, if the tray is not empty */
const static int tray_loff_px = 2;
/* Vertical offset between the bar and a separator */
const static int sep_voff_px = 4;
/* We define xcb_request_failed as a macro to include the relevant line-number */
#define xcb_request_failed(cookie, err_msg) _xcb_request_failed(cookie, err_msg, __LINE__)