2015-02-12 16:34:06 -05:00
|
|
|
/**
|
|
|
|
* rofi
|
|
|
|
*
|
|
|
|
* MIT/X11 License
|
|
|
|
* Copyright (c) 2012 Sean Pringle <sean.pringle@gmail.com>
|
2015-12-31 18:27:00 -05:00
|
|
|
* Modified 2013-2016 Qball Cow <qball@gmpclient.org>
|
2015-02-12 16:34:06 -05:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
* a copy of this software and associated documentation files (the
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
* the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
* included in all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
|
|
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
|
|
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
|
|
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
|
|
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
*/
|
2015-02-09 13:35:51 -05:00
|
|
|
#include <config.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <glib.h>
|
2015-09-27 05:46:19 -04:00
|
|
|
#include <cairo.h>
|
2016-05-06 06:40:28 -04:00
|
|
|
#include <cairo-xcb.h>
|
2015-02-09 13:35:51 -05:00
|
|
|
|
2016-02-21 13:42:32 -05:00
|
|
|
#include <xcb/xcb.h>
|
2016-02-27 14:45:47 -05:00
|
|
|
#include <xcb/xinerama.h>
|
2016-03-01 12:11:55 -05:00
|
|
|
#include "xcb-internal.h"
|
|
|
|
#include "xcb.h"
|
2016-01-07 10:01:56 -05:00
|
|
|
#include "settings.h"
|
2016-04-10 06:05:34 -04:00
|
|
|
#include "helper.h"
|
2015-02-09 13:35:51 -05:00
|
|
|
|
2015-04-06 11:13:26 -04:00
|
|
|
#include <rofi.h>
|
2015-09-19 06:21:30 -04:00
|
|
|
#define OVERLAP( a, b, c, \
|
|
|
|
d ) ( ( ( a ) == ( c ) && \
|
|
|
|
( b ) == ( d ) ) || \
|
|
|
|
MIN ( ( a ) + ( b ), ( c ) + ( d ) ) - MAX ( ( a ), ( c ) ) > 0 )
|
|
|
|
#define INTERSECT( x, y, w, h, x1, y1, w1, \
|
|
|
|
h1 ) ( OVERLAP ( ( x ), ( w ), ( x1 ), \
|
|
|
|
( w1 ) ) && OVERLAP ( ( y ), ( h ), ( y1 ), ( h1 ) ) )
|
2015-02-09 13:35:51 -05:00
|
|
|
#include "x11-helper.h"
|
2016-02-23 04:44:36 -05:00
|
|
|
#include "xkb-internal.h"
|
2015-02-09 13:35:51 -05:00
|
|
|
|
2016-03-01 12:33:26 -05:00
|
|
|
struct _xcb_stuff xcb_int = {
|
2016-03-04 11:03:24 -05:00
|
|
|
.connection = NULL,
|
|
|
|
.screen = NULL,
|
|
|
|
.screen_nbr = -1,
|
|
|
|
.sndisplay = NULL,
|
|
|
|
.sncontext = NULL,
|
|
|
|
.has_xinerama = FALSE,
|
2016-03-01 12:33:26 -05:00
|
|
|
};
|
2016-03-01 13:48:18 -05:00
|
|
|
xcb_stuff *xcb = &xcb_int;
|
2016-03-01 12:33:26 -05:00
|
|
|
|
2016-02-23 04:44:36 -05:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
X11MOD_SHIFT,
|
|
|
|
X11MOD_CONTROL,
|
|
|
|
X11MOD_ALT,
|
2016-02-23 04:47:09 -05:00
|
|
|
X11MOD_META,
|
|
|
|
X11MOD_SUPER,
|
|
|
|
X11MOD_HYPER,
|
2016-02-23 04:44:36 -05:00
|
|
|
X11MOD_ANY,
|
|
|
|
NUM_X11MOD
|
|
|
|
};
|
|
|
|
|
2016-03-01 13:48:18 -05:00
|
|
|
xcb_depth_t *depth = NULL;
|
|
|
|
xcb_visualtype_t *visual = NULL;
|
|
|
|
xcb_colormap_t map = XCB_COLORMAP_NONE;
|
|
|
|
xcb_depth_t *root_depth = NULL;
|
|
|
|
xcb_visualtype_t *root_visual = NULL;
|
|
|
|
xcb_atom_t netatoms[NUM_NETATOMS];
|
|
|
|
const char *netatom_names[] = { EWMH_ATOMS ( ATOM_CHAR ) };
|
|
|
|
static unsigned int x11_mod_masks[NUM_X11MOD];
|
2016-02-27 13:51:06 -05:00
|
|
|
|
2016-05-06 06:40:28 -04:00
|
|
|
static xcb_pixmap_t get_root_pixmap ( xcb_connection_t *c,
|
|
|
|
xcb_screen_t *screen,
|
|
|
|
xcb_atom_t atom )
|
|
|
|
{
|
|
|
|
xcb_get_property_cookie_t cookie;
|
|
|
|
xcb_get_property_reply_t *reply;
|
|
|
|
xcb_pixmap_t *rootpixmap = NULL;
|
|
|
|
|
|
|
|
cookie = xcb_get_property ( c,
|
|
|
|
0,
|
|
|
|
screen->root,
|
|
|
|
atom,
|
|
|
|
XCB_ATOM_PIXMAP,
|
|
|
|
0,
|
|
|
|
1 );
|
|
|
|
|
|
|
|
reply = xcb_get_property_reply ( c, cookie, NULL );
|
|
|
|
|
|
|
|
if ( reply &&
|
|
|
|
( xcb_get_property_value_length ( reply ) == sizeof ( xcb_pixmap_t ) ) ) {
|
|
|
|
rootpixmap = (xcb_pixmap_t *) xcb_get_property_value ( reply );
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
*rootpixmap = XCB_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
free ( reply );
|
|
|
|
|
|
|
|
return *rootpixmap;
|
|
|
|
}
|
|
|
|
|
|
|
|
cairo_surface_t * x11_helper_get_bg_surface ( void )
|
|
|
|
{
|
|
|
|
xcb_pixmap_t pm = get_root_pixmap ( xcb->connection, xcb->screen, netatoms[ESETROOT_PMAP_ID] );
|
|
|
|
if ( pm == XCB_NONE ) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return cairo_xcb_surface_create ( xcb->connection, pm, root_visual,
|
|
|
|
xcb->screen->width_in_pixels, xcb->screen->height_in_pixels );
|
|
|
|
}
|
|
|
|
|
2015-02-09 13:35:51 -05:00
|
|
|
// retrieve a text property from a window
|
|
|
|
// technically we could use window_get_prop(), but this is better for character set support
|
2016-03-01 12:11:55 -05:00
|
|
|
char* window_get_text_prop ( xcb_window_t w, xcb_atom_t atom )
|
2015-02-09 13:35:51 -05:00
|
|
|
{
|
2016-03-01 12:11:55 -05:00
|
|
|
xcb_get_property_cookie_t c = xcb_get_property ( xcb->connection, 0, w, atom, XCB_GET_PROPERTY_TYPE_ANY, 0, UINT_MAX );
|
|
|
|
xcb_get_property_reply_t *r = xcb_get_property_reply ( xcb->connection, c, NULL );
|
2016-02-28 09:32:53 -05:00
|
|
|
if ( r ) {
|
2016-03-04 13:41:32 -05:00
|
|
|
if ( xcb_get_property_value_length ( r ) > 0 ) {
|
2016-04-10 06:05:34 -04:00
|
|
|
char *str = NULL;
|
|
|
|
if ( r->type == netatoms[UTF8_STRING] ) {
|
|
|
|
str = g_strndup ( xcb_get_property_value ( r ), xcb_get_property_value_length ( r ) );
|
|
|
|
}
|
|
|
|
else if ( r->type == netatoms[STRING] ) {
|
|
|
|
str = rofi_latin_to_utf8_strdup ( xcb_get_property_value ( r ), xcb_get_property_value_length ( r ) );
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
str = g_strdup ( "Invalid encoding." );
|
|
|
|
}
|
|
|
|
|
2016-03-04 13:41:32 -05:00
|
|
|
free ( r );
|
|
|
|
return str;
|
|
|
|
}
|
2016-02-28 09:32:53 -05:00
|
|
|
free ( r );
|
2015-02-09 13:35:51 -05:00
|
|
|
}
|
2016-02-27 18:09:05 -05:00
|
|
|
return NULL;
|
2015-02-09 13:35:51 -05:00
|
|
|
}
|
|
|
|
|
2016-03-01 12:11:55 -05:00
|
|
|
void window_set_atom_prop ( xcb_window_t w, xcb_atom_t prop, xcb_atom_t *atoms, int count )
|
2015-02-09 13:35:51 -05:00
|
|
|
{
|
2016-03-01 12:11:55 -05:00
|
|
|
xcb_change_property ( xcb->connection, XCB_PROP_MODE_REPLACE, w, prop, XCB_ATOM_ATOM, 32, count, atoms );
|
2015-02-09 13:35:51 -05:00
|
|
|
}
|
|
|
|
|
2016-03-01 12:11:55 -05:00
|
|
|
int monitor_get_smallest_size ( void )
|
2015-10-18 07:40:39 -04:00
|
|
|
{
|
2016-03-04 11:03:24 -05:00
|
|
|
xcb_generic_error_t *error;
|
|
|
|
int size = MIN ( xcb->screen->width_in_pixels, xcb->screen->height_in_pixels );
|
|
|
|
|
|
|
|
if ( !xcb->has_xinerama ) {
|
2016-02-27 14:45:47 -05:00
|
|
|
return size;
|
|
|
|
}
|
2015-02-09 13:35:51 -05:00
|
|
|
|
2016-02-27 14:45:47 -05:00
|
|
|
xcb_xinerama_query_screens_cookie_t cookie_screen;
|
2016-03-04 11:03:24 -05:00
|
|
|
|
2016-03-01 12:11:55 -05:00
|
|
|
cookie_screen = xcb_xinerama_query_screens ( xcb->connection );
|
2016-03-04 11:03:24 -05:00
|
|
|
xcb_xinerama_query_screens_reply_t *query_screens;
|
2016-03-01 12:11:55 -05:00
|
|
|
query_screens = xcb_xinerama_query_screens_reply ( xcb->connection, cookie_screen, &error );
|
2016-02-28 09:32:53 -05:00
|
|
|
if ( error ) {
|
|
|
|
fprintf ( stderr, "Error getting screen info\n" );
|
2016-02-27 14:45:47 -05:00
|
|
|
return size;
|
|
|
|
}
|
2016-02-28 09:32:53 -05:00
|
|
|
xcb_xinerama_screen_info_t *screens = xcb_xinerama_query_screens_screen_info ( query_screens );
|
|
|
|
int len = xcb_xinerama_query_screens_screen_info_length ( query_screens );
|
|
|
|
for ( int i = 0; i < len; i++ ) {
|
2016-02-27 14:45:47 -05:00
|
|
|
xcb_xinerama_screen_info_t *info = &screens[i];
|
2016-02-28 09:32:53 -05:00
|
|
|
size = MIN ( info->width, size );
|
|
|
|
size = MIN ( info->height, size );
|
2015-10-18 07:40:39 -04:00
|
|
|
}
|
2016-02-28 09:32:53 -05:00
|
|
|
free ( query_screens );
|
2015-10-18 07:40:39 -04:00
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
2016-03-01 12:11:55 -05:00
|
|
|
int monitor_get_dimension ( int monitor, workarea *mon )
|
2015-08-02 09:45:52 -04:00
|
|
|
{
|
2016-02-27 14:45:47 -05:00
|
|
|
xcb_generic_error_t *error = NULL;
|
2015-08-02 09:45:52 -04:00
|
|
|
memset ( mon, 0, sizeof ( workarea ) );
|
2016-03-01 12:11:55 -05:00
|
|
|
mon->w = xcb->screen->width_in_pixels;
|
|
|
|
mon->h = xcb->screen->height_in_pixels;
|
2015-08-02 09:45:52 -04:00
|
|
|
|
2016-03-04 11:03:24 -05:00
|
|
|
if ( !xcb->has_xinerama ) {
|
2016-02-27 14:45:47 -05:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
xcb_xinerama_query_screens_cookie_t cookie_screen;
|
2016-03-01 12:11:55 -05:00
|
|
|
cookie_screen = xcb_xinerama_query_screens ( xcb->connection );
|
2016-02-28 09:32:53 -05:00
|
|
|
xcb_xinerama_query_screens_reply_t *query_screens;
|
2016-03-01 12:11:55 -05:00
|
|
|
query_screens = xcb_xinerama_query_screens_reply ( xcb->connection, cookie_screen, &error );
|
2016-02-28 09:32:53 -05:00
|
|
|
if ( error ) {
|
|
|
|
fprintf ( stderr, "Error getting screen info\n" );
|
2016-02-27 14:45:47 -05:00
|
|
|
return FALSE;
|
|
|
|
}
|
2016-02-28 09:32:53 -05:00
|
|
|
xcb_xinerama_screen_info_t *screens = xcb_xinerama_query_screens_screen_info ( query_screens );
|
|
|
|
int len = xcb_xinerama_query_screens_screen_info_length ( query_screens );
|
2016-02-27 14:45:47 -05:00
|
|
|
if ( monitor < len ) {
|
|
|
|
xcb_xinerama_screen_info_t *info = &screens[monitor];
|
|
|
|
mon->w = info->width;
|
|
|
|
mon->h = info->height;
|
|
|
|
mon->x = info->x_org;
|
|
|
|
mon->y = info->y_org;
|
2016-02-28 09:32:53 -05:00
|
|
|
free ( query_screens );
|
2016-02-27 14:45:47 -05:00
|
|
|
return TRUE;
|
2015-08-02 09:45:52 -04:00
|
|
|
}
|
2016-02-28 09:32:53 -05:00
|
|
|
free ( query_screens );
|
2016-02-27 14:45:47 -05:00
|
|
|
|
2015-08-02 09:45:52 -04:00
|
|
|
return FALSE;
|
|
|
|
}
|
2015-02-09 13:35:51 -05:00
|
|
|
// find the dimensions of the monitor displaying point x,y
|
2016-03-01 12:11:55 -05:00
|
|
|
void monitor_dimensions ( int x, int y, workarea *mon )
|
2015-02-09 13:35:51 -05:00
|
|
|
{
|
2016-02-27 14:45:47 -05:00
|
|
|
xcb_generic_error_t *error = NULL;
|
2015-02-09 13:35:51 -05:00
|
|
|
memset ( mon, 0, sizeof ( workarea ) );
|
2016-03-01 12:11:55 -05:00
|
|
|
mon->w = xcb->screen->width_in_pixels;
|
|
|
|
mon->h = xcb->screen->height_in_pixels;
|
2015-02-09 13:35:51 -05:00
|
|
|
|
2016-03-04 11:03:24 -05:00
|
|
|
if ( !xcb->has_xinerama ) {
|
2016-02-28 09:32:53 -05:00
|
|
|
return;
|
2016-02-27 14:45:47 -05:00
|
|
|
}
|
2015-02-09 13:35:51 -05:00
|
|
|
|
2016-02-27 14:45:47 -05:00
|
|
|
xcb_xinerama_query_screens_cookie_t cookie_screen;
|
2016-03-01 12:11:55 -05:00
|
|
|
cookie_screen = xcb_xinerama_query_screens ( xcb->connection );
|
2016-02-28 09:32:53 -05:00
|
|
|
xcb_xinerama_query_screens_reply_t *query_screens;
|
2016-03-01 12:11:55 -05:00
|
|
|
query_screens = xcb_xinerama_query_screens_reply ( xcb->connection, cookie_screen, &error );
|
2016-02-28 09:32:53 -05:00
|
|
|
if ( error ) {
|
|
|
|
fprintf ( stderr, "Error getting screen info\n" );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
xcb_xinerama_screen_info_t *screens = xcb_xinerama_query_screens_screen_info ( query_screens );
|
|
|
|
int len = xcb_xinerama_query_screens_screen_info_length ( query_screens );
|
|
|
|
for ( int i = 0; i < len; i++ ) {
|
2016-02-27 14:45:47 -05:00
|
|
|
xcb_xinerama_screen_info_t *info = &screens[i];
|
|
|
|
if ( INTERSECT ( x, y, 1, 1, info->x_org, info->y_org, info->width, info->height ) ) {
|
|
|
|
mon->w = info->width;
|
|
|
|
mon->h = info->height;
|
|
|
|
mon->x = info->x_org;
|
|
|
|
mon->y = info->y_org;
|
|
|
|
break;
|
2015-02-09 13:35:51 -05:00
|
|
|
}
|
|
|
|
}
|
2016-02-28 09:32:53 -05:00
|
|
|
free ( query_screens );
|
2015-02-09 13:35:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param x The x position of the mouse [out]
|
|
|
|
* @param y The y position of the mouse [out]
|
|
|
|
*
|
|
|
|
* find mouse pointer location
|
|
|
|
*
|
|
|
|
* @returns 1 when found
|
|
|
|
*/
|
2016-03-01 12:11:55 -05:00
|
|
|
static int pointer_get ( xcb_window_t root, int *x, int *y )
|
2015-02-09 13:35:51 -05:00
|
|
|
{
|
|
|
|
*x = 0;
|
|
|
|
*y = 0;
|
2016-03-01 12:11:55 -05:00
|
|
|
xcb_query_pointer_cookie_t c = xcb_query_pointer ( xcb->connection, root );
|
|
|
|
xcb_query_pointer_reply_t *r = xcb_query_pointer_reply ( xcb->connection, c, NULL );
|
2016-02-27 13:51:06 -05:00
|
|
|
if ( r ) {
|
|
|
|
*x = r->root_x;
|
|
|
|
*y = r->root_y;
|
2016-02-28 09:32:53 -05:00
|
|
|
free ( r );
|
2015-02-09 13:35:51 -05:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// determine which monitor holds the active window, or failing that the mouse pointer
|
2016-03-01 12:11:55 -05:00
|
|
|
void monitor_active ( workarea *mon )
|
2015-02-09 13:35:51 -05:00
|
|
|
{
|
2016-03-01 12:11:55 -05:00
|
|
|
xcb_window_t root = xcb->screen->root;
|
2016-02-28 09:32:53 -05:00
|
|
|
int x, y;
|
2015-02-09 13:35:51 -05:00
|
|
|
|
2015-08-02 09:45:52 -04:00
|
|
|
if ( config.monitor >= 0 ) {
|
2016-03-01 12:11:55 -05:00
|
|
|
if ( monitor_get_dimension ( config.monitor, mon ) ) {
|
2015-08-02 09:45:52 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
fprintf ( stderr, "Failed to find selected monitor.\n" );
|
|
|
|
}
|
2016-03-05 17:25:46 -05:00
|
|
|
if ( config.monitor == -3 ) {
|
2016-03-05 17:01:16 -05:00
|
|
|
if ( pointer_get ( root, &x, &y ) ) {
|
2016-03-15 04:40:32 -04:00
|
|
|
monitor_dimensions ( x, y, mon );
|
2016-03-05 17:01:16 -05:00
|
|
|
mon->x = x;
|
|
|
|
mon->y = y;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2016-02-09 15:25:29 -05:00
|
|
|
// Get the current desktop.
|
2016-02-27 13:26:51 -05:00
|
|
|
unsigned int current_desktop = 0;
|
2016-04-29 15:42:31 -04:00
|
|
|
if ( config.monitor == -1 && xcb_ewmh_get_current_desktop_reply ( &xcb->ewmh,
|
2016-03-01 12:11:55 -05:00
|
|
|
xcb_ewmh_get_current_desktop ( &xcb->ewmh, xcb->screen_nbr ),
|
2016-02-28 09:32:53 -05:00
|
|
|
¤t_desktop, NULL ) ) {
|
2016-03-01 12:11:55 -05:00
|
|
|
xcb_get_property_cookie_t c = xcb_ewmh_get_desktop_viewport ( &xcb->ewmh, xcb->screen_nbr );
|
2016-02-28 09:32:53 -05:00
|
|
|
xcb_ewmh_get_desktop_viewport_reply_t vp;
|
2016-03-01 12:11:55 -05:00
|
|
|
if ( xcb_ewmh_get_desktop_viewport_reply ( &xcb->ewmh, c, &vp, NULL ) ) {
|
2016-02-28 09:32:53 -05:00
|
|
|
if ( current_desktop < vp.desktop_viewport_len ) {
|
2016-03-01 12:11:55 -05:00
|
|
|
monitor_dimensions ( vp.desktop_viewport[current_desktop].x,
|
2016-02-28 09:32:53 -05:00
|
|
|
vp.desktop_viewport[current_desktop].y, mon );
|
|
|
|
xcb_ewmh_get_desktop_viewport_reply_wipe ( &vp );
|
|
|
|
return;
|
2016-02-09 15:25:29 -05:00
|
|
|
}
|
2016-02-28 09:32:53 -05:00
|
|
|
xcb_ewmh_get_desktop_viewport_reply_wipe ( &vp );
|
|
|
|
}
|
2016-02-09 15:25:29 -05:00
|
|
|
}
|
2016-02-27 13:26:51 -05:00
|
|
|
|
|
|
|
xcb_window_t active_window;
|
2016-03-01 12:11:55 -05:00
|
|
|
if ( xcb_ewmh_get_active_window_reply ( &xcb->ewmh,
|
|
|
|
xcb_ewmh_get_active_window ( &xcb->ewmh, xcb->screen_nbr ), &active_window, NULL ) ) {
|
2016-02-27 13:26:51 -05:00
|
|
|
// get geometry.
|
2016-03-01 12:11:55 -05:00
|
|
|
xcb_get_geometry_cookie_t c = xcb_get_geometry ( xcb->connection, active_window );
|
|
|
|
xcb_get_geometry_reply_t *r = xcb_get_geometry_reply ( xcb->connection, c, NULL );
|
2016-02-27 13:26:51 -05:00
|
|
|
if ( r ) {
|
2016-04-29 15:42:31 -04:00
|
|
|
xcb_translate_coordinates_cookie_t ct = xcb_translate_coordinates ( xcb->connection, active_window, root, r->x, r->y );
|
|
|
|
xcb_translate_coordinates_reply_t *t = xcb_translate_coordinates_reply ( xcb->connection, ct, NULL );
|
|
|
|
if ( t ) {
|
|
|
|
if ( config.monitor == -2 ) {
|
2015-08-17 12:32:17 -04:00
|
|
|
// place the menu above the window
|
|
|
|
// if some window is focused, place menu above window, else fall
|
|
|
|
// back to selected monitor.
|
2016-03-21 15:27:16 -04:00
|
|
|
mon->x = t->dst_x - r->x;
|
|
|
|
mon->y = t->dst_y - r->y;
|
2016-02-27 13:26:51 -05:00
|
|
|
mon->w = r->width;
|
|
|
|
mon->h = r->height;
|
|
|
|
mon->t = r->border_width;
|
|
|
|
mon->b = r->border_width;
|
|
|
|
mon->l = r->border_width;
|
|
|
|
mon->r = r->border_width;
|
2016-02-28 09:32:53 -05:00
|
|
|
free ( r );
|
|
|
|
free ( t );
|
2015-08-17 12:32:17 -04:00
|
|
|
return;
|
2016-05-06 06:40:28 -04:00
|
|
|
}
|
|
|
|
else if ( config.monitor == -4 ) {
|
2016-04-29 15:42:31 -04:00
|
|
|
monitor_dimensions ( t->dst_x, t->dst_y, mon );
|
2016-05-06 06:40:28 -04:00
|
|
|
free ( r );
|
|
|
|
free ( t );
|
2016-04-29 15:42:31 -04:00
|
|
|
return;
|
2015-08-17 12:32:17 -04:00
|
|
|
}
|
2015-02-09 13:35:51 -05:00
|
|
|
}
|
2016-02-28 09:32:53 -05:00
|
|
|
free ( r );
|
2015-02-09 13:35:51 -05:00
|
|
|
}
|
|
|
|
}
|
2016-03-05 17:01:16 -05:00
|
|
|
if ( pointer_get ( root, &x, &y ) ) {
|
2016-03-01 12:11:55 -05:00
|
|
|
monitor_dimensions ( x, y, mon );
|
2015-02-09 13:35:51 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-03-01 12:11:55 -05:00
|
|
|
monitor_dimensions ( 0, 0, mon );
|
2015-02-09 13:35:51 -05:00
|
|
|
}
|
|
|
|
|
2016-03-01 12:11:55 -05:00
|
|
|
int take_keyboard ( xcb_window_t w )
|
2015-02-09 13:35:51 -05:00
|
|
|
{
|
2015-05-03 07:04:03 -04:00
|
|
|
for ( int i = 0; i < 500; i++ ) {
|
2016-03-04 11:03:24 -05:00
|
|
|
if ( xcb_connection_has_error ( xcb->connection ) ) {
|
|
|
|
fprintf ( stderr, "Connection has error\n" );
|
|
|
|
exit ( EXIT_FAILURE );
|
|
|
|
}
|
2016-03-01 12:11:55 -05:00
|
|
|
xcb_grab_keyboard_cookie_t cc = xcb_grab_keyboard ( xcb->connection,
|
2016-02-28 09:32:53 -05:00
|
|
|
1, w, XCB_CURRENT_TIME, XCB_GRAB_MODE_ASYNC,
|
|
|
|
XCB_GRAB_MODE_ASYNC );
|
2016-03-01 12:11:55 -05:00
|
|
|
xcb_grab_keyboard_reply_t *r = xcb_grab_keyboard_reply ( xcb->connection, cc, NULL );
|
2016-02-27 18:09:05 -05:00
|
|
|
if ( r ) {
|
2016-02-28 09:32:53 -05:00
|
|
|
if ( r->status == XCB_GRAB_STATUS_SUCCESS ) {
|
|
|
|
free ( r );
|
2016-02-28 04:36:13 -05:00
|
|
|
return 1;
|
|
|
|
}
|
2016-02-27 18:09:05 -05:00
|
|
|
free ( r );
|
2015-05-02 06:42:36 -04:00
|
|
|
}
|
|
|
|
usleep ( 1000 );
|
2015-02-09 13:35:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-03-01 12:11:55 -05:00
|
|
|
void release_keyboard ( void )
|
2015-02-09 13:35:51 -05:00
|
|
|
{
|
2016-03-01 12:11:55 -05:00
|
|
|
xcb_ungrab_keyboard ( xcb->connection, XCB_CURRENT_TIME );
|
2015-02-09 13:35:51 -05:00
|
|
|
}
|
|
|
|
|
2016-02-22 05:39:52 -05:00
|
|
|
static unsigned int x11_find_mod_mask ( xkb_stuff *xkb, ... )
|
2015-02-09 13:35:51 -05:00
|
|
|
{
|
2016-02-22 05:39:52 -05:00
|
|
|
va_list names;
|
|
|
|
const char *name;
|
|
|
|
xkb_mod_index_t i;
|
|
|
|
unsigned int mask = 0;
|
|
|
|
va_start ( names, xkb );
|
|
|
|
while ( ( name = va_arg ( names, const char * ) ) != NULL ) {
|
|
|
|
i = xkb_keymap_mod_get_index ( xkb->keymap, name );
|
|
|
|
if ( i != XKB_MOD_INVALID ) {
|
|
|
|
mask |= 1 << i;
|
2015-02-09 13:35:51 -05:00
|
|
|
}
|
|
|
|
}
|
2016-03-02 12:07:59 -05:00
|
|
|
va_end ( names );
|
2016-02-22 05:39:52 -05:00
|
|
|
return mask;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void x11_figure_out_masks ( xkb_stuff *xkb )
|
|
|
|
{
|
|
|
|
x11_mod_masks[X11MOD_SHIFT] = x11_find_mod_mask ( xkb, XKB_MOD_NAME_SHIFT, NULL );
|
2016-03-20 08:59:50 -04:00
|
|
|
x11_mod_masks[X11MOD_CONTROL] = x11_find_mod_mask ( xkb, XKB_MOD_NAME_CTRL, NULL );
|
2016-02-22 05:39:52 -05:00
|
|
|
x11_mod_masks[X11MOD_ALT] = x11_find_mod_mask ( xkb, XKB_MOD_NAME_ALT, "Alt", "LAlt", "RAlt", "AltGr", "Mod5", "LevelThree", NULL );
|
|
|
|
x11_mod_masks[X11MOD_META] = x11_find_mod_mask ( xkb, "Meta", NULL );
|
|
|
|
x11_mod_masks[X11MOD_SUPER] = x11_find_mod_mask ( xkb, XKB_MOD_NAME_LOGO, "Super", NULL );
|
|
|
|
x11_mod_masks[X11MOD_HYPER] = x11_find_mod_mask ( xkb, "Hyper", NULL );
|
2016-02-23 04:44:36 -05:00
|
|
|
|
|
|
|
gsize i;
|
|
|
|
for ( i = 0; i < X11MOD_ANY; ++i ) {
|
2016-02-22 05:39:52 -05:00
|
|
|
x11_mod_masks[X11MOD_ANY] |= x11_mod_masks[i];
|
2016-02-23 04:44:36 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int x11_canonalize_mask ( unsigned int mask )
|
|
|
|
{
|
|
|
|
// Bits 13 and 14 of the modifiers together are the group number, and
|
|
|
|
// should be ignored when looking up key bindings
|
2016-02-22 05:39:52 -05:00
|
|
|
mask &= x11_mod_masks[X11MOD_ANY];
|
2016-02-23 04:44:36 -05:00
|
|
|
|
|
|
|
gsize i;
|
|
|
|
for ( i = 0; i < X11MOD_ANY; ++i ) {
|
2016-02-22 05:39:52 -05:00
|
|
|
if ( mask & x11_mod_masks[i] ) {
|
|
|
|
mask |= x11_mod_masks[i];
|
2016-02-23 04:44:36 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return mask;
|
2015-02-09 13:35:51 -05:00
|
|
|
}
|
|
|
|
|
2016-04-07 14:28:40 -04:00
|
|
|
unsigned int x11_get_current_mask ( xkb_stuff *xkb )
|
|
|
|
{
|
|
|
|
unsigned int mask = 0;
|
2016-05-08 05:13:11 -04:00
|
|
|
for ( gsize i = 0; i < xkb_keymap_num_mods ( xkb->keymap ); ++i ) {
|
2016-04-07 14:28:40 -04:00
|
|
|
if ( xkb_state_mod_index_is_active ( xkb->state, i, XKB_STATE_MODS_EFFECTIVE ) ) {
|
|
|
|
mask |= ( 1 << i );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return x11_canonalize_mask ( mask );
|
|
|
|
}
|
|
|
|
|
2015-02-09 13:35:51 -05:00
|
|
|
// convert a Mod+key arg to mod mask and keysym
|
2016-04-07 14:28:40 -04:00
|
|
|
gboolean x11_parse_key ( char *combo, unsigned int *mod, xkb_keysym_t *key, gboolean *release )
|
2015-02-09 13:35:51 -05:00
|
|
|
{
|
2015-11-20 16:22:11 -05:00
|
|
|
GString *str = g_string_new ( "" );
|
2015-02-09 13:35:51 -05:00
|
|
|
unsigned int modmask = 0;
|
|
|
|
|
2016-05-08 05:13:11 -04:00
|
|
|
if ( g_str_has_prefix ( combo, "!" ) ) {
|
2016-04-07 14:28:40 -04:00
|
|
|
++combo;
|
|
|
|
*release = TRUE;
|
|
|
|
}
|
|
|
|
|
2015-02-09 13:35:51 -05:00
|
|
|
if ( strcasestr ( combo, "shift" ) ) {
|
2016-02-23 04:44:36 -05:00
|
|
|
modmask |= x11_mod_masks[X11MOD_SHIFT];
|
2016-02-22 05:39:52 -05:00
|
|
|
if ( x11_mod_masks[X11MOD_SHIFT] == 0 ) {
|
|
|
|
g_string_append_printf ( str, "X11 configured keyboard has no <b>Shift</b> key.\n" );
|
|
|
|
}
|
2015-02-09 13:35:51 -05:00
|
|
|
}
|
|
|
|
if ( strcasestr ( combo, "control" ) ) {
|
2016-02-23 04:44:36 -05:00
|
|
|
modmask |= x11_mod_masks[X11MOD_CONTROL];
|
2016-02-22 05:39:52 -05:00
|
|
|
if ( x11_mod_masks[X11MOD_CONTROL] == 0 ) {
|
|
|
|
g_string_append_printf ( str, "X11 configured keyboard has no <b>Control</b> key.\n" );
|
|
|
|
}
|
2015-02-09 13:35:51 -05:00
|
|
|
}
|
|
|
|
if ( strcasestr ( combo, "alt" ) ) {
|
2016-02-23 04:44:36 -05:00
|
|
|
modmask |= x11_mod_masks[X11MOD_ALT];
|
|
|
|
if ( x11_mod_masks[X11MOD_ALT] == 0 ) {
|
2015-11-20 16:22:11 -05:00
|
|
|
g_string_append_printf ( str, "X11 configured keyboard has no <b>Alt</b> key.\n" );
|
2015-11-20 16:00:37 -05:00
|
|
|
}
|
|
|
|
}
|
2016-02-23 04:47:09 -05:00
|
|
|
if ( strcasestr ( combo, "super" ) ) {
|
|
|
|
modmask |= x11_mod_masks[X11MOD_SUPER];
|
|
|
|
if ( x11_mod_masks[X11MOD_SUPER] == 0 ) {
|
|
|
|
g_string_append_printf ( str, "X11 configured keyboard has no <b>Super</b> key.\n" );
|
2015-11-20 16:00:37 -05:00
|
|
|
}
|
|
|
|
}
|
2016-02-23 04:47:09 -05:00
|
|
|
if ( strcasestr ( combo, "meta" ) ) {
|
|
|
|
modmask |= x11_mod_masks[X11MOD_META];
|
|
|
|
if ( x11_mod_masks[X11MOD_META] == 0 ) {
|
|
|
|
g_string_append_printf ( str, "X11 configured keyboard has no <b>Meta</b> key.\n" );
|
2015-11-20 16:00:37 -05:00
|
|
|
}
|
|
|
|
}
|
2016-02-23 04:47:09 -05:00
|
|
|
if ( strcasestr ( combo, "hyper" ) ) {
|
|
|
|
modmask |= x11_mod_masks[X11MOD_HYPER];
|
|
|
|
if ( x11_mod_masks[X11MOD_HYPER] == 0 ) {
|
|
|
|
g_string_append_printf ( str, "X11 configured keyboard has no <b>Hyper</b> key.\n" );
|
2015-11-20 16:00:37 -05:00
|
|
|
}
|
|
|
|
}
|
2015-12-04 02:54:27 -05:00
|
|
|
int seen_mod = FALSE;
|
2015-12-04 03:50:53 -05:00
|
|
|
if ( strcasestr ( combo, "Mod" ) ) {
|
2015-12-04 02:54:27 -05:00
|
|
|
seen_mod = TRUE;
|
|
|
|
}
|
2015-02-09 13:35:51 -05:00
|
|
|
|
2016-04-23 06:19:40 -04:00
|
|
|
// Find location of modifier (if it exists)
|
2015-02-09 13:35:51 -05:00
|
|
|
char i = strlen ( combo );
|
|
|
|
|
|
|
|
while ( i > 0 && !strchr ( "-+", combo[i - 1] ) ) {
|
|
|
|
i--;
|
|
|
|
}
|
2016-04-23 06:19:40 -04:00
|
|
|
|
|
|
|
// if there's no "-" or "+", we might be binding directly to a modifier key - no modmask
|
2016-05-08 05:13:11 -04:00
|
|
|
if ( i == 0 ) {
|
2016-04-23 06:19:40 -04:00
|
|
|
*mod = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
*mod = modmask;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parse key
|
2016-02-28 10:42:20 -05:00
|
|
|
xkb_keysym_t sym = XKB_KEY_NoSymbol;
|
2016-02-28 12:22:00 -05:00
|
|
|
if ( ( modmask & x11_mod_masks[X11MOD_SHIFT] ) != 0 ) {
|
2016-02-28 10:42:20 -05:00
|
|
|
gchar * str = g_utf8_next_char ( combo + i );
|
|
|
|
// If it is a single char, we make a capital out of it.
|
2016-02-28 12:22:00 -05:00
|
|
|
if ( str != NULL && *str == '\0' ) {
|
|
|
|
int l = 0;
|
|
|
|
char buff[8];
|
2016-02-28 10:42:20 -05:00
|
|
|
gunichar v = g_utf8_get_char ( combo + i );
|
|
|
|
gunichar u = g_unichar_toupper ( v );
|
|
|
|
if ( ( l = g_unichar_to_utf8 ( u, buff ) ) ) {
|
|
|
|
buff[l] = '\0';
|
2016-02-28 12:22:00 -05:00
|
|
|
sym = xkb_keysym_from_name ( buff, XKB_KEYSYM_NO_FLAGS );
|
2016-02-28 10:42:20 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( sym == XKB_KEY_NoSymbol ) {
|
2016-02-28 10:57:16 -05:00
|
|
|
sym = xkb_keysym_from_name ( combo + i, XKB_KEYSYM_CASE_INSENSITIVE );
|
2016-02-28 10:42:20 -05:00
|
|
|
}
|
2015-02-09 13:35:51 -05:00
|
|
|
|
2016-02-21 07:10:32 -05:00
|
|
|
if ( sym == XKB_KEY_NoSymbol || ( !modmask && ( strchr ( combo, '-' ) || strchr ( combo, '+' ) ) ) ) {
|
2015-11-20 16:22:11 -05:00
|
|
|
g_string_append_printf ( str, "Sorry, rofi cannot understand the key combination: <i>%s</i>\n", combo );
|
2015-12-04 03:50:53 -05:00
|
|
|
g_string_append ( str, "\nRofi supports the following modifiers:\n\t" );
|
2016-03-17 07:10:50 -04:00
|
|
|
g_string_append ( str, "<i>Shift,Control,Alt,Super,Meta,Hyper</i>" );
|
2015-12-04 03:50:53 -05:00
|
|
|
if ( seen_mod ) {
|
|
|
|
g_string_append ( str, "\n\n<b>Mod1,Mod2,Mod3,Mod4,Mod5 are no longer supported, use one of the above.</b>" );
|
2015-12-04 02:54:27 -05:00
|
|
|
}
|
2015-02-09 13:35:51 -05:00
|
|
|
}
|
2015-11-20 16:22:11 -05:00
|
|
|
if ( str->len > 0 ) {
|
2016-04-19 16:10:34 -04:00
|
|
|
rofi_view_error_dialog ( str->str, TRUE );
|
2015-11-20 16:22:11 -05:00
|
|
|
g_string_free ( str, TRUE );
|
2016-03-05 05:08:32 -05:00
|
|
|
return FALSE;
|
2015-11-20 16:22:11 -05:00
|
|
|
}
|
|
|
|
g_string_free ( str, TRUE );
|
2015-02-09 13:35:51 -05:00
|
|
|
*key = sym;
|
2016-03-05 05:08:32 -05:00
|
|
|
return TRUE;
|
2015-02-09 13:35:51 -05:00
|
|
|
}
|
|
|
|
|
2016-03-01 12:11:55 -05:00
|
|
|
void x11_set_window_opacity ( xcb_window_t box, unsigned int opacity )
|
2015-02-09 13:35:51 -05:00
|
|
|
{
|
2015-02-10 02:12:03 -05:00
|
|
|
// Scale 0-100 to 0 - UINT32_MAX.
|
2015-02-09 13:35:51 -05:00
|
|
|
unsigned int opacity_set = ( unsigned int ) ( ( opacity / 100.0 ) * UINT32_MAX );
|
2016-02-27 15:55:43 -05:00
|
|
|
|
2016-03-01 12:11:55 -05:00
|
|
|
xcb_change_property ( xcb->connection, XCB_PROP_MODE_REPLACE, box,
|
2016-02-28 09:32:53 -05:00
|
|
|
netatoms[_NET_WM_WINDOW_OPACITY], XCB_ATOM_CARDINAL, 32, 1L, &opacity_set );
|
2015-02-09 13:35:51 -05:00
|
|
|
}
|
|
|
|
|
2015-02-10 02:12:03 -05:00
|
|
|
/**
|
|
|
|
* @param display The connection to the X server.
|
|
|
|
*
|
|
|
|
* Fill in the list of Atoms.
|
|
|
|
*/
|
2016-03-01 12:11:55 -05:00
|
|
|
static void x11_create_frequently_used_atoms ( void )
|
2015-02-09 13:35:51 -05:00
|
|
|
{
|
2016-02-28 09:32:53 -05:00
|
|
|
// X atom values
|
2015-02-09 13:35:51 -05:00
|
|
|
for ( int i = 0; i < NUM_NETATOMS; i++ ) {
|
2016-03-01 12:11:55 -05:00
|
|
|
xcb_intern_atom_cookie_t cc = xcb_intern_atom ( xcb->connection, 0, strlen ( netatom_names[i] ), netatom_names[i] );
|
|
|
|
xcb_intern_atom_reply_t *r = xcb_intern_atom_reply ( xcb->connection, cc, NULL );
|
2016-02-27 18:09:05 -05:00
|
|
|
if ( r ) {
|
2016-02-28 09:32:53 -05:00
|
|
|
netatoms[i] = r->atom;
|
|
|
|
free ( r );
|
2016-02-27 18:09:05 -05:00
|
|
|
}
|
2015-02-09 13:35:51 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-01 12:11:55 -05:00
|
|
|
void x11_setup ( xkb_stuff *xkb )
|
2015-02-09 13:35:51 -05:00
|
|
|
{
|
|
|
|
// determine numlock mask so we can bind on keys with and without it
|
2016-02-22 05:39:52 -05:00
|
|
|
x11_figure_out_masks ( xkb );
|
2016-03-01 12:11:55 -05:00
|
|
|
x11_create_frequently_used_atoms ( );
|
2015-02-09 13:35:51 -05:00
|
|
|
}
|
2015-02-14 13:42:04 -05:00
|
|
|
|
2016-03-01 12:11:55 -05:00
|
|
|
void x11_create_visual_and_colormap ( void )
|
2015-02-14 13:42:04 -05:00
|
|
|
{
|
2016-02-21 13:42:32 -05:00
|
|
|
xcb_depth_iterator_t depth_iter;
|
2016-03-01 12:11:55 -05:00
|
|
|
for ( depth_iter = xcb_screen_allowed_depths_iterator ( xcb->screen ); depth_iter.rem; xcb_depth_next ( &depth_iter ) ) {
|
2016-02-21 13:42:32 -05:00
|
|
|
xcb_depth_t *d = depth_iter.data;
|
|
|
|
|
|
|
|
xcb_visualtype_iterator_t visual_iter;
|
|
|
|
for ( visual_iter = xcb_depth_visuals_iterator ( d ); visual_iter.rem; xcb_visualtype_next ( &visual_iter ) ) {
|
|
|
|
xcb_visualtype_t *v = visual_iter.data;
|
|
|
|
if ( ( d->depth == 32 ) && ( v->_class == XCB_VISUAL_CLASS_TRUE_COLOR ) ) {
|
|
|
|
depth = d;
|
|
|
|
visual = v;
|
|
|
|
}
|
2016-03-01 12:11:55 -05:00
|
|
|
if ( xcb->screen->root_visual == v->visual_id ) {
|
2016-02-21 13:42:32 -05:00
|
|
|
root_depth = d;
|
|
|
|
root_visual = v;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( visual != NULL ) {
|
|
|
|
xcb_void_cookie_t c;
|
|
|
|
xcb_generic_error_t *e;
|
2016-03-01 12:11:55 -05:00
|
|
|
map = xcb_generate_id ( xcb->connection );
|
|
|
|
c = xcb_create_colormap_checked ( xcb->connection, XCB_COLORMAP_ALLOC_NONE, map, xcb->screen->root, visual->visual_id );
|
|
|
|
e = xcb_request_check ( xcb->connection, c );
|
2016-02-21 13:42:32 -05:00
|
|
|
if ( e ) {
|
|
|
|
depth = NULL;
|
|
|
|
visual = NULL;
|
|
|
|
free ( e );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( visual == NULL ) {
|
|
|
|
depth = root_depth;
|
|
|
|
visual = root_visual;
|
2016-03-01 12:11:55 -05:00
|
|
|
map = xcb->screen->default_colormap;
|
2015-02-14 13:42:04 -05:00
|
|
|
}
|
|
|
|
}
|
2015-09-27 05:46:19 -04:00
|
|
|
|
2016-02-21 13:42:32 -05:00
|
|
|
Color color_get ( const char *const name )
|
2015-02-14 13:42:04 -05:00
|
|
|
{
|
2016-02-21 13:42:32 -05:00
|
|
|
char *copy = g_strdup ( name );
|
|
|
|
char *cname = g_strstrip ( copy );
|
|
|
|
|
|
|
|
union
|
|
|
|
{
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
uint8_t b;
|
|
|
|
uint8_t g;
|
|
|
|
uint8_t r;
|
|
|
|
uint8_t a;
|
2016-03-05 14:07:25 -05:00
|
|
|
} sep;
|
2016-02-21 13:42:32 -05:00
|
|
|
uint32_t pixel;
|
|
|
|
} color = {
|
2016-03-05 14:07:25 -05:00
|
|
|
.pixel = 0xffffffff,
|
2016-02-21 13:42:32 -05:00
|
|
|
};
|
2015-02-14 13:42:04 -05:00
|
|
|
// Special format.
|
2015-10-10 07:43:28 -04:00
|
|
|
if ( strncmp ( cname, "argb:", 5 ) == 0 ) {
|
|
|
|
color.pixel = strtoul ( &cname[5], NULL, 16 );
|
2015-02-14 13:42:04 -05:00
|
|
|
}
|
2016-02-21 13:42:32 -05:00
|
|
|
else if ( strncmp ( cname, "#", 1 ) == 0 ) {
|
2016-03-05 10:33:18 -05:00
|
|
|
unsigned long val = strtoul ( &cname[1], NULL, 16 );
|
|
|
|
ssize_t length = strlen ( &cname[1] );
|
|
|
|
switch ( length )
|
|
|
|
{
|
|
|
|
case 3:
|
2016-03-05 14:07:25 -05:00
|
|
|
color.sep.a = 0xff;
|
|
|
|
color.sep.r = 16 * ( ( val & 0xF00 ) >> 8 );
|
|
|
|
color.sep.g = 16 * ( ( val & 0x0F0 ) >> 4 );
|
|
|
|
color.sep.b = 16 * ( val & 0x00F );
|
2016-03-05 10:33:18 -05:00
|
|
|
break;
|
|
|
|
case 6:
|
|
|
|
color.pixel = val;
|
2016-03-05 14:07:25 -05:00
|
|
|
color.sep.a = 0xff;
|
2016-03-05 10:33:18 -05:00
|
|
|
break;
|
|
|
|
case 8:
|
|
|
|
color.pixel = val;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
xcb_alloc_named_color_cookie_t cc = xcb_alloc_named_color ( xcb->connection,
|
|
|
|
map, strlen ( cname ), cname );
|
|
|
|
xcb_alloc_named_color_reply_t *r = xcb_alloc_named_color_reply ( xcb->connection, cc, NULL );
|
|
|
|
if ( r ) {
|
2016-03-05 14:07:25 -05:00
|
|
|
color.sep.a = 0xFF;
|
|
|
|
color.sep.r = r->visual_red;
|
|
|
|
color.sep.g = r->visual_green;
|
|
|
|
color.sep.b = r->visual_blue;
|
2016-03-05 10:33:18 -05:00
|
|
|
free ( r );
|
2016-03-05 10:25:02 -05:00
|
|
|
}
|
2015-02-14 13:42:04 -05:00
|
|
|
}
|
2015-10-10 07:43:28 -04:00
|
|
|
g_free ( copy );
|
2016-02-21 13:27:53 -05:00
|
|
|
|
|
|
|
Color ret = {
|
2016-03-05 14:07:25 -05:00
|
|
|
.red = color.sep.r / 255.0,
|
|
|
|
.green = color.sep.g / 255.0,
|
|
|
|
.blue = color.sep.b / 255.0,
|
|
|
|
.alpha = color.sep.a / 255.0,
|
2016-02-21 13:27:53 -05:00
|
|
|
};
|
|
|
|
return ret;
|
2015-02-14 13:42:04 -05:00
|
|
|
}
|
2016-02-21 13:27:53 -05:00
|
|
|
|
|
|
|
void x11_helper_set_cairo_rgba ( cairo_t *d, Color col )
|
2015-10-10 07:03:11 -04:00
|
|
|
{
|
2016-02-21 13:27:53 -05:00
|
|
|
cairo_set_source_rgba ( d, col.red, col.green, col.blue, col.alpha );
|
2015-10-10 07:03:11 -04:00
|
|
|
}
|
2015-10-10 08:15:27 -04:00
|
|
|
/**
|
|
|
|
* Color cache.
|
|
|
|
*
|
|
|
|
* This stores the current color until
|
|
|
|
*/
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
BACKGROUND,
|
|
|
|
BORDER,
|
|
|
|
SEPARATOR
|
|
|
|
};
|
2016-02-21 13:27:53 -05:00
|
|
|
static struct
|
2015-10-10 08:15:27 -04:00
|
|
|
{
|
2016-02-21 13:27:53 -05:00
|
|
|
Color color;
|
2015-10-10 08:15:27 -04:00
|
|
|
unsigned int set;
|
2016-02-21 13:27:53 -05:00
|
|
|
} color_cache[3];
|
|
|
|
|
2016-02-21 13:42:32 -05:00
|
|
|
void color_background ( cairo_t *d )
|
2015-04-06 11:13:26 -04:00
|
|
|
{
|
2015-10-10 08:15:27 -04:00
|
|
|
if ( !color_cache[BACKGROUND].set ) {
|
2016-03-05 12:28:39 -05:00
|
|
|
gchar **vals = g_strsplit ( config.color_window, ",", 3 );
|
|
|
|
if ( vals != NULL && vals[0] != NULL ) {
|
|
|
|
color_cache[BACKGROUND].color = color_get ( vals[0] );
|
2015-04-11 06:04:14 -04:00
|
|
|
}
|
2016-03-05 12:28:39 -05:00
|
|
|
g_strfreev ( vals );
|
2015-10-10 08:15:27 -04:00
|
|
|
color_cache[BACKGROUND].set = TRUE;
|
2015-04-06 11:13:26 -04:00
|
|
|
}
|
2015-10-10 08:15:27 -04:00
|
|
|
|
|
|
|
x11_helper_set_cairo_rgba ( d, color_cache[BACKGROUND].color );
|
2015-04-06 11:13:26 -04:00
|
|
|
}
|
|
|
|
|
2016-02-21 13:42:32 -05:00
|
|
|
void color_border ( cairo_t *d )
|
2015-04-06 11:13:26 -04:00
|
|
|
{
|
2015-10-10 08:15:27 -04:00
|
|
|
if ( !color_cache[BORDER].set ) {
|
2016-03-05 12:28:39 -05:00
|
|
|
gchar **vals = g_strsplit ( config.color_window, ",", 3 );
|
|
|
|
if ( vals != NULL && vals[0] != NULL && vals[1] != NULL ) {
|
|
|
|
color_cache[BORDER].color = color_get ( vals[1] );
|
2015-04-11 06:04:14 -04:00
|
|
|
}
|
2016-03-05 12:28:39 -05:00
|
|
|
g_strfreev ( vals );
|
2015-10-10 08:15:27 -04:00
|
|
|
color_cache[BORDER].set = TRUE;
|
2015-04-06 11:13:26 -04:00
|
|
|
}
|
2015-10-10 08:15:27 -04:00
|
|
|
x11_helper_set_cairo_rgba ( d, color_cache[BORDER].color );
|
2015-04-06 11:13:26 -04:00
|
|
|
}
|
2015-08-26 12:11:53 -04:00
|
|
|
|
2016-02-21 13:42:32 -05:00
|
|
|
void color_separator ( cairo_t *d )
|
2015-08-26 12:11:53 -04:00
|
|
|
{
|
2015-10-10 08:15:27 -04:00
|
|
|
if ( !color_cache[SEPARATOR].set ) {
|
2016-03-05 12:28:39 -05:00
|
|
|
gchar **vals = g_strsplit ( config.color_window, ",", 3 );
|
|
|
|
if ( vals != NULL && vals[0] != NULL && vals[1] != NULL && vals[2] != NULL ) {
|
|
|
|
color_cache[SEPARATOR].color = color_get ( vals[2] );
|
2015-08-26 12:11:53 -04:00
|
|
|
}
|
2016-03-05 12:28:39 -05:00
|
|
|
else if ( vals != NULL && vals[0] != NULL && vals[1] != NULL ) {
|
|
|
|
color_cache[SEPARATOR].color = color_get ( vals[1] );
|
2015-08-26 12:11:53 -04:00
|
|
|
}
|
2016-03-05 12:28:39 -05:00
|
|
|
g_strfreev ( vals );
|
2015-10-10 08:15:27 -04:00
|
|
|
color_cache[SEPARATOR].set = TRUE;
|
2015-08-26 12:11:53 -04:00
|
|
|
}
|
2015-10-10 08:15:27 -04:00
|
|
|
x11_helper_set_cairo_rgba ( d, color_cache[SEPARATOR].color );
|
2015-08-26 12:11:53 -04:00
|
|
|
}
|
2016-03-01 12:11:55 -05:00
|
|
|
|
|
|
|
xcb_window_t xcb_stuff_get_root_window ( xcb_stuff *xcb )
|
|
|
|
{
|
|
|
|
return xcb->screen->root;
|
|
|
|
}
|
2016-03-01 12:33:26 -05:00
|
|
|
|
|
|
|
void xcb_stuff_wipe ( xcb_stuff *xcb )
|
|
|
|
{
|
|
|
|
if ( xcb->connection != NULL ) {
|
|
|
|
if ( xcb->sncontext != NULL ) {
|
|
|
|
sn_launchee_context_unref ( xcb->sncontext );
|
|
|
|
xcb->sncontext = NULL;
|
|
|
|
}
|
|
|
|
if ( xcb->sndisplay != NULL ) {
|
|
|
|
sn_display_unref ( xcb->sndisplay );
|
|
|
|
xcb->sndisplay = NULL;
|
|
|
|
}
|
|
|
|
xcb_disconnect ( xcb->connection );
|
|
|
|
xcb->connection = NULL;
|
2016-03-01 13:48:18 -05:00
|
|
|
xcb->screen = NULL;
|
2016-03-01 12:33:26 -05:00
|
|
|
xcb->screen_nbr = 0;
|
|
|
|
}
|
|
|
|
}
|