2018-05-12 16:03:00 +00:00
|
|
|
/*
|
2009-07-28 21:44:22 +00:00
|
|
|
*
|
|
|
|
* Conky, a system monitor, based on torsmo
|
2005-08-05 01:06:17 +00:00
|
|
|
*
|
2007-08-10 19:53:44 +00:00
|
|
|
* Any original torsmo code is licensed under the BSD license
|
|
|
|
*
|
|
|
|
* All code written since the fork of torsmo is licensed under the GPL
|
|
|
|
*
|
|
|
|
* Please see COPYING for details
|
|
|
|
*
|
|
|
|
* Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
|
2021-02-27 15:14:19 +00:00
|
|
|
* Copyright (c) 2005-2021 Brenden Matthews, Philip Kovacs, et. al.
|
2008-02-20 20:30:45 +00:00
|
|
|
* (see AUTHORS)
|
2007-08-10 19:53:44 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2008-02-20 20:30:45 +00:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2005-08-05 01:06:17 +00:00
|
|
|
*
|
2008-12-09 23:35:49 +00:00
|
|
|
*/
|
2005-08-05 01:06:17 +00:00
|
|
|
|
2023-01-01 17:39:57 +00:00
|
|
|
#include <X11/X.h>
|
2018-05-12 16:03:00 +00:00
|
|
|
#include "common.h"
|
2008-12-15 21:40:24 +00:00
|
|
|
#include "config.h"
|
2005-07-20 00:30:40 +00:00
|
|
|
#include "conky.h"
|
2008-12-15 21:40:24 +00:00
|
|
|
#include "logging.h"
|
2005-08-30 00:22:55 +00:00
|
|
|
|
2018-12-22 21:16:28 +00:00
|
|
|
#pragma GCC diagnostic push
|
|
|
|
#pragma GCC diagnostic ignored "-Wvariadic-macros"
|
|
|
|
#pragma GCC diagnostic ignored "-Wregister"
|
2018-08-08 19:18:14 +00:00
|
|
|
#include <X11/XKBlib.h>
|
2018-12-22 21:16:28 +00:00
|
|
|
#pragma GCC diagnostic pop
|
2005-07-20 00:30:40 +00:00
|
|
|
#include <X11/Xatom.h>
|
2018-05-12 16:03:00 +00:00
|
|
|
#include <X11/Xlib.h>
|
2006-03-08 06:31:18 +00:00
|
|
|
#include <X11/Xmd.h>
|
2005-07-20 00:30:40 +00:00
|
|
|
#include <X11/Xutil.h>
|
2022-11-28 19:23:23 +00:00
|
|
|
#include "gui.h"
|
2010-01-10 23:35:22 +00:00
|
|
|
#ifdef BUILD_IMLIB2
|
2009-05-06 03:45:05 +00:00
|
|
|
#include "imlib2.h"
|
2010-01-10 23:35:22 +00:00
|
|
|
#endif /* BUILD_IMLIB2 */
|
2010-11-23 12:58:53 +00:00
|
|
|
#ifndef OWN_WINDOW
|
|
|
|
#include <iostream>
|
|
|
|
#endif
|
2010-01-07 02:38:12 +00:00
|
|
|
#ifdef BUILD_XFT
|
2005-07-20 00:30:40 +00:00
|
|
|
#include <X11/Xft/Xft.h>
|
|
|
|
#endif
|
2015-12-01 12:53:43 +00:00
|
|
|
#ifdef BUILD_XINERAMA
|
|
|
|
#include <X11/extensions/Xinerama.h>
|
|
|
|
#endif
|
2018-12-10 01:14:08 +00:00
|
|
|
#ifdef BUILD_XSHAPE
|
|
|
|
#include <X11/extensions/shape.h>
|
|
|
|
#endif /* BUILD_XSHAPE */
|
2005-07-20 00:30:40 +00:00
|
|
|
|
|
|
|
/* some basic X11 stuff */
|
2018-05-12 23:26:31 +00:00
|
|
|
Display *display = nullptr;
|
2005-07-20 00:30:40 +00:00
|
|
|
|
2009-08-07 07:24:24 +00:00
|
|
|
/* Window stuff */
|
2022-11-28 19:23:23 +00:00
|
|
|
struct conky_x11_window window;
|
2009-08-07 07:24:24 +00:00
|
|
|
|
2022-12-26 01:39:08 +00:00
|
|
|
conky::simple_config_setting<std::string> display_name("display", std::string(),
|
|
|
|
false);
|
|
|
|
|
2005-07-20 00:30:40 +00:00
|
|
|
/* local prototypes */
|
2018-05-12 23:26:31 +00:00
|
|
|
static void update_workarea();
|
2006-03-07 19:46:51 +00:00
|
|
|
static Window find_desktop_window(Window *p_root, Window *p_desktop);
|
2005-07-20 00:30:40 +00:00
|
|
|
static Window find_subwindow(Window win, int w, int h);
|
2022-12-26 01:39:08 +00:00
|
|
|
static void init_x11();
|
|
|
|
static void deinit_x11();
|
2010-03-10 20:02:13 +00:00
|
|
|
|
|
|
|
/********************* <SETTINGS> ************************/
|
|
|
|
namespace priv {
|
2018-05-12 16:03:00 +00:00
|
|
|
void out_to_x_setting::lua_setter(lua::state &l, bool init) {
|
|
|
|
lua::stack_sentry s(l, -2);
|
2010-03-10 20:02:13 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
Base::lua_setter(l, init);
|
2010-03-10 20:02:13 +00:00
|
|
|
|
2022-12-26 01:39:08 +00:00
|
|
|
if (init && do_convert(l, -1).first) { init_x11(); }
|
2010-03-10 20:02:13 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
++s;
|
|
|
|
}
|
2010-03-10 20:02:13 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
void out_to_x_setting::cleanup(lua::state &l) {
|
|
|
|
lua::stack_sentry s(l, -1);
|
2010-03-10 20:02:13 +00:00
|
|
|
|
2022-12-26 01:39:08 +00:00
|
|
|
if (do_convert(l, -1).first) { deinit_x11(); }
|
2010-03-10 20:02:13 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
l.pop();
|
|
|
|
}
|
2010-03-10 20:02:13 +00:00
|
|
|
|
2010-04-23 19:54:40 +00:00
|
|
|
#ifdef BUILD_XDBE
|
2018-05-12 16:03:00 +00:00
|
|
|
bool use_xdbe_setting::set_up(lua::state &l) {
|
|
|
|
// double_buffer makes no sense when not drawing to X
|
2022-12-26 18:15:21 +00:00
|
|
|
if (!out_to_x.get(l) || !display || !window.window) { return false; }
|
2018-05-12 16:03:00 +00:00
|
|
|
|
|
|
|
int major, minor;
|
|
|
|
|
2018-05-12 23:26:31 +00:00
|
|
|
if (XdbeQueryExtension(display, &major, &minor) == 0) {
|
2018-05-12 16:03:00 +00:00
|
|
|
NORM_ERR("No compatible double buffer extension found");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
window.back_buffer =
|
|
|
|
XdbeAllocateBackBufferName(display, window.window, XdbeBackground);
|
|
|
|
if (window.back_buffer != None) {
|
|
|
|
window.drawable = window.back_buffer;
|
|
|
|
} else {
|
|
|
|
NORM_ERR("Failed to allocate back buffer");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
XFlush(display);
|
|
|
|
return true;
|
|
|
|
}
|
2010-04-23 19:54:40 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
void use_xdbe_setting::lua_setter(lua::state &l, bool init) {
|
|
|
|
lua::stack_sentry s(l, -2);
|
2010-04-23 19:54:40 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
Base::lua_setter(l, init);
|
2010-04-23 19:54:40 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
if (init && do_convert(l, -1).first) {
|
2018-08-08 19:31:57 +00:00
|
|
|
if (!set_up(l)) {
|
2018-05-12 16:03:00 +00:00
|
|
|
l.pop();
|
|
|
|
l.pushboolean(false);
|
|
|
|
}
|
2010-04-23 19:54:40 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
fprintf(stderr, PACKAGE_NAME ": drawing to %s buffer\n",
|
|
|
|
do_convert(l, -1).first ? "double" : "single");
|
|
|
|
}
|
2010-04-23 19:54:40 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
++s;
|
|
|
|
}
|
2010-04-23 19:54:40 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
#else
|
|
|
|
bool use_xpmdb_setting::set_up(lua::state &l) {
|
|
|
|
// double_buffer makes no sense when not drawing to X
|
2018-08-08 19:31:57 +00:00
|
|
|
if (!out_to_x.get(l)) return false;
|
2018-05-12 16:03:00 +00:00
|
|
|
|
|
|
|
window.back_buffer =
|
|
|
|
XCreatePixmap(display, window.window, window.width + 1, window.height + 1,
|
|
|
|
DefaultDepth(display, screen));
|
|
|
|
if (window.back_buffer != None) {
|
|
|
|
window.drawable = window.back_buffer;
|
|
|
|
} else {
|
|
|
|
NORM_ERR("Failed to allocate back buffer");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
XFlush(display);
|
|
|
|
return true;
|
|
|
|
}
|
2010-04-23 19:54:40 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
void use_xpmdb_setting::lua_setter(lua::state &l, bool init) {
|
|
|
|
lua::stack_sentry s(l, -2);
|
2010-04-23 19:54:40 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
Base::lua_setter(l, init);
|
2012-04-11 16:06:47 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
if (init && do_convert(l, -1).first) {
|
2018-08-08 19:31:57 +00:00
|
|
|
if (!set_up(l)) {
|
2018-05-12 16:03:00 +00:00
|
|
|
l.pop();
|
|
|
|
l.pushboolean(false);
|
|
|
|
}
|
2012-04-11 16:06:47 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
fprintf(stderr, PACKAGE_NAME ": drawing to %s buffer\n",
|
|
|
|
do_convert(l, -1).first ? "double" : "single");
|
|
|
|
}
|
2012-04-11 16:06:47 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
++s;
|
|
|
|
}
|
2010-04-23 19:54:40 +00:00
|
|
|
#endif
|
2018-05-12 16:03:00 +00:00
|
|
|
} // namespace priv
|
2010-03-10 20:02:13 +00:00
|
|
|
|
2018-08-16 22:40:34 +00:00
|
|
|
conky::simple_config_setting<int> head_index("xinerama_head", 0, true);
|
2018-05-12 16:03:00 +00:00
|
|
|
priv::out_to_x_setting out_to_x;
|
|
|
|
|
2010-04-21 17:33:39 +00:00
|
|
|
#ifdef BUILD_XFT
|
2018-05-12 16:03:00 +00:00
|
|
|
conky::simple_config_setting<bool> use_xft("use_xft", false, false);
|
2010-04-21 17:33:39 +00:00
|
|
|
#endif
|
|
|
|
|
2019-02-24 14:45:48 +00:00
|
|
|
conky::simple_config_setting<bool> forced_redraw("forced_redraw", false, false);
|
|
|
|
|
2010-03-10 20:02:13 +00:00
|
|
|
#ifdef OWN_WINDOW
|
|
|
|
#ifdef BUILD_ARGB
|
2018-05-12 16:03:00 +00:00
|
|
|
conky::simple_config_setting<bool> use_argb_visual("own_window_argb_visual",
|
|
|
|
false, false);
|
2018-12-22 20:53:34 +00:00
|
|
|
#endif /* BUILD_ARGB */
|
|
|
|
#endif /* OWN_WINDOW */
|
2010-04-23 19:54:40 +00:00
|
|
|
|
|
|
|
#ifdef BUILD_XDBE
|
2018-05-12 16:03:00 +00:00
|
|
|
priv::use_xdbe_setting use_xdbe;
|
2012-04-11 16:06:47 +00:00
|
|
|
#else
|
2018-05-12 16:03:00 +00:00
|
|
|
priv::use_xpmdb_setting use_xpmdb;
|
2010-04-23 19:54:40 +00:00
|
|
|
#endif
|
|
|
|
|
2010-08-29 12:31:22 +00:00
|
|
|
#ifdef BUILD_IMLIB2
|
|
|
|
/*
|
2018-05-12 16:03:00 +00:00
|
|
|
* the only reason this is not in imlib2.cc is so that we can be sure it's
|
|
|
|
* setter executes after use_xdbe
|
2010-08-29 12:31:22 +00:00
|
|
|
*/
|
|
|
|
imlib_cache_size_setting imlib_cache_size;
|
|
|
|
#endif
|
2010-03-10 20:02:13 +00:00
|
|
|
/******************** </SETTINGS> ************************/
|
2005-07-20 00:30:40 +00:00
|
|
|
|
2010-03-10 19:01:26 +00:00
|
|
|
/* WARNING, this type not in Xlib spec */
|
2018-05-12 16:03:00 +00:00
|
|
|
static int __attribute__((noreturn))
|
|
|
|
x11_error_handler(Display *d, XErrorEvent *err) {
|
|
|
|
NORM_ERR(
|
|
|
|
"X Error: type %i Display %lx XID %li serial %lu error_code %i "
|
|
|
|
"request_code %i minor_code %i other Display: %lx\n",
|
2019-02-23 19:43:44 +00:00
|
|
|
err->type, (long unsigned)err->display,
|
|
|
|
static_cast<long>(err->resourceid), err->serial, err->error_code,
|
|
|
|
err->request_code, err->minor_code, (long unsigned)d);
|
2018-05-12 16:03:00 +00:00
|
|
|
abort();
|
2010-03-10 19:01:26 +00:00
|
|
|
}
|
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
static int __attribute__((noreturn)) x11_ioerror_handler(Display *d) {
|
|
|
|
NORM_ERR("X Error: Display %lx\n", (long unsigned)d);
|
|
|
|
exit(1);
|
2010-03-10 19:01:26 +00:00
|
|
|
}
|
|
|
|
|
2005-07-20 00:30:40 +00:00
|
|
|
/* X11 initializer */
|
2022-12-26 01:39:08 +00:00
|
|
|
static void init_x11() {
|
|
|
|
DBGP("enter init_x11()");
|
2018-05-12 23:26:31 +00:00
|
|
|
if (display == nullptr) {
|
|
|
|
const std::string &dispstr = display_name.get(*state);
|
|
|
|
// passing nullptr to XOpenDisplay should open the default display
|
|
|
|
const char *disp = static_cast<unsigned int>(!dispstr.empty()) != 0u
|
|
|
|
? dispstr.c_str()
|
|
|
|
: nullptr;
|
|
|
|
if ((display = XOpenDisplay(disp)) == nullptr) {
|
2022-12-24 14:44:03 +00:00
|
|
|
std::string err =
|
|
|
|
std::string("can't open display: ") + XDisplayName(disp);
|
2022-12-26 01:45:31 +00:00
|
|
|
#ifdef BUILD_WAYLAND
|
|
|
|
fprintf(stderr, "%s\n", err.c_str());
|
|
|
|
return;
|
2022-12-26 18:15:21 +00:00
|
|
|
#else /* BUILD_WAYLAND */
|
2022-12-26 01:45:31 +00:00
|
|
|
throw std::runtime_error(err);
|
|
|
|
#endif /* BUILD_WAYLAND */
|
2018-05-12 16:03:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
info.x11.monitor.number = 1;
|
|
|
|
info.x11.monitor.current = 0;
|
|
|
|
info.x11.desktop.current = 1;
|
|
|
|
info.x11.desktop.number = 1;
|
|
|
|
info.x11.desktop.all_names.clear();
|
|
|
|
info.x11.desktop.name.clear();
|
|
|
|
|
|
|
|
screen = DefaultScreen(display);
|
|
|
|
display_width = DisplayWidth(display, screen);
|
|
|
|
display_height = DisplayHeight(display, screen);
|
|
|
|
|
|
|
|
get_x11_desktop_info(display, 0);
|
|
|
|
|
|
|
|
update_workarea();
|
2010-03-10 19:01:26 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
/* WARNING, this type not in Xlib spec */
|
|
|
|
XSetErrorHandler(&x11_error_handler);
|
|
|
|
XSetIOErrorHandler(&x11_ioerror_handler);
|
2018-12-10 01:14:08 +00:00
|
|
|
|
2022-12-26 01:39:08 +00:00
|
|
|
DBGP("leave init_x11()");
|
2010-03-10 19:01:26 +00:00
|
|
|
}
|
|
|
|
|
2022-12-26 01:39:08 +00:00
|
|
|
static void deinit_x11() {
|
2022-09-19 14:46:41 +00:00
|
|
|
if (display) {
|
2022-12-26 01:39:08 +00:00
|
|
|
DBGP("deinit_x11()");
|
2022-09-19 14:46:41 +00:00
|
|
|
XCloseDisplay(display);
|
|
|
|
display = nullptr;
|
|
|
|
}
|
2005-07-20 00:30:40 +00:00
|
|
|
}
|
|
|
|
|
2018-05-12 23:26:31 +00:00
|
|
|
static void update_workarea() {
|
2018-05-12 16:03:00 +00:00
|
|
|
/* default work area is display */
|
|
|
|
workarea[0] = 0;
|
|
|
|
workarea[1] = 0;
|
|
|
|
workarea[2] = display_width;
|
|
|
|
workarea[3] = display_height;
|
2015-12-01 12:53:43 +00:00
|
|
|
|
|
|
|
#ifdef BUILD_XINERAMA
|
2018-05-12 16:03:00 +00:00
|
|
|
/* if xinerama is being used, adjust workarea to the head's area */
|
|
|
|
int useless1, useless2;
|
2018-05-12 23:26:31 +00:00
|
|
|
if (XineramaQueryExtension(display, &useless1, &useless2) == 0) {
|
2018-05-12 16:03:00 +00:00
|
|
|
return; /* doesn't even have xinerama */
|
|
|
|
}
|
|
|
|
|
2018-05-12 23:26:31 +00:00
|
|
|
if (XineramaIsActive(display) == 0) {
|
2018-05-12 16:03:00 +00:00
|
|
|
return; /* has xinerama but isn't using it */
|
|
|
|
}
|
|
|
|
|
|
|
|
int heads = 0;
|
|
|
|
XineramaScreenInfo *si = XineramaQueryScreens(display, &heads);
|
2018-05-12 23:26:31 +00:00
|
|
|
if (si == nullptr) {
|
2018-05-12 16:03:00 +00:00
|
|
|
NORM_ERR(
|
2018-08-08 19:18:14 +00:00
|
|
|
"warning: XineramaQueryScreen returned nullptr, ignoring head "
|
|
|
|
"settings");
|
2018-05-12 16:03:00 +00:00
|
|
|
return; /* queryscreens failed? */
|
|
|
|
}
|
|
|
|
|
|
|
|
int i = head_index.get(*state);
|
|
|
|
if (i < 0 || i >= heads) {
|
|
|
|
NORM_ERR("warning: invalid head index, ignoring head settings");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
XineramaScreenInfo *ps = &si[i];
|
|
|
|
workarea[0] = ps->x_org;
|
|
|
|
workarea[1] = ps->y_org;
|
|
|
|
workarea[2] = workarea[0] + ps->width;
|
|
|
|
workarea[3] = workarea[1] + ps->height;
|
|
|
|
XFree(si);
|
|
|
|
|
|
|
|
DBGP("Fixed xinerama area to: %d %d %d %d", workarea[0], workarea[1],
|
|
|
|
workarea[2], workarea[3]);
|
2015-12-01 12:53:43 +00:00
|
|
|
#endif
|
2005-07-20 00:30:40 +00:00
|
|
|
}
|
|
|
|
|
2008-02-20 20:30:45 +00:00
|
|
|
/* Find root window and desktop window.
|
|
|
|
* Return desktop window on success,
|
|
|
|
* and set root and desktop byref return values.
|
|
|
|
* Return 0 on failure. */
|
2018-05-12 16:03:00 +00:00
|
|
|
static Window find_desktop_window(Window *p_root, Window *p_desktop) {
|
|
|
|
Atom type;
|
|
|
|
int format, i;
|
|
|
|
unsigned long nitems, bytes;
|
|
|
|
unsigned int n;
|
2022-12-24 14:44:03 +00:00
|
|
|
if (!display) return 0;
|
2018-05-12 16:03:00 +00:00
|
|
|
Window root = RootWindow(display, screen);
|
2018-12-20 15:22:08 +00:00
|
|
|
Window win;
|
2018-05-12 16:03:00 +00:00
|
|
|
Window troot, parent, *children;
|
2018-05-12 23:26:31 +00:00
|
|
|
unsigned char *buf = nullptr;
|
2018-05-12 16:03:00 +00:00
|
|
|
|
2018-08-08 19:18:14 +00:00
|
|
|
if ((p_root == nullptr) || (p_desktop == nullptr)) { return 0; }
|
2018-05-12 16:03:00 +00:00
|
|
|
|
|
|
|
/* some window managers set __SWM_VROOT to some child of root window */
|
|
|
|
|
|
|
|
XQueryTree(display, root, &troot, &parent, &children, &n);
|
2018-05-12 23:26:31 +00:00
|
|
|
for (i = 0; i < static_cast<int>(n); i++) {
|
2018-05-12 16:03:00 +00:00
|
|
|
if (XGetWindowProperty(display, children[i], ATOM(__SWM_VROOT), 0, 1, False,
|
|
|
|
XA_WINDOW, &type, &format, &nitems, &bytes,
|
|
|
|
&buf) == Success &&
|
|
|
|
type == XA_WINDOW) {
|
2018-05-12 23:26:31 +00:00
|
|
|
win = *reinterpret_cast<Window *>(buf);
|
2018-05-12 16:03:00 +00:00
|
|
|
XFree(buf);
|
|
|
|
XFree(children);
|
|
|
|
fprintf(stderr,
|
|
|
|
PACKAGE_NAME
|
|
|
|
": desktop window (%lx) found from __SWM_VROOT property\n",
|
|
|
|
win);
|
|
|
|
fflush(stderr);
|
|
|
|
*p_root = win;
|
|
|
|
*p_desktop = win;
|
|
|
|
return win;
|
|
|
|
}
|
|
|
|
|
2018-05-12 23:26:31 +00:00
|
|
|
if (buf != nullptr) {
|
2018-05-12 16:03:00 +00:00
|
|
|
XFree(buf);
|
2018-05-12 23:26:31 +00:00
|
|
|
buf = nullptr;
|
2018-05-12 16:03:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
XFree(children);
|
|
|
|
|
|
|
|
/* get subwindows from root */
|
|
|
|
win = find_subwindow(root, -1, -1);
|
|
|
|
|
|
|
|
update_workarea();
|
|
|
|
|
|
|
|
win = find_subwindow(win, workarea[2], workarea[3]);
|
|
|
|
|
2018-05-12 23:26:31 +00:00
|
|
|
if (buf != nullptr) {
|
2018-05-12 16:03:00 +00:00
|
|
|
XFree(buf);
|
2018-05-12 23:26:31 +00:00
|
|
|
buf = nullptr;
|
2018-05-12 16:03:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (win != root) {
|
|
|
|
fprintf(stderr,
|
|
|
|
PACKAGE_NAME
|
|
|
|
": desktop window (%lx) is subwindow of root window (%lx)\n",
|
|
|
|
win, root);
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, PACKAGE_NAME ": desktop window (%lx) is root window\n",
|
|
|
|
win);
|
|
|
|
}
|
|
|
|
|
|
|
|
fflush(stderr);
|
|
|
|
|
|
|
|
*p_root = root;
|
|
|
|
*p_desktop = win;
|
|
|
|
|
|
|
|
return win;
|
2005-07-20 00:30:40 +00:00
|
|
|
}
|
|
|
|
|
2010-11-23 12:58:53 +00:00
|
|
|
#ifdef OWN_WINDOW
|
2010-02-28 14:51:01 +00:00
|
|
|
namespace {
|
2018-05-12 16:03:00 +00:00
|
|
|
/* helper function for set_transparent_background() */
|
|
|
|
void do_set_background(Window win, int argb) {
|
|
|
|
unsigned long colour = background_colour.get(*state) | (argb << 24);
|
|
|
|
XSetWindowBackground(display, win, colour);
|
2010-02-28 14:51:01 +00:00
|
|
|
}
|
2018-05-12 16:03:00 +00:00
|
|
|
} // namespace
|
2010-02-28 14:51:01 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
/* if no argb visual is configured sets background to ParentRelative for the
|
|
|
|
Window and all parents, else real transparency is used */
|
|
|
|
void set_transparent_background(Window win) {
|
2010-01-07 02:38:12 +00:00
|
|
|
#ifdef BUILD_ARGB
|
2018-05-12 16:03:00 +00:00
|
|
|
if (have_argb_visual) {
|
|
|
|
// real transparency
|
|
|
|
do_set_background(win, set_transparent.get(*state)
|
|
|
|
? 0
|
|
|
|
: own_window_argb_value.get(*state));
|
|
|
|
} else {
|
2010-01-07 02:38:12 +00:00
|
|
|
#endif /* BUILD_ARGB */
|
2018-05-12 16:03:00 +00:00
|
|
|
// pseudo transparency
|
|
|
|
|
|
|
|
if (set_transparent.get(*state)) {
|
|
|
|
Window parent = win;
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
for (i = 0; i < 50 && parent != RootWindow(display, screen); i++) {
|
|
|
|
Window r, *children;
|
|
|
|
unsigned int n;
|
|
|
|
|
|
|
|
XSetWindowBackgroundPixmap(display, parent, ParentRelative);
|
|
|
|
|
|
|
|
XQueryTree(display, parent, &r, &parent, &children, &n);
|
|
|
|
XFree(children);
|
|
|
|
}
|
2018-05-12 23:26:31 +00:00
|
|
|
} else {
|
2018-05-12 16:03:00 +00:00
|
|
|
do_set_background(win, 0);
|
2018-05-12 23:26:31 +00:00
|
|
|
}
|
2010-01-07 02:38:12 +00:00
|
|
|
#ifdef BUILD_ARGB
|
2018-05-12 16:03:00 +00:00
|
|
|
}
|
2010-01-07 02:38:12 +00:00
|
|
|
#endif /* BUILD_ARGB */
|
2010-01-01 23:01:51 +00:00
|
|
|
}
|
2010-11-23 12:58:53 +00:00
|
|
|
#endif
|
2010-01-01 23:01:51 +00:00
|
|
|
|
2010-01-07 02:38:12 +00:00
|
|
|
#ifdef BUILD_ARGB
|
2018-05-12 16:03:00 +00:00
|
|
|
static int get_argb_visual(Visual **visual, int *depth) {
|
|
|
|
/* code from gtk project, gdk_screen_get_rgba_visual */
|
|
|
|
XVisualInfo visual_template;
|
|
|
|
XVisualInfo *visual_list;
|
|
|
|
int nxvisuals = 0, i;
|
|
|
|
|
|
|
|
visual_template.screen = screen;
|
|
|
|
visual_list =
|
|
|
|
XGetVisualInfo(display, VisualScreenMask, &visual_template, &nxvisuals);
|
|
|
|
for (i = 0; i < nxvisuals; i++) {
|
|
|
|
if (visual_list[i].depth == 32 && (visual_list[i].red_mask == 0xff0000 &&
|
|
|
|
visual_list[i].green_mask == 0x00ff00 &&
|
|
|
|
visual_list[i].blue_mask == 0x0000ff)) {
|
|
|
|
*visual = visual_list[i].visual;
|
|
|
|
*depth = visual_list[i].depth;
|
|
|
|
DBGP("Found ARGB Visual");
|
|
|
|
XFree(visual_list);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
2022-12-26 01:39:08 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
// no argb visual available
|
|
|
|
DBGP("No ARGB Visual found");
|
|
|
|
XFree(visual_list);
|
2022-12-26 01:39:08 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
return 0;
|
2005-07-20 00:30:40 +00:00
|
|
|
}
|
2010-01-07 02:38:12 +00:00
|
|
|
#endif /* BUILD_ARGB */
|
2005-07-20 00:30:40 +00:00
|
|
|
|
2018-05-12 23:26:31 +00:00
|
|
|
void destroy_window() {
|
2010-01-07 02:38:12 +00:00
|
|
|
#ifdef BUILD_XFT
|
2018-08-08 19:18:14 +00:00
|
|
|
if (window.xftdraw != nullptr) { XftDrawDestroy(window.xftdraw); }
|
2010-01-07 02:38:12 +00:00
|
|
|
#endif /* BUILD_XFT */
|
2018-08-08 19:18:14 +00:00
|
|
|
if (window.gc != nullptr) { XFreeGC(display, window.gc); }
|
2022-11-28 19:23:23 +00:00
|
|
|
memset(&window, 0, sizeof(struct conky_x11_window));
|
2009-05-20 03:34:43 +00:00
|
|
|
}
|
|
|
|
|
2022-11-28 19:23:23 +00:00
|
|
|
void x11_init_window(lua::state &l __attribute__((unused)), bool own) {
|
2022-12-26 01:39:08 +00:00
|
|
|
DBGP("enter x11_init_window()");
|
2018-05-12 16:03:00 +00:00
|
|
|
// own is unused if OWN_WINDOW is not defined
|
|
|
|
(void)own;
|
2010-04-23 15:35:41 +00:00
|
|
|
|
2006-02-14 06:15:38 +00:00
|
|
|
#ifdef OWN_WINDOW
|
2018-05-12 16:03:00 +00:00
|
|
|
if (own) {
|
|
|
|
int depth = 0, flags = CWOverrideRedirect | CWBackingStore;
|
2018-05-12 23:26:31 +00:00
|
|
|
Visual *visual = nullptr;
|
2018-05-12 16:03:00 +00:00
|
|
|
|
2022-12-26 01:39:08 +00:00
|
|
|
if (find_desktop_window(&window.root, &window.desktop) == 0U) {
|
|
|
|
DBGP2("no desktop window found");
|
|
|
|
return;
|
|
|
|
}
|
2018-05-12 16:03:00 +00:00
|
|
|
|
2010-01-07 02:38:12 +00:00
|
|
|
#ifdef BUILD_ARGB
|
2018-05-12 23:26:31 +00:00
|
|
|
if (use_argb_visual.get(l) && (get_argb_visual(&visual, &depth) != 0)) {
|
2018-05-12 16:03:00 +00:00
|
|
|
have_argb_visual = true;
|
|
|
|
window.visual = visual;
|
|
|
|
window.colourmap = XCreateColormap(display, DefaultRootWindow(display),
|
|
|
|
window.visual, AllocNone);
|
|
|
|
} else {
|
2010-01-07 02:38:12 +00:00
|
|
|
#endif /* BUILD_ARGB */
|
2018-05-12 16:03:00 +00:00
|
|
|
window.visual = DefaultVisual(display, screen);
|
|
|
|
window.colourmap = DefaultColormap(display, screen);
|
|
|
|
depth = CopyFromParent;
|
|
|
|
visual = CopyFromParent;
|
2010-01-07 02:38:12 +00:00
|
|
|
#ifdef BUILD_ARGB
|
2018-05-12 16:03:00 +00:00
|
|
|
}
|
2010-01-07 02:38:12 +00:00
|
|
|
#endif /* BUILD_ARGB */
|
2006-03-09 18:51:57 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
int b = border_inner_margin.get(l) + border_width.get(l) +
|
|
|
|
border_outer_margin.get(l);
|
|
|
|
|
|
|
|
/* Sanity check to avoid making an invalid 0x0 window */
|
2018-08-08 19:18:14 +00:00
|
|
|
if (b == 0) { b = 1; }
|
2018-05-12 16:03:00 +00:00
|
|
|
|
2021-04-17 22:12:21 +00:00
|
|
|
XClassHint classHint;
|
|
|
|
|
|
|
|
// class_name must be a named local variable, so that c_str() remains
|
2021-04-18 16:45:29 +00:00
|
|
|
// valid until we call XmbSetWMProperties() or XSetClassHint. We use
|
|
|
|
// const_cast because, for whatever reason, res_name is not declared as
|
|
|
|
// const char *. XmbSetWMProperties hopefully doesn't modify the value
|
|
|
|
// (hell, even their own example app assigns a literal string constant to
|
|
|
|
// the field)
|
2021-04-17 22:12:21 +00:00
|
|
|
const std::string &class_name = own_window_class.get(l);
|
|
|
|
|
|
|
|
classHint.res_name = const_cast<char *>(class_name.c_str());
|
|
|
|
classHint.res_class = classHint.res_name;
|
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
if (own_window_type.get(l) == TYPE_OVERRIDE) {
|
|
|
|
/* An override_redirect True window.
|
|
|
|
* No WM hints or button processing needed. */
|
|
|
|
XSetWindowAttributes attrs = {ParentRelative,
|
|
|
|
0L,
|
|
|
|
0,
|
|
|
|
0L,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
Always,
|
|
|
|
0L,
|
|
|
|
0L,
|
|
|
|
False,
|
|
|
|
StructureNotifyMask | ExposureMask,
|
|
|
|
0L,
|
|
|
|
True,
|
|
|
|
0,
|
|
|
|
0};
|
2010-01-07 02:38:12 +00:00
|
|
|
#ifdef BUILD_ARGB
|
2018-05-12 16:03:00 +00:00
|
|
|
if (have_argb_visual) {
|
|
|
|
attrs.colormap = window.colourmap;
|
|
|
|
flags |= CWBorderPixel | CWColormap;
|
|
|
|
} else {
|
2010-01-07 02:38:12 +00:00
|
|
|
#endif /* BUILD_ARGB */
|
2018-05-12 16:03:00 +00:00
|
|
|
flags |= CWBackPixel;
|
2010-01-07 02:38:12 +00:00
|
|
|
#ifdef BUILD_ARGB
|
2018-05-12 16:03:00 +00:00
|
|
|
}
|
2010-01-07 02:38:12 +00:00
|
|
|
#endif /* BUILD_ARGB */
|
2006-03-09 18:51:57 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
/* Parent is desktop window (which might be a child of root) */
|
|
|
|
window.window =
|
|
|
|
XCreateWindow(display, window.desktop, window.x, window.y, b, b, 0,
|
|
|
|
depth, InputOutput, visual, flags, &attrs);
|
|
|
|
|
|
|
|
XLowerWindow(display, window.window);
|
2021-04-17 22:12:21 +00:00
|
|
|
XSetClassHint(display, window.window, &classHint);
|
2018-05-12 16:03:00 +00:00
|
|
|
|
|
|
|
fprintf(stderr, PACKAGE_NAME ": window type - override\n");
|
|
|
|
fflush(stderr);
|
|
|
|
} else { /* own_window_type.get(l) != TYPE_OVERRIDE */
|
|
|
|
|
|
|
|
/* A window managed by the window manager.
|
|
|
|
* Process hints and buttons. */
|
|
|
|
XSetWindowAttributes attrs = {ParentRelative,
|
|
|
|
0L,
|
|
|
|
0,
|
|
|
|
0L,
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
Always,
|
|
|
|
0L,
|
|
|
|
0L,
|
|
|
|
False,
|
|
|
|
StructureNotifyMask | ExposureMask |
|
|
|
|
ButtonPressMask | ButtonReleaseMask,
|
|
|
|
0L,
|
|
|
|
False,
|
|
|
|
0,
|
|
|
|
0};
|
|
|
|
|
|
|
|
XWMHints wmHint;
|
|
|
|
Atom xa;
|
2006-03-06 05:58:58 +00:00
|
|
|
|
2010-01-07 02:38:12 +00:00
|
|
|
#ifdef BUILD_ARGB
|
2018-05-12 16:03:00 +00:00
|
|
|
if (have_argb_visual) {
|
|
|
|
attrs.colormap = window.colourmap;
|
|
|
|
flags |= CWBorderPixel | CWColormap;
|
|
|
|
} else {
|
2010-01-07 02:38:12 +00:00
|
|
|
#endif /* BUILD_ARGB */
|
2018-05-12 16:03:00 +00:00
|
|
|
flags |= CWBackPixel;
|
2010-01-07 02:38:12 +00:00
|
|
|
#ifdef BUILD_ARGB
|
2018-05-12 16:03:00 +00:00
|
|
|
}
|
2010-01-07 02:38:12 +00:00
|
|
|
#endif /* BUILD_ARGB */
|
2005-07-20 00:30:40 +00:00
|
|
|
|
2018-08-08 19:18:14 +00:00
|
|
|
if (own_window_type.get(l) == TYPE_DOCK) { window.x = window.y = 0; }
|
2018-05-12 16:03:00 +00:00
|
|
|
/* Parent is root window so WM can take control */
|
|
|
|
window.window =
|
|
|
|
XCreateWindow(display, window.root, window.x, window.y, b, b, 0,
|
|
|
|
depth, InputOutput, visual, flags, &attrs);
|
|
|
|
|
|
|
|
uint16_t hints = own_window_hints.get(l);
|
|
|
|
|
|
|
|
wmHint.flags = InputHint | StateHint;
|
|
|
|
/* allow decorated windows to be given input focus by WM */
|
|
|
|
wmHint.input = TEST_HINT(hints, HINT_UNDECORATED) ? False : True;
|
2018-12-10 01:14:08 +00:00
|
|
|
#ifdef BUILD_XSHAPE
|
|
|
|
if (!wmHint.input) {
|
|
|
|
/* allow only decorated windows to be given mouse input */
|
|
|
|
int major_version;
|
|
|
|
int minor_version;
|
|
|
|
if (XShapeQueryVersion(display, &major_version, &minor_version) == 0) {
|
|
|
|
NORM_ERR("Input shapes are not supported");
|
|
|
|
} else {
|
|
|
|
if (own_window.get(*state) &&
|
|
|
|
(own_window_type.get(*state) != TYPE_NORMAL ||
|
|
|
|
((TEST_HINT(own_window_hints.get(*state), HINT_UNDECORATED)) !=
|
|
|
|
0))) {
|
|
|
|
XShapeCombineRectangles(display, window.window, ShapeInput, 0, 0,
|
|
|
|
nullptr, 0, ShapeSet, Unsorted);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* BUILD_XSHAPE */
|
2018-05-12 16:03:00 +00:00
|
|
|
if (own_window_type.get(l) == TYPE_DOCK ||
|
|
|
|
own_window_type.get(l) == TYPE_PANEL) {
|
|
|
|
wmHint.initial_state = WithdrawnState;
|
|
|
|
} else {
|
|
|
|
wmHint.initial_state = NormalState;
|
|
|
|
}
|
|
|
|
|
2018-05-12 23:26:31 +00:00
|
|
|
XmbSetWMProperties(display, window.window, nullptr, nullptr, argv_copy,
|
|
|
|
argc_copy, nullptr, &wmHint, &classHint);
|
2018-05-12 16:03:00 +00:00
|
|
|
XStoreName(display, window.window, own_window_title.get(l).c_str());
|
|
|
|
|
|
|
|
/* Sets an empty WM_PROTOCOLS property */
|
2018-05-12 23:26:31 +00:00
|
|
|
XSetWMProtocols(display, window.window, nullptr, 0);
|
2018-05-12 16:03:00 +00:00
|
|
|
|
|
|
|
/* Set window type */
|
|
|
|
if ((xa = ATOM(_NET_WM_WINDOW_TYPE)) != None) {
|
|
|
|
Atom prop;
|
|
|
|
|
|
|
|
switch (own_window_type.get(l)) {
|
|
|
|
case TYPE_DESKTOP:
|
|
|
|
prop = ATOM(_NET_WM_WINDOW_TYPE_DESKTOP);
|
|
|
|
fprintf(stderr, PACKAGE_NAME ": window type - desktop\n");
|
|
|
|
fflush(stderr);
|
|
|
|
break;
|
|
|
|
case TYPE_DOCK:
|
|
|
|
prop = ATOM(_NET_WM_WINDOW_TYPE_DOCK);
|
|
|
|
fprintf(stderr, PACKAGE_NAME ": window type - dock\n");
|
|
|
|
fflush(stderr);
|
|
|
|
break;
|
|
|
|
case TYPE_PANEL:
|
|
|
|
prop = ATOM(_NET_WM_WINDOW_TYPE_DOCK);
|
|
|
|
fprintf(stderr, PACKAGE_NAME ": window type - panel\n");
|
|
|
|
fflush(stderr);
|
|
|
|
break;
|
|
|
|
case TYPE_NORMAL:
|
|
|
|
default:
|
|
|
|
prop = ATOM(_NET_WM_WINDOW_TYPE_NORMAL);
|
|
|
|
fprintf(stderr, PACKAGE_NAME ": window type - normal\n");
|
|
|
|
fflush(stderr);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
XChangeProperty(display, window.window, xa, XA_ATOM, 32,
|
2018-05-12 23:26:31 +00:00
|
|
|
PropModeReplace,
|
|
|
|
reinterpret_cast<unsigned char *>(&prop), 1);
|
2018-05-12 16:03:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Set desired hints */
|
|
|
|
|
|
|
|
/* Window decorations */
|
|
|
|
if (TEST_HINT(hints, HINT_UNDECORATED)) {
|
|
|
|
/* fprintf(stderr, PACKAGE_NAME": hint - undecorated\n");
|
|
|
|
fflush(stderr); */
|
|
|
|
|
|
|
|
xa = ATOM(_MOTIF_WM_HINTS);
|
|
|
|
if (xa != None) {
|
|
|
|
long prop[5] = {2, 0, 0, 0, 0};
|
|
|
|
XChangeProperty(display, window.window, xa, xa, 32, PropModeReplace,
|
2018-05-12 23:26:31 +00:00
|
|
|
reinterpret_cast<unsigned char *>(prop), 5);
|
2018-05-12 16:03:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Below other windows */
|
|
|
|
if (TEST_HINT(hints, HINT_BELOW)) {
|
|
|
|
/* fprintf(stderr, PACKAGE_NAME": hint - below\n");
|
|
|
|
fflush(stderr); */
|
|
|
|
|
|
|
|
xa = ATOM(_WIN_LAYER);
|
|
|
|
if (xa != None) {
|
|
|
|
long prop = 0;
|
|
|
|
|
|
|
|
XChangeProperty(display, window.window, xa, XA_CARDINAL, 32,
|
2018-05-12 23:26:31 +00:00
|
|
|
PropModeAppend,
|
|
|
|
reinterpret_cast<unsigned char *>(&prop), 1);
|
2018-05-12 16:03:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
xa = ATOM(_NET_WM_STATE);
|
|
|
|
if (xa != None) {
|
|
|
|
Atom xa_prop = ATOM(_NET_WM_STATE_BELOW);
|
|
|
|
|
|
|
|
XChangeProperty(display, window.window, xa, XA_ATOM, 32,
|
2018-05-12 23:26:31 +00:00
|
|
|
PropModeAppend,
|
|
|
|
reinterpret_cast<unsigned char *>(&xa_prop), 1);
|
2018-05-12 16:03:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Above other windows */
|
|
|
|
if (TEST_HINT(hints, HINT_ABOVE)) {
|
|
|
|
/* fprintf(stderr, PACKAGE_NAME": hint - above\n");
|
|
|
|
fflush(stderr); */
|
|
|
|
|
|
|
|
xa = ATOM(_WIN_LAYER);
|
|
|
|
if (xa != None) {
|
|
|
|
long prop = 6;
|
|
|
|
|
|
|
|
XChangeProperty(display, window.window, xa, XA_CARDINAL, 32,
|
2018-05-12 23:26:31 +00:00
|
|
|
PropModeAppend,
|
|
|
|
reinterpret_cast<unsigned char *>(&prop), 1);
|
2018-05-12 16:03:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
xa = ATOM(_NET_WM_STATE);
|
|
|
|
if (xa != None) {
|
|
|
|
Atom xa_prop = ATOM(_NET_WM_STATE_ABOVE);
|
|
|
|
|
|
|
|
XChangeProperty(display, window.window, xa, XA_ATOM, 32,
|
2018-05-12 23:26:31 +00:00
|
|
|
PropModeAppend,
|
|
|
|
reinterpret_cast<unsigned char *>(&xa_prop), 1);
|
2018-05-12 16:03:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Sticky */
|
|
|
|
if (TEST_HINT(hints, HINT_STICKY)) {
|
|
|
|
/* fprintf(stderr, PACKAGE_NAME": hint - sticky\n");
|
|
|
|
fflush(stderr); */
|
|
|
|
|
|
|
|
xa = ATOM(_NET_WM_DESKTOP);
|
|
|
|
if (xa != None) {
|
|
|
|
CARD32 xa_prop = 0xFFFFFFFF;
|
|
|
|
|
|
|
|
XChangeProperty(display, window.window, xa, XA_CARDINAL, 32,
|
2018-05-12 23:26:31 +00:00
|
|
|
PropModeAppend,
|
|
|
|
reinterpret_cast<unsigned char *>(&xa_prop), 1);
|
2018-05-12 16:03:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
xa = ATOM(_NET_WM_STATE);
|
|
|
|
if (xa != None) {
|
|
|
|
Atom xa_prop = ATOM(_NET_WM_STATE_STICKY);
|
|
|
|
|
|
|
|
XChangeProperty(display, window.window, xa, XA_ATOM, 32,
|
2018-05-12 23:26:31 +00:00
|
|
|
PropModeAppend,
|
|
|
|
reinterpret_cast<unsigned char *>(&xa_prop), 1);
|
2018-05-12 16:03:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Skip taskbar */
|
|
|
|
if (TEST_HINT(hints, HINT_SKIP_TASKBAR)) {
|
|
|
|
/* fprintf(stderr, PACKAGE_NAME": hint - skip_taskbar\n");
|
|
|
|
fflush(stderr); */
|
|
|
|
|
|
|
|
xa = ATOM(_NET_WM_STATE);
|
|
|
|
if (xa != None) {
|
|
|
|
Atom xa_prop = ATOM(_NET_WM_STATE_SKIP_TASKBAR);
|
|
|
|
|
|
|
|
XChangeProperty(display, window.window, xa, XA_ATOM, 32,
|
2018-05-12 23:26:31 +00:00
|
|
|
PropModeAppend,
|
|
|
|
reinterpret_cast<unsigned char *>(&xa_prop), 1);
|
2018-05-12 16:03:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Skip pager */
|
|
|
|
if (TEST_HINT(hints, HINT_SKIP_PAGER)) {
|
|
|
|
/* fprintf(stderr, PACKAGE_NAME": hint - skip_pager\n");
|
|
|
|
fflush(stderr); */
|
|
|
|
|
|
|
|
xa = ATOM(_NET_WM_STATE);
|
|
|
|
if (xa != None) {
|
|
|
|
Atom xa_prop = ATOM(_NET_WM_STATE_SKIP_PAGER);
|
|
|
|
|
|
|
|
XChangeProperty(display, window.window, xa, XA_ATOM, 32,
|
2018-05-12 23:26:31 +00:00
|
|
|
PropModeAppend,
|
|
|
|
reinterpret_cast<unsigned char *>(&xa_prop), 1);
|
2018-05-12 16:03:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(stderr, PACKAGE_NAME ": drawing to created window (0x%lx)\n",
|
|
|
|
window.window);
|
|
|
|
fflush(stderr);
|
|
|
|
|
|
|
|
XMapWindow(display, window.window);
|
|
|
|
|
|
|
|
} else
|
2009-07-27 21:34:06 +00:00
|
|
|
#endif /* OWN_WINDOW */
|
2018-05-12 16:03:00 +00:00
|
|
|
{
|
|
|
|
XWindowAttributes attrs;
|
2005-07-20 00:30:40 +00:00
|
|
|
|
2018-05-12 23:26:31 +00:00
|
|
|
if (window.window == 0u) {
|
2018-05-12 16:03:00 +00:00
|
|
|
window.window = find_desktop_window(&window.root, &window.desktop);
|
|
|
|
}
|
2022-12-26 01:39:08 +00:00
|
|
|
if (window.window == 0u) {
|
|
|
|
DBGP2("no root window found");
|
|
|
|
return;
|
|
|
|
}
|
2022-11-28 19:23:23 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
window.visual = DefaultVisual(display, screen);
|
|
|
|
window.colourmap = DefaultColormap(display, screen);
|
2005-07-20 00:30:40 +00:00
|
|
|
|
2018-05-12 23:26:31 +00:00
|
|
|
if (XGetWindowAttributes(display, window.window, &attrs) != 0) {
|
2018-05-12 16:03:00 +00:00
|
|
|
window.width = attrs.width;
|
|
|
|
window.height = attrs.height;
|
|
|
|
}
|
2006-02-14 06:15:38 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
fprintf(stderr, PACKAGE_NAME ": drawing to desktop window\n");
|
|
|
|
}
|
2005-07-20 00:30:40 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
/* Drawable is same as window. This may be changed by double buffering. */
|
|
|
|
window.drawable = window.window;
|
2005-07-20 00:30:40 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
XFlush(display);
|
2005-07-20 00:30:40 +00:00
|
|
|
|
2023-01-01 17:39:57 +00:00
|
|
|
long input_mask = ExposureMask | PropertyChangeMask;
|
2005-07-20 00:30:40 +00:00
|
|
|
#ifdef OWN_WINDOW
|
2023-01-01 17:39:57 +00:00
|
|
|
if (own_window.get(l)) {
|
|
|
|
input_mask |= StructureNotifyMask | ButtonPressMask | ButtonReleaseMask;
|
|
|
|
}
|
|
|
|
#endif /* OWN_WINDOW */
|
|
|
|
#ifdef BUILD_MOUSE_EVENTS
|
|
|
|
/* it's not recommended to add event masks to special windows in X; causes a crash */
|
|
|
|
if (own_window_type.get(l) != TYPE_DESKTOP) {
|
|
|
|
input_mask |= ButtonPressMask | ButtonReleaseMask | PointerMotionMask | EnterWindowMask | LeaveWindowMask;
|
|
|
|
}
|
|
|
|
#endif /* BUILD_MOUSE_EVENTS */
|
|
|
|
XSelectInput(display, window.window, input_mask);
|
2022-12-26 01:39:08 +00:00
|
|
|
|
|
|
|
window_created = 1;
|
|
|
|
DBGP("leave x11_init_window()");
|
2005-07-20 00:30:40 +00:00
|
|
|
}
|
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
static Window find_subwindow(Window win, int w, int h) {
|
|
|
|
unsigned int i, j;
|
|
|
|
Window troot, parent, *children;
|
|
|
|
unsigned int n;
|
|
|
|
|
|
|
|
/* search subwindows with same size as display or work area */
|
|
|
|
|
|
|
|
for (i = 0; i < 10; i++) {
|
|
|
|
XQueryTree(display, win, &troot, &parent, &children, &n);
|
|
|
|
|
|
|
|
for (j = 0; j < n; j++) {
|
|
|
|
XWindowAttributes attrs;
|
|
|
|
|
2018-05-12 23:26:31 +00:00
|
|
|
if (XGetWindowAttributes(display, children[j], &attrs) != 0) {
|
2018-05-12 16:03:00 +00:00
|
|
|
/* Window must be mapped and same size as display or
|
|
|
|
* work space */
|
|
|
|
if (attrs.map_state != 0 &&
|
|
|
|
((attrs.width == display_width && attrs.height == display_height) ||
|
|
|
|
(attrs.width == w && attrs.height == h))) {
|
|
|
|
win = children[j];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
XFree(children);
|
2018-08-08 19:18:14 +00:00
|
|
|
if (j == n) { break; }
|
2018-05-12 16:03:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return win;
|
2005-07-20 00:30:40 +00:00
|
|
|
}
|
|
|
|
|
2018-05-12 23:26:31 +00:00
|
|
|
void create_gc() {
|
2018-05-12 16:03:00 +00:00
|
|
|
XGCValues values;
|
2008-02-20 20:30:45 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
values.graphics_exposures = 0;
|
|
|
|
values.function = GXcopy;
|
|
|
|
window.gc = XCreateGC(display, window.drawable,
|
|
|
|
GCFunction | GCGraphicsExposures, &values);
|
2005-07-20 00:30:40 +00:00
|
|
|
}
|
2005-08-29 17:06:31 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
// Get current desktop number
|
|
|
|
static inline void get_x11_desktop_current(Display *current_display,
|
|
|
|
Window root, Atom atom) {
|
|
|
|
Atom actual_type;
|
|
|
|
int actual_format;
|
|
|
|
unsigned long nitems;
|
|
|
|
unsigned long bytes_after;
|
2018-05-12 23:26:31 +00:00
|
|
|
unsigned char *prop = nullptr;
|
2018-05-12 16:03:00 +00:00
|
|
|
struct information *current_info = &info;
|
|
|
|
|
2018-08-08 19:18:14 +00:00
|
|
|
if (atom == None) { return; }
|
2018-05-12 16:03:00 +00:00
|
|
|
|
|
|
|
if ((XGetWindowProperty(current_display, root, atom, 0, 1L, False,
|
|
|
|
XA_CARDINAL, &actual_type, &actual_format, &nitems,
|
|
|
|
&bytes_after, &prop) == Success) &&
|
|
|
|
(actual_type == XA_CARDINAL) && (nitems == 1L) && (actual_format == 32)) {
|
|
|
|
current_info->x11.desktop.current = prop[0] + 1;
|
|
|
|
}
|
2018-08-08 19:18:14 +00:00
|
|
|
if (prop != nullptr) { XFree(prop); }
|
2009-07-14 14:57:51 +00:00
|
|
|
}
|
2009-07-11 08:50:02 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
// Get total number of available desktops
|
|
|
|
static inline void get_x11_desktop_number(Display *current_display, Window root,
|
|
|
|
Atom atom) {
|
|
|
|
Atom actual_type;
|
|
|
|
int actual_format;
|
|
|
|
unsigned long nitems;
|
|
|
|
unsigned long bytes_after;
|
2018-05-12 23:26:31 +00:00
|
|
|
unsigned char *prop = nullptr;
|
2018-05-12 16:03:00 +00:00
|
|
|
struct information *current_info = &info;
|
|
|
|
|
2018-08-08 19:18:14 +00:00
|
|
|
if (atom == None) { return; }
|
2018-05-12 16:03:00 +00:00
|
|
|
|
|
|
|
if ((XGetWindowProperty(current_display, root, atom, 0, 1L, False,
|
|
|
|
XA_CARDINAL, &actual_type, &actual_format, &nitems,
|
|
|
|
&bytes_after, &prop) == Success) &&
|
|
|
|
(actual_type == XA_CARDINAL) && (nitems == 1L) && (actual_format == 32)) {
|
|
|
|
current_info->x11.desktop.number = prop[0];
|
|
|
|
}
|
2018-08-08 19:18:14 +00:00
|
|
|
if (prop != nullptr) { XFree(prop); }
|
2009-07-14 14:57:51 +00:00
|
|
|
}
|
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
// Get all desktop names
|
|
|
|
static inline void get_x11_desktop_names(Display *current_display, Window root,
|
|
|
|
Atom atom) {
|
|
|
|
Atom actual_type;
|
|
|
|
int actual_format;
|
|
|
|
unsigned long nitems;
|
|
|
|
unsigned long bytes_after;
|
2018-05-12 23:26:31 +00:00
|
|
|
unsigned char *prop = nullptr;
|
2018-05-12 16:03:00 +00:00
|
|
|
struct information *current_info = &info;
|
|
|
|
|
2018-08-08 19:18:14 +00:00
|
|
|
if (atom == None) { return; }
|
2018-05-12 16:03:00 +00:00
|
|
|
|
|
|
|
if ((XGetWindowProperty(current_display, root, atom, 0, (~0L), False,
|
|
|
|
ATOM(UTF8_STRING), &actual_type, &actual_format,
|
|
|
|
&nitems, &bytes_after, &prop) == Success) &&
|
|
|
|
(actual_type == ATOM(UTF8_STRING)) && (nitems > 0L) &&
|
|
|
|
(actual_format == 8)) {
|
|
|
|
current_info->x11.desktop.all_names.assign(
|
|
|
|
reinterpret_cast<const char *>(prop), nitems);
|
|
|
|
}
|
2018-08-08 19:18:14 +00:00
|
|
|
if (prop != nullptr) { XFree(prop); }
|
2009-07-14 14:57:51 +00:00
|
|
|
}
|
2009-07-11 08:50:02 +00:00
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
// Get current desktop name
|
|
|
|
static inline void get_x11_desktop_current_name(const std::string &names) {
|
|
|
|
struct information *current_info = &info;
|
|
|
|
unsigned int i = 0, j = 0;
|
|
|
|
int k = 0;
|
|
|
|
|
|
|
|
while (i < names.size()) {
|
|
|
|
if (names[i++] == '\0') {
|
|
|
|
if (++k == current_info->x11.desktop.current) {
|
|
|
|
current_info->x11.desktop.name.assign(names.c_str() + j);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
j = i;
|
|
|
|
}
|
|
|
|
}
|
2009-07-14 14:57:51 +00:00
|
|
|
}
|
|
|
|
|
2018-05-12 16:03:00 +00:00
|
|
|
void get_x11_desktop_info(Display *current_display, Atom atom) {
|
|
|
|
Window root;
|
|
|
|
static Atom atom_current, atom_number, atom_names;
|
|
|
|
struct information *current_info = &info;
|
|
|
|
XWindowAttributes window_attributes;
|
|
|
|
|
|
|
|
root = RootWindow(current_display, current_info->x11.monitor.current);
|
|
|
|
|
|
|
|
/* Check if we initialise else retrieve changed property */
|
|
|
|
if (atom == 0) {
|
|
|
|
atom_current = XInternAtom(current_display, "_NET_CURRENT_DESKTOP", True);
|
|
|
|
atom_number = XInternAtom(current_display, "_NET_NUMBER_OF_DESKTOPS", True);
|
|
|
|
atom_names = XInternAtom(current_display, "_NET_DESKTOP_NAMES", True);
|
|
|
|
get_x11_desktop_current(current_display, root, atom_current);
|
|
|
|
get_x11_desktop_number(current_display, root, atom_number);
|
|
|
|
get_x11_desktop_names(current_display, root, atom_names);
|
|
|
|
get_x11_desktop_current_name(current_info->x11.desktop.all_names);
|
|
|
|
|
|
|
|
/* Set the PropertyChangeMask on the root window, if not set */
|
|
|
|
XGetWindowAttributes(display, root, &window_attributes);
|
2018-05-12 23:26:31 +00:00
|
|
|
if ((window_attributes.your_event_mask & PropertyChangeMask) == 0) {
|
2018-05-12 16:03:00 +00:00
|
|
|
XSetWindowAttributes attributes;
|
|
|
|
attributes.event_mask =
|
|
|
|
window_attributes.your_event_mask | PropertyChangeMask;
|
|
|
|
XChangeWindowAttributes(display, root, CWEventMask, &attributes);
|
|
|
|
XGetWindowAttributes(display, root, &window_attributes);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (atom == atom_current) {
|
|
|
|
get_x11_desktop_current(current_display, root, atom_current);
|
|
|
|
get_x11_desktop_current_name(current_info->x11.desktop.all_names);
|
|
|
|
} else if (atom == atom_number) {
|
|
|
|
get_x11_desktop_number(current_display, root, atom_number);
|
|
|
|
} else if (atom == atom_names) {
|
|
|
|
get_x11_desktop_names(current_display, root, atom_names);
|
|
|
|
get_x11_desktop_current_name(current_info->x11.desktop.all_names);
|
|
|
|
}
|
|
|
|
}
|
2009-07-14 14:57:51 +00:00
|
|
|
}
|
|
|
|
|
2010-11-13 18:40:43 +00:00
|
|
|
static const char NOT_IN_X[] = "Not running in X";
|
2009-11-25 22:56:19 +00:00
|
|
|
|
2018-08-07 23:22:23 +00:00
|
|
|
void print_monitor(struct text_object *obj, char *p, unsigned int p_max_size) {
|
2018-05-12 16:03:00 +00:00
|
|
|
(void)obj;
|
2009-11-25 22:56:19 +00:00
|
|
|
|
2018-12-20 15:22:08 +00:00
|
|
|
if (!out_to_x.get(*state)) {
|
2018-05-12 16:03:00 +00:00
|
|
|
strncpy(p, NOT_IN_X, p_max_size);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
snprintf(p, p_max_size, "%d", XDefaultScreen(display));
|
2009-11-25 22:56:19 +00:00
|
|
|
}
|
|
|
|
|
2018-08-08 19:18:14 +00:00
|
|
|
void print_monitor_number(struct text_object *obj, char *p,
|
|
|
|
unsigned int p_max_size) {
|
2018-05-12 16:03:00 +00:00
|
|
|
(void)obj;
|
2009-11-25 22:56:19 +00:00
|
|
|
|
2018-12-20 15:22:08 +00:00
|
|
|
if (!out_to_x.get(*state)) {
|
2018-05-12 16:03:00 +00:00
|
|
|
strncpy(p, NOT_IN_X, p_max_size);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
snprintf(p, p_max_size, "%d", XScreenCount(display));
|
2009-11-25 22:56:19 +00:00
|
|
|
}
|
|
|
|
|
2018-08-07 23:22:23 +00:00
|
|
|
void print_desktop(struct text_object *obj, char *p, unsigned int p_max_size) {
|
2018-05-12 16:03:00 +00:00
|
|
|
(void)obj;
|
2009-11-25 22:56:19 +00:00
|
|
|
|
2018-12-20 15:22:08 +00:00
|
|
|
if (!out_to_x.get(*state)) {
|
2018-05-12 16:03:00 +00:00
|
|
|
strncpy(p, NOT_IN_X, p_max_size);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
snprintf(p, p_max_size, "%d", info.x11.desktop.current);
|
2009-11-25 22:56:19 +00:00
|
|
|
}
|
|
|
|
|
2018-08-08 19:18:14 +00:00
|
|
|
void print_desktop_number(struct text_object *obj, char *p,
|
|
|
|
unsigned int p_max_size) {
|
2018-05-12 16:03:00 +00:00
|
|
|
(void)obj;
|
2009-11-25 22:56:19 +00:00
|
|
|
|
2018-12-20 15:22:08 +00:00
|
|
|
if (!out_to_x.get(*state)) {
|
2018-05-12 16:03:00 +00:00
|
|
|
strncpy(p, NOT_IN_X, p_max_size);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
snprintf(p, p_max_size, "%d", info.x11.desktop.number);
|
2009-11-25 22:56:19 +00:00
|
|
|
}
|
|
|
|
|
2018-08-08 19:18:14 +00:00
|
|
|
void print_desktop_name(struct text_object *obj, char *p,
|
|
|
|
unsigned int p_max_size) {
|
2018-05-12 16:03:00 +00:00
|
|
|
(void)obj;
|
2009-11-25 22:56:19 +00:00
|
|
|
|
2018-12-20 15:22:08 +00:00
|
|
|
if (!out_to_x.get(*state)) {
|
2018-05-12 16:03:00 +00:00
|
|
|
strncpy(p, NOT_IN_X, p_max_size);
|
|
|
|
} else {
|
|
|
|
strncpy(p, info.x11.desktop.name.c_str(), p_max_size);
|
|
|
|
}
|
2009-11-25 22:56:19 +00:00
|
|
|
}
|
|
|
|
|
2009-07-13 21:19:32 +00:00
|
|
|
#ifdef OWN_WINDOW
|
2009-06-13 21:36:28 +00:00
|
|
|
/* reserve window manager space */
|
2018-05-12 16:03:00 +00:00
|
|
|
void set_struts(int sidenum) {
|
|
|
|
Atom strut;
|
|
|
|
if ((strut = ATOM(_NET_WM_STRUT)) != None) {
|
|
|
|
/* reserve space at left, right, top, bottom */
|
|
|
|
signed long sizes[12] = {0};
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* define strut depth */
|
|
|
|
switch (sidenum) {
|
|
|
|
case 0:
|
|
|
|
/* left side */
|
|
|
|
sizes[0] = window.x + window.width;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
/* right side */
|
|
|
|
sizes[1] = display_width - window.x;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
/* top side */
|
|
|
|
sizes[2] = window.y + window.height;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
/* bottom side */
|
|
|
|
sizes[3] = display_height - window.y;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* define partial strut length */
|
|
|
|
if (sidenum <= 1) {
|
|
|
|
sizes[4 + (sidenum * 2)] = window.y;
|
|
|
|
sizes[5 + (sidenum * 2)] = window.y + window.height;
|
|
|
|
} else if (sidenum <= 3) {
|
|
|
|
sizes[4 + (sidenum * 2)] = window.x;
|
|
|
|
sizes[5 + (sidenum * 2)] = window.x + window.width;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check constraints */
|
|
|
|
for (i = 0; i < 12; i++) {
|
|
|
|
if (sizes[i] < 0) {
|
|
|
|
sizes[i] = 0;
|
|
|
|
} else {
|
|
|
|
if (i <= 1 || i >= 8) {
|
2018-08-08 19:18:14 +00:00
|
|
|
if (sizes[i] > display_width) { sizes[i] = display_width; }
|
2018-05-12 16:03:00 +00:00
|
|
|
} else {
|
2018-08-08 19:18:14 +00:00
|
|
|
if (sizes[i] > display_height) { sizes[i] = display_height; }
|
2018-05-12 16:03:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
XChangeProperty(display, window.window, strut, XA_CARDINAL, 32,
|
2018-05-12 23:26:31 +00:00
|
|
|
PropModeReplace, reinterpret_cast<unsigned char *>(&sizes),
|
|
|
|
4);
|
2018-05-12 16:03:00 +00:00
|
|
|
|
|
|
|
if ((strut = ATOM(_NET_WM_STRUT_PARTIAL)) != None) {
|
|
|
|
XChangeProperty(display, window.window, strut, XA_CARDINAL, 32,
|
2018-05-12 23:26:31 +00:00
|
|
|
PropModeReplace,
|
|
|
|
reinterpret_cast<unsigned char *>(&sizes), 12);
|
2018-05-12 16:03:00 +00:00
|
|
|
}
|
|
|
|
}
|
2009-06-13 21:36:28 +00:00
|
|
|
}
|
2009-07-13 21:19:32 +00:00
|
|
|
#endif /* OWN_WINDOW */
|
2009-08-05 21:41:29 +00:00
|
|
|
|
2010-01-07 02:38:12 +00:00
|
|
|
#ifdef BUILD_XDBE
|
2018-05-12 23:26:31 +00:00
|
|
|
void xdbe_swap_buffers() {
|
2018-05-12 16:03:00 +00:00
|
|
|
if (use_xdbe.get(*state)) {
|
|
|
|
XdbeSwapInfo swap;
|
|
|
|
|
|
|
|
swap.swap_window = window.window;
|
|
|
|
swap.swap_action = XdbeBackground;
|
|
|
|
XdbeSwapBuffers(display, &swap, 1);
|
|
|
|
}
|
2009-08-05 21:41:29 +00:00
|
|
|
}
|
2012-04-11 16:06:47 +00:00
|
|
|
#else
|
2018-05-12 16:03:00 +00:00
|
|
|
void xpmdb_swap_buffers(void) {
|
|
|
|
if (use_xpmdb.get(*state)) {
|
|
|
|
XCopyArea(display, window.back_buffer, window.window, window.gc, 0, 0,
|
|
|
|
window.width, window.height, 0, 0);
|
|
|
|
XSetForeground(display, window.gc, 0);
|
|
|
|
XFillRectangle(display, window.drawable, window.gc, 0, 0, window.width,
|
|
|
|
window.height);
|
|
|
|
XFlush(display);
|
|
|
|
}
|
2012-04-11 16:06:47 +00:00
|
|
|
}
|
2010-01-07 02:38:12 +00:00
|
|
|
#endif /* BUILD_XDBE */
|
2018-08-02 15:15:16 +00:00
|
|
|
|
2018-08-08 19:18:14 +00:00
|
|
|
void print_kdb_led(const int keybit, char *p, unsigned int p_max_size) {
|
|
|
|
XKeyboardState x;
|
|
|
|
XGetKeyboardControl(display, &x);
|
|
|
|
snprintf(p, p_max_size, "%s", (x.led_mask & keybit ? "On" : "Off"));
|
2018-08-02 15:15:16 +00:00
|
|
|
}
|
2018-12-08 21:50:00 +00:00
|
|
|
void print_key_caps_lock(struct text_object *obj, char *p,
|
|
|
|
unsigned int p_max_size) {
|
2018-08-08 19:18:14 +00:00
|
|
|
(void)obj;
|
|
|
|
print_kdb_led(1, p, p_max_size);
|
2018-08-08 18:28:36 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 21:50:00 +00:00
|
|
|
void print_key_num_lock(struct text_object *obj, char *p,
|
|
|
|
unsigned int p_max_size) {
|
2018-08-08 19:18:14 +00:00
|
|
|
(void)obj;
|
|
|
|
print_kdb_led(2, p, p_max_size);
|
2018-08-08 18:28:36 +00:00
|
|
|
}
|
|
|
|
|
2018-09-01 08:42:56 +00:00
|
|
|
void print_key_scroll_lock(struct text_object *obj, char *p,
|
2018-12-08 21:50:00 +00:00
|
|
|
unsigned int p_max_size) {
|
2018-08-08 19:18:14 +00:00
|
|
|
(void)obj;
|
|
|
|
print_kdb_led(4, p, p_max_size);
|
|
|
|
}
|
2018-08-04 20:26:40 +00:00
|
|
|
|
2018-08-31 12:36:46 +00:00
|
|
|
void print_keyboard_layout(struct text_object *obj, char *p,
|
2018-12-08 21:50:00 +00:00
|
|
|
unsigned int p_max_size) {
|
2018-08-04 20:26:40 +00:00
|
|
|
(void)obj;
|
|
|
|
|
|
|
|
char *group = NULL;
|
|
|
|
XkbStateRec state;
|
|
|
|
XkbDescPtr desc;
|
|
|
|
|
|
|
|
XkbGetState(display, XkbUseCoreKbd, &state);
|
|
|
|
desc = XkbGetKeyboard(display, XkbAllComponentsMask, XkbUseCoreKbd);
|
|
|
|
group = XGetAtomName(display, desc->names->groups[state.group]);
|
|
|
|
|
|
|
|
snprintf(p, p_max_size, "%s", (group != NULL ? group : "unknown"));
|
|
|
|
XFree(group);
|
2021-01-24 22:33:43 +00:00
|
|
|
XkbFreeKeyboard(desc, XkbGBN_AllComponentsMask, True);
|
2018-08-04 20:26:40 +00:00
|
|
|
}
|
|
|
|
|
2018-08-08 19:18:14 +00:00
|
|
|
void print_mouse_speed(struct text_object *obj, char *p,
|
|
|
|
unsigned int p_max_size) {
|
2018-08-04 20:26:40 +00:00
|
|
|
(void)obj;
|
2018-08-06 07:41:02 +00:00
|
|
|
int acc_num = 0;
|
|
|
|
int acc_denom = 0;
|
|
|
|
int threshold = 0;
|
2018-08-04 20:26:40 +00:00
|
|
|
|
|
|
|
XGetPointerControl(display, &acc_num, &acc_denom, &threshold);
|
|
|
|
snprintf(p, p_max_size, "%d%%", (110 - threshold));
|
|
|
|
}
|