2013-07-19 10:55:01 -04:00
|
|
|
/**
|
2014-03-01 11:27:52 -05:00
|
|
|
* rofi
|
2014-01-10 04:35:38 -05:00
|
|
|
*
|
2013-07-19 10:55:01 -04:00
|
|
|
* MIT/X11 License
|
|
|
|
* Copyright (c) 2012 Sean Pringle <sean.pringle@gmail.com>
|
2015-04-14 16:12:21 -04:00
|
|
|
* Modified 2013-2015 Qball Cow <qball@gmpclient.org>
|
2014-01-10 04:35:38 -05:00
|
|
|
*
|
2013-07-19 10:55:01 -04: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:
|
2014-01-10 04:35:38 -05:00
|
|
|
*
|
2013-07-19 10:55:01 -04:00
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
* included in all copies or substantial portions of the Software.
|
2014-01-10 04:35:38 -05:00
|
|
|
*
|
2013-07-19 10:55:01 -04:00
|
|
|
* 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-11-14 07:47:45 -05:00
|
|
|
|
2014-08-22 03:26:46 -04:00
|
|
|
#include <config.h>
|
2012-06-29 13:10:13 -04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
2014-06-05 11:48:25 -04:00
|
|
|
#include <stdint.h>
|
2012-06-29 13:10:13 -04:00
|
|
|
#include <signal.h>
|
2014-01-21 08:56:25 -05:00
|
|
|
#include <errno.h>
|
2014-03-16 08:47:44 -04:00
|
|
|
#include <time.h>
|
2015-11-22 07:57:51 -05:00
|
|
|
#include <locale.h>
|
2014-01-20 17:36:20 -05:00
|
|
|
#include <X11/X.h>
|
|
|
|
#include <X11/Xatom.h>
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/Xutil.h>
|
|
|
|
#include <X11/Xproto.h>
|
|
|
|
#include <X11/keysym.h>
|
|
|
|
#include <X11/XKBlib.h>
|
2015-01-30 15:55:31 -05:00
|
|
|
#include <sys/wait.h>
|
2015-02-01 04:03:16 -05:00
|
|
|
#include <sys/types.h>
|
2014-03-18 05:55:25 -04:00
|
|
|
|
2015-09-26 14:34:34 -04:00
|
|
|
#include <cairo.h>
|
|
|
|
#include <cairo-xlib.h>
|
|
|
|
|
2015-09-13 11:29:50 -04:00
|
|
|
#define SN_API_NOT_YET_FROZEN
|
|
|
|
#include <libsn/sn.h>
|
|
|
|
|
2015-02-14 13:42:04 -05:00
|
|
|
#include "rofi.h"
|
2015-01-30 15:55:31 -05:00
|
|
|
#include "helper.h"
|
2015-02-14 13:42:04 -05:00
|
|
|
#include "textbox.h"
|
2015-09-03 12:23:00 -04:00
|
|
|
#include "scrollbar.h"
|
2015-02-09 13:35:51 -05:00
|
|
|
#include "x11-helper.h"
|
|
|
|
#include "xrmoptions.h"
|
2015-08-31 01:57:29 -04:00
|
|
|
#include "dialogs/dialogs.h"
|
2015-09-19 06:21:30 -04:00
|
|
|
|
2015-03-27 15:28:53 -04:00
|
|
|
SwitcherMode switcher_run ( char **input, Switcher *sw );
|
|
|
|
|
2015-02-09 13:35:51 -05:00
|
|
|
typedef enum _MainLoopEvent
|
|
|
|
{
|
|
|
|
ML_XEVENT,
|
|
|
|
ML_TIMEOUT
|
|
|
|
} MainLoopEvent;
|
2015-09-19 06:21:30 -04:00
|
|
|
typedef struct _Mode
|
|
|
|
{
|
|
|
|
Switcher *sw;
|
|
|
|
textbox *tb;
|
|
|
|
} Mode;
|
2015-02-09 13:35:51 -05:00
|
|
|
|
2015-02-03 02:00:33 -05:00
|
|
|
// Pidfile.
|
2015-09-19 06:21:30 -04:00
|
|
|
extern Atom netatoms[NUM_NETATOMS];
|
2015-09-26 15:17:30 -04:00
|
|
|
char *pidfile = NULL;
|
|
|
|
const char *cache_dir = NULL;
|
|
|
|
SnDisplay *sndisplay = NULL;
|
|
|
|
SnLauncheeContext *sncontext = NULL;
|
|
|
|
Display *display = NULL;
|
|
|
|
char *display_str = NULL;
|
|
|
|
Window main_window = None;
|
2015-09-13 11:29:50 -04:00
|
|
|
Colormap map = None;
|
|
|
|
unsigned int normal_window_mode = FALSE;
|
2015-01-17 12:27:41 -05:00
|
|
|
// Array of switchers.
|
2015-09-19 06:21:30 -04:00
|
|
|
Mode *switchers = NULL;
|
|
|
|
unsigned int num_switchers = 0;
|
2015-01-17 12:27:41 -05:00
|
|
|
// Current selected switcher.
|
2015-09-19 06:21:30 -04:00
|
|
|
unsigned int curr_switcher = 0;
|
|
|
|
XVisualInfo vinfo;
|
2014-07-21 15:39:24 -04:00
|
|
|
|
2015-09-26 14:34:34 -04:00
|
|
|
cairo_surface_t *surface = NULL;
|
|
|
|
cairo_t *draw = NULL;
|
|
|
|
XIM xim;
|
|
|
|
XIC xic;
|
|
|
|
|
2015-11-14 07:47:45 -05:00
|
|
|
GThreadPool *tpool = NULL;
|
|
|
|
|
2014-12-02 02:11:53 -05:00
|
|
|
/**
|
|
|
|
* @param name Name of the switcher to lookup.
|
|
|
|
*
|
|
|
|
* Find the index of the switcher with name.
|
|
|
|
*
|
|
|
|
* @returns index of the switcher in switchers, -1 if not found.
|
|
|
|
*/
|
|
|
|
static int switcher_get ( const char *name )
|
2014-07-21 15:39:24 -04:00
|
|
|
{
|
2014-08-22 03:43:26 -04:00
|
|
|
for ( unsigned int i = 0; i < num_switchers; i++ ) {
|
2015-09-07 13:10:44 -04:00
|
|
|
if ( strcmp ( switchers[i].sw->name, name ) == 0 ) {
|
2014-07-21 15:39:24 -04:00
|
|
|
return i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2015-02-13 02:26:23 -05:00
|
|
|
/**
|
|
|
|
* @param display Connection to the X server.
|
|
|
|
* @param x11_fd File descriptor from the X server to listen on.
|
|
|
|
*
|
|
|
|
* Function waits for a new XEvent with a timeout.
|
|
|
|
*/
|
2015-01-29 11:37:12 -05:00
|
|
|
static inline MainLoopEvent wait_for_xevent_or_timeout ( Display *display, int x11_fd )
|
|
|
|
{
|
|
|
|
// Check if events are pending.
|
|
|
|
if ( XPending ( display ) ) {
|
|
|
|
return ML_XEVENT;
|
|
|
|
}
|
|
|
|
// If not, wait for timeout.
|
2015-09-19 06:21:30 -04:00
|
|
|
struct timeval tv = { .tv_usec = 200000, .tv_sec = 0 };
|
2015-01-29 11:37:12 -05:00
|
|
|
fd_set in_fds;
|
|
|
|
// Create a File Description Set containing x11_fd
|
|
|
|
FD_ZERO ( &in_fds );
|
|
|
|
FD_SET ( x11_fd, &in_fds );
|
|
|
|
|
|
|
|
// Wait for X Event or a Timer
|
|
|
|
if ( select ( x11_fd + 1, &in_fds, 0, 0, &tv ) == 0 ) {
|
|
|
|
return ML_TIMEOUT;
|
|
|
|
}
|
|
|
|
return ML_XEVENT;
|
|
|
|
}
|
2014-01-10 04:35:38 -05:00
|
|
|
|
2015-08-29 05:56:50 -04:00
|
|
|
/**
|
|
|
|
* Levenshtein Sorting.
|
|
|
|
*/
|
2014-01-20 18:20:09 -05:00
|
|
|
|
2015-10-15 16:33:44 -04:00
|
|
|
static int lev_sort ( const void *p1, const void *p2, void *arg )
|
|
|
|
{
|
|
|
|
const int *a = p1;
|
|
|
|
const int *b = p2;
|
|
|
|
int *distances = arg;
|
|
|
|
|
|
|
|
return distances[*a] - distances[*b];
|
|
|
|
}
|
|
|
|
|
|
|
|
#define MIN3( a, b, c ) ( ( a ) < ( b ) ? ( ( a ) < ( c ) ? ( a ) : ( c ) ) : ( ( b ) < ( c ) ? ( b ) : ( c ) ) )
|
|
|
|
|
2015-11-21 17:59:59 -05:00
|
|
|
static int levenshtein ( const char *s1, const char *s2 )
|
2015-10-15 16:33:44 -04:00
|
|
|
{
|
|
|
|
unsigned int x, y, lastdiag, olddiag;
|
|
|
|
size_t s1len = strlen ( s1 );
|
|
|
|
size_t s2len = strlen ( s2 );
|
|
|
|
unsigned int column[s1len + 1];
|
|
|
|
for ( y = 1; y <= s1len; y++ ) {
|
|
|
|
column[y] = y;
|
|
|
|
}
|
|
|
|
for ( x = 1; x <= s2len; x++ ) {
|
|
|
|
column[0] = x;
|
|
|
|
for ( y = 1, lastdiag = x - 1; y <= s1len; y++ ) {
|
|
|
|
olddiag = column[y];
|
|
|
|
column[y] = MIN3 ( column[y] + 1, column[y - 1] + 1, lastdiag + ( s1[y - 1] == s2[x - 1] ? 0 : 1 ) );
|
|
|
|
lastdiag = olddiag;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return column[s1len];
|
|
|
|
}
|
|
|
|
|
2014-08-26 14:25:00 -04:00
|
|
|
// State of the menu.
|
|
|
|
|
|
|
|
typedef struct MenuState
|
|
|
|
{
|
2015-10-20 12:41:45 -04:00
|
|
|
Switcher *sw;
|
|
|
|
unsigned int menu_lines;
|
|
|
|
unsigned int max_elements;
|
|
|
|
unsigned int max_rows;
|
|
|
|
unsigned int columns;
|
2014-08-26 14:25:00 -04:00
|
|
|
|
|
|
|
// window width,height
|
2015-10-20 12:41:45 -04:00
|
|
|
unsigned int w, h;
|
|
|
|
int x, y;
|
|
|
|
unsigned int element_width;
|
|
|
|
int top_offset;
|
2014-08-26 14:25:00 -04:00
|
|
|
|
|
|
|
// Update/Refilter list.
|
2015-10-20 12:41:45 -04:00
|
|
|
int update;
|
|
|
|
int refilter;
|
|
|
|
int rchanged;
|
|
|
|
int cur_page;
|
2014-08-26 14:25:00 -04:00
|
|
|
|
|
|
|
// Entries
|
2015-10-20 12:41:45 -04:00
|
|
|
textbox *text;
|
|
|
|
textbox *prompt_tb;
|
|
|
|
textbox *message_tb;
|
|
|
|
textbox *case_indicator;
|
|
|
|
textbox **boxes;
|
|
|
|
scrollbar *scrollbar;
|
|
|
|
int *distance;
|
|
|
|
unsigned int *line_map;
|
2015-03-31 16:45:02 -04:00
|
|
|
|
2015-10-20 12:41:45 -04:00
|
|
|
unsigned int num_lines;
|
2014-08-26 14:25:00 -04:00
|
|
|
|
|
|
|
// Selected element.
|
2015-10-20 12:41:45 -04:00
|
|
|
unsigned int selected;
|
|
|
|
unsigned int filtered_lines;
|
2014-08-26 14:25:00 -04:00
|
|
|
// Last offset in paginating.
|
2015-10-20 12:41:45 -04:00
|
|
|
unsigned int last_offset;
|
2014-08-26 14:25:00 -04:00
|
|
|
|
2015-10-20 12:41:45 -04:00
|
|
|
KeySym prev_key;
|
|
|
|
Time last_button_press;
|
2014-08-26 14:25:00 -04:00
|
|
|
|
2015-10-20 12:41:45 -04:00
|
|
|
int quit;
|
|
|
|
int skip_absorb;
|
2014-08-26 14:25:00 -04:00
|
|
|
// Return state
|
2015-10-20 12:41:45 -04:00
|
|
|
unsigned int *selected_line;
|
|
|
|
MenuReturn retv;
|
|
|
|
int *lines_not_ascii;
|
|
|
|
int line_height;
|
|
|
|
unsigned int border;
|
|
|
|
cairo_surface_t *bg;
|
2015-10-20 12:51:29 -04:00
|
|
|
workarea mon;
|
2014-08-26 14:25:00 -04:00
|
|
|
}MenuState;
|
|
|
|
|
2015-09-26 14:34:34 -04:00
|
|
|
static Window create_window ( Display *display )
|
|
|
|
{
|
|
|
|
XSetWindowAttributes attr;
|
|
|
|
attr.colormap = map;
|
2015-10-10 07:03:11 -04:00
|
|
|
attr.border_pixel = 0;
|
|
|
|
attr.background_pixel = 0;
|
2015-09-26 14:34:34 -04:00
|
|
|
|
2015-10-10 07:03:11 -04:00
|
|
|
Window box = XCreateWindow ( display, DefaultRootWindow ( display ), 0, 0, 200, 100, 0, vinfo.depth, InputOutput,
|
2015-09-26 14:34:34 -04:00
|
|
|
vinfo.visual, CWColormap | CWBorderPixel | CWBackPixel, &attr );
|
|
|
|
XSelectInput (
|
|
|
|
display,
|
|
|
|
box,
|
|
|
|
KeyReleaseMask | KeyPressMask | ExposureMask | ButtonPressMask | StructureNotifyMask | FocusChangeMask |
|
|
|
|
Button1MotionMask );
|
|
|
|
|
|
|
|
surface = cairo_xlib_surface_create ( display, box, vinfo.visual, 200, 100 );
|
|
|
|
// Create a drawable.
|
|
|
|
draw = cairo_create ( surface );
|
|
|
|
cairo_set_operator ( draw, CAIRO_OPERATOR_SOURCE );
|
|
|
|
|
|
|
|
// // make it an unmanaged window
|
2015-10-16 14:51:37 -04:00
|
|
|
if ( !normal_window_mode && !config.fullscreen ) {
|
2015-09-26 14:34:34 -04:00
|
|
|
window_set_atom_prop ( display, box, netatoms[_NET_WM_STATE], &netatoms[_NET_WM_STATE_ABOVE], 1 );
|
|
|
|
XSetWindowAttributes sattr = { .override_redirect = True };
|
|
|
|
XChangeWindowAttributes ( display, box, CWOverrideRedirect, &sattr );
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
window_set_atom_prop ( display, box, netatoms[_NET_WM_WINDOW_TYPE], &netatoms[_NET_WM_WINDOW_TYPE_NORMAL], 1 );
|
|
|
|
}
|
2015-10-16 14:51:37 -04:00
|
|
|
if ( config.fullscreen ) {
|
|
|
|
Atom atoms[] = {
|
|
|
|
netatoms[_NET_WM_STATE_FULLSCREEN],
|
|
|
|
netatoms[_NET_WM_STATE_ABOVE]
|
|
|
|
};
|
|
|
|
window_set_atom_prop ( display, box, netatoms[_NET_WM_STATE], atoms, sizeof ( atoms ) / sizeof ( Atom ) );
|
|
|
|
}
|
2015-09-26 14:34:34 -04:00
|
|
|
|
|
|
|
xim = XOpenIM ( display, NULL, NULL, NULL );
|
|
|
|
xic = XCreateIC ( xim, XNInputStyle, XIMPreeditNothing | XIMStatusNothing, XNClientWindow,
|
|
|
|
box, XNFocusWindow, box, NULL );
|
|
|
|
|
|
|
|
// Set the WM_NAME
|
|
|
|
XStoreName ( display, box, "rofi" );
|
|
|
|
|
|
|
|
x11_set_window_opacity ( display, box, config.window_opacity );
|
|
|
|
return box;
|
|
|
|
}
|
|
|
|
|
2014-08-26 14:25:00 -04:00
|
|
|
/**
|
|
|
|
* @param state Internal state of the menu.
|
|
|
|
*
|
|
|
|
* Free the allocated fields in the state.
|
|
|
|
*/
|
|
|
|
static void menu_free_state ( MenuState *state )
|
|
|
|
{
|
|
|
|
textbox_free ( state->text );
|
|
|
|
textbox_free ( state->prompt_tb );
|
2015-01-12 18:01:16 -05:00
|
|
|
textbox_free ( state->case_indicator );
|
2015-09-03 12:23:00 -04:00
|
|
|
scrollbar_free ( state->scrollbar );
|
2015-10-20 12:41:45 -04:00
|
|
|
if ( state->bg ) {
|
|
|
|
cairo_surface_destroy ( state->bg );
|
|
|
|
state->bg = NULL;
|
|
|
|
}
|
2014-08-26 14:25:00 -04:00
|
|
|
|
|
|
|
for ( unsigned int i = 0; i < state->max_elements; i++ ) {
|
|
|
|
textbox_free ( state->boxes[i] );
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free ( state->boxes );
|
|
|
|
g_free ( state->line_map );
|
2015-10-15 16:33:44 -04:00
|
|
|
g_free ( state->distance );
|
2015-10-01 07:16:41 -04:00
|
|
|
g_free ( state->lines_not_ascii );
|
2014-08-26 14:25:00 -04:00
|
|
|
}
|
|
|
|
|
2014-07-19 14:42:22 -04:00
|
|
|
/**
|
2015-09-19 06:21:30 -04:00
|
|
|
* @param state the state of the View.
|
2015-03-05 14:26:52 -05:00
|
|
|
* @param mon the work area.
|
2015-09-19 06:21:30 -04:00
|
|
|
*
|
|
|
|
* Calculates the window poslition
|
2014-07-19 14:42:22 -04:00
|
|
|
*/
|
2015-10-20 12:51:29 -04:00
|
|
|
static void calculate_window_position ( MenuState *state )
|
2014-07-19 14:42:22 -04:00
|
|
|
{
|
|
|
|
// Default location is center.
|
2015-10-20 12:51:29 -04:00
|
|
|
state->y = state->mon.y + ( state->mon.h - state->h ) / 2;
|
|
|
|
state->x = state->mon.x + ( state->mon.w - state->w ) / 2;
|
2014-07-19 14:42:22 -04:00
|
|
|
// Determine window location
|
|
|
|
switch ( config.location )
|
|
|
|
{
|
|
|
|
case WL_NORTH_WEST:
|
2015-10-20 12:51:29 -04:00
|
|
|
state->x = state->mon.x;
|
2014-07-19 14:42:22 -04:00
|
|
|
case WL_NORTH:
|
2015-10-20 12:51:29 -04:00
|
|
|
state->y = state->mon.y;
|
2014-07-19 14:42:22 -04:00
|
|
|
break;
|
|
|
|
case WL_NORTH_EAST:
|
2015-10-20 12:51:29 -04:00
|
|
|
state->y = state->mon.y;
|
2014-07-19 14:42:22 -04:00
|
|
|
case WL_EAST:
|
2015-10-20 12:51:29 -04:00
|
|
|
state->x = state->mon.x + state->mon.w - state->w;
|
2014-07-19 14:42:22 -04:00
|
|
|
break;
|
|
|
|
case WL_EAST_SOUTH:
|
2015-10-20 12:51:29 -04:00
|
|
|
state->x = state->mon.x + state->mon.w - state->w;
|
2014-07-19 14:42:22 -04:00
|
|
|
case WL_SOUTH:
|
2015-10-20 12:51:29 -04:00
|
|
|
state->y = state->mon.y + state->mon.h - state->h;
|
2014-07-19 14:42:22 -04:00
|
|
|
break;
|
|
|
|
case WL_SOUTH_WEST:
|
2015-10-20 12:51:29 -04:00
|
|
|
state->y = state->mon.y + state->mon.h - state->h;
|
2014-07-19 14:42:22 -04:00
|
|
|
case WL_WEST:
|
2015-10-20 12:51:29 -04:00
|
|
|
state->x = state->mon.x;
|
2014-07-19 14:42:22 -04:00
|
|
|
break;
|
|
|
|
case WL_CENTER:
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// Apply offset.
|
2014-08-26 14:25:00 -04:00
|
|
|
state->x += config.x_offset;
|
|
|
|
state->y += config.y_offset;
|
2014-07-19 14:42:22 -04:00
|
|
|
}
|
|
|
|
|
2014-08-26 14:25:00 -04:00
|
|
|
/**
|
|
|
|
* @param state Internal state of the menu.
|
|
|
|
*
|
|
|
|
* Calculate the number of rows, columns and elements to display based on the
|
|
|
|
* configuration and available data.
|
|
|
|
*/
|
|
|
|
static void menu_calculate_rows_columns ( MenuState *state )
|
2012-06-29 13:10:13 -04:00
|
|
|
{
|
2014-08-26 14:25:00 -04:00
|
|
|
state->columns = config.menu_columns;
|
2014-11-09 07:10:24 -05:00
|
|
|
state->max_elements = MIN ( state->menu_lines * state->columns, state->num_lines );
|
2014-01-10 04:35:38 -05:00
|
|
|
|
2014-07-19 16:01:34 -04:00
|
|
|
// Calculate the number or rows. We do this by getting the num_lines rounded up to X columns
|
|
|
|
// (num elements is better name) then dividing by columns.
|
2015-09-19 14:59:50 -04:00
|
|
|
state->max_rows = MIN ( state->menu_lines, (unsigned int) ( ( state->num_lines + ( state->columns - state->num_lines %
|
|
|
|
state->columns ) %
|
|
|
|
state->columns ) / ( state->columns ) ) );
|
2015-04-05 07:36:39 -04:00
|
|
|
// Always have at least one row.
|
2015-04-05 16:29:26 -04:00
|
|
|
state->max_rows = MAX ( 1, state->max_rows );
|
2014-01-10 04:35:38 -05:00
|
|
|
|
2014-06-04 15:29:23 -04:00
|
|
|
if ( config.fixed_num_lines == TRUE ) {
|
2014-11-09 07:10:24 -05:00
|
|
|
state->max_elements = state->menu_lines * state->columns;
|
|
|
|
state->max_rows = state->menu_lines;
|
2014-05-24 04:35:09 -04:00
|
|
|
// If it would fit in one column, only use one column.
|
2014-08-26 14:25:00 -04:00
|
|
|
if ( state->num_lines < state->max_elements ) {
|
2015-09-19 06:21:30 -04:00
|
|
|
state->columns =
|
2015-09-19 06:57:48 -04:00
|
|
|
( state->num_lines + ( state->max_rows - state->num_lines % state->max_rows ) % state->max_rows ) / state->max_rows;
|
2014-11-09 07:10:24 -05:00
|
|
|
state->max_elements = state->menu_lines * state->columns;
|
2014-05-24 04:35:09 -04:00
|
|
|
}
|
2014-05-25 05:04:45 -04:00
|
|
|
// Sanitize.
|
2014-08-26 14:25:00 -04:00
|
|
|
if ( state->columns == 0 ) {
|
|
|
|
state->columns = 1;
|
2014-05-25 05:04:45 -04:00
|
|
|
}
|
2014-05-19 03:50:09 -04:00
|
|
|
}
|
2014-08-26 14:25:00 -04:00
|
|
|
}
|
2012-08-23 21:28:39 -04:00
|
|
|
|
2014-08-26 14:25:00 -04:00
|
|
|
/**
|
|
|
|
* @param state Internal state of the menu.
|
|
|
|
* @param mon the dimensions of the monitor rofi is displayed on.
|
|
|
|
*
|
|
|
|
* Calculate the width of the window and the width of an element.
|
|
|
|
*/
|
|
|
|
static void menu_calculate_window_and_element_width ( MenuState *state, workarea *mon )
|
|
|
|
{
|
2014-08-11 14:21:29 -04:00
|
|
|
if ( config.menu_width < 0 ) {
|
2014-08-26 14:25:00 -04:00
|
|
|
double fw = textbox_get_estimated_char_width ( );
|
|
|
|
state->w = -( fw * config.menu_width );
|
2015-10-10 07:03:11 -04:00
|
|
|
state->w += 2 * state->border + 4; // 4 = 2*SIDE_MARGIN
|
2014-08-11 14:21:29 -04:00
|
|
|
}
|
|
|
|
else{
|
|
|
|
// Calculate as float to stop silly, big rounding down errors.
|
2015-09-19 06:57:48 -04:00
|
|
|
state->w = config.menu_width < 101 ? ( mon->w / 100.0f ) * ( float ) config.menu_width : config.menu_width;
|
2014-08-11 14:21:29 -04:00
|
|
|
}
|
|
|
|
|
2014-09-03 07:07:26 -04:00
|
|
|
if ( state->columns > 0 ) {
|
2015-10-10 07:03:11 -04:00
|
|
|
state->element_width = state->w - ( 2 * ( state->border ) );
|
2014-08-27 13:44:15 -04:00
|
|
|
// Divide by the # columns
|
2015-09-19 06:57:48 -04:00
|
|
|
state->element_width = ( state->element_width - ( state->columns - 1 ) * config.line_margin ) / state->columns;
|
2014-08-11 14:21:29 -04:00
|
|
|
}
|
2014-08-26 14:25:00 -04:00
|
|
|
}
|
2014-08-11 14:21:29 -04:00
|
|
|
|
2015-01-14 16:14:15 -05:00
|
|
|
/**
|
|
|
|
* Nav helper functions, to avoid duplicate code.
|
|
|
|
*/
|
2015-08-31 11:47:26 -04:00
|
|
|
/**
|
|
|
|
* @param state The current MenuState
|
|
|
|
*
|
|
|
|
* Move the selection one page down.
|
|
|
|
* - No wrap around.
|
|
|
|
* - Clip at top/bottom
|
|
|
|
*/
|
|
|
|
inline static void menu_nav_page_next ( MenuState *state )
|
|
|
|
{
|
2015-11-20 05:43:22 -05:00
|
|
|
// If no lines, do nothing.
|
|
|
|
if ( state->filtered_lines == 0 ) {
|
|
|
|
return;
|
|
|
|
}
|
2015-08-31 11:47:26 -04:00
|
|
|
state->selected += ( state->max_elements );
|
|
|
|
if ( state->selected >= state->filtered_lines ) {
|
|
|
|
state->selected = state->filtered_lines - 1;
|
|
|
|
}
|
|
|
|
state->update = TRUE;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* @param state The current MenuState
|
|
|
|
*
|
|
|
|
* Move the selection one page up.
|
|
|
|
* - No wrap around.
|
|
|
|
* - Clip at top/bottom
|
|
|
|
*/
|
|
|
|
inline static void menu_nav_page_prev ( MenuState * state )
|
|
|
|
{
|
|
|
|
if ( state->selected < state->max_elements ) {
|
|
|
|
state->selected = 0;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
state->selected -= ( state->max_elements );
|
|
|
|
}
|
|
|
|
state->update = TRUE;
|
|
|
|
}
|
2015-01-15 02:33:45 -05:00
|
|
|
/**
|
|
|
|
* @param state The current MenuState
|
|
|
|
*
|
|
|
|
* Move the selection one column to the right.
|
|
|
|
* - No wrap around.
|
|
|
|
* - Do not move to top row when at start.
|
|
|
|
*/
|
2015-01-14 16:14:15 -05:00
|
|
|
inline static void menu_nav_right ( MenuState *state )
|
|
|
|
{
|
2015-11-20 05:43:22 -05:00
|
|
|
// If no lines, do nothing.
|
|
|
|
if ( state->filtered_lines == 0 ) {
|
|
|
|
return;
|
|
|
|
}
|
2015-01-15 02:33:45 -05:00
|
|
|
if ( ( state->selected + state->max_rows ) < state->filtered_lines ) {
|
|
|
|
state->selected += state->max_rows;
|
|
|
|
state->update = TRUE;
|
|
|
|
}
|
|
|
|
else if ( state->selected < ( state->filtered_lines - 1 ) ) {
|
|
|
|
// We do not want to move to last item, UNLESS the last column is only
|
|
|
|
// partially filled, then we still want to move column and select last entry.
|
|
|
|
// First check the column we are currently in.
|
|
|
|
int col = state->selected / state->max_rows;
|
|
|
|
// Check total number of columns.
|
|
|
|
int ncol = state->filtered_lines / state->max_rows;
|
|
|
|
// If there is an extra column, move.
|
|
|
|
if ( col != ncol ) {
|
|
|
|
state->selected = state->filtered_lines - 1;
|
|
|
|
state->update = TRUE;
|
|
|
|
}
|
2015-01-14 16:14:15 -05:00
|
|
|
}
|
|
|
|
}
|
2015-01-15 02:33:45 -05:00
|
|
|
/**
|
|
|
|
* @param state The current MenuState
|
|
|
|
*
|
|
|
|
* Move the selection one column to the left.
|
|
|
|
* - No wrap around.
|
|
|
|
*/
|
2015-01-14 16:14:15 -05:00
|
|
|
inline static void menu_nav_left ( MenuState *state )
|
|
|
|
{
|
2015-01-15 02:33:45 -05:00
|
|
|
if ( state->selected >= state->max_rows ) {
|
2015-01-14 16:14:15 -05:00
|
|
|
state->selected -= state->max_rows;
|
2015-01-15 02:33:45 -05:00
|
|
|
state->update = TRUE;
|
2015-01-14 16:14:15 -05:00
|
|
|
}
|
|
|
|
}
|
2015-01-15 02:33:45 -05:00
|
|
|
/**
|
|
|
|
* @param state The current MenuState
|
|
|
|
*
|
|
|
|
* Move the selection one row up.
|
|
|
|
* - Wrap around.
|
|
|
|
*/
|
2015-01-14 16:14:15 -05:00
|
|
|
inline static void menu_nav_up ( MenuState *state )
|
|
|
|
{
|
2015-01-15 02:33:45 -05:00
|
|
|
// Wrap around.
|
2015-01-14 16:14:15 -05:00
|
|
|
if ( state->selected == 0 ) {
|
|
|
|
state->selected = state->filtered_lines;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( state->selected > 0 ) {
|
|
|
|
state->selected--;
|
|
|
|
}
|
|
|
|
state->update = TRUE;
|
|
|
|
}
|
2015-01-15 02:33:45 -05:00
|
|
|
/**
|
|
|
|
* @param state The current MenuState
|
|
|
|
*
|
|
|
|
* Move the selection one row down.
|
|
|
|
* - Wrap around.
|
|
|
|
*/
|
2015-01-14 16:14:15 -05:00
|
|
|
inline static void menu_nav_down ( MenuState *state )
|
|
|
|
{
|
2015-11-20 05:43:22 -05:00
|
|
|
// If no lines, do nothing.
|
|
|
|
if ( state->filtered_lines == 0 ) {
|
|
|
|
return;
|
|
|
|
}
|
2015-09-19 06:57:48 -04:00
|
|
|
state->selected = state->selected < state->filtered_lines - 1 ? MIN ( state->filtered_lines - 1, state->selected + 1 ) : 0;
|
|
|
|
state->update = TRUE;
|
2015-01-14 16:14:15 -05:00
|
|
|
}
|
2015-08-31 11:47:26 -04:00
|
|
|
/**
|
|
|
|
* @param state The current MenuState
|
|
|
|
*
|
|
|
|
* Move the selection to first row.
|
|
|
|
*/
|
|
|
|
inline static void menu_nav_first ( MenuState * state )
|
|
|
|
{
|
|
|
|
state->selected = 0;
|
|
|
|
state->update = TRUE;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* @param state The current MenuState
|
|
|
|
*
|
|
|
|
* Move the selection to last row.
|
|
|
|
*/
|
|
|
|
inline static void menu_nav_last ( MenuState * state )
|
|
|
|
{
|
2015-11-20 05:43:22 -05:00
|
|
|
// If no lines, do nothing.
|
|
|
|
if ( state->filtered_lines == 0 ) {
|
|
|
|
return;
|
|
|
|
}
|
2015-08-31 11:47:26 -04:00
|
|
|
state->selected = state->filtered_lines - 1;
|
|
|
|
state->update = TRUE;
|
|
|
|
}
|
2015-02-15 20:03:26 -05:00
|
|
|
/**
|
|
|
|
* @param key the Key to match
|
|
|
|
* @param modstate the modifier state to match
|
|
|
|
*
|
2015-02-16 03:07:05 -05:00
|
|
|
* Match key and modifier state against switchers.
|
|
|
|
*
|
|
|
|
* @return the index of the switcher that matches the key combination
|
2015-02-15 20:03:26 -05:00
|
|
|
* specified by key and modstate. Returns -1 if none was found
|
|
|
|
*/
|
|
|
|
extern unsigned int NumlockMask;
|
2015-02-17 04:31:59 -05:00
|
|
|
static int locate_switcher ( KeySym key, unsigned int modstate )
|
|
|
|
{
|
2015-02-15 20:03:26 -05:00
|
|
|
// ignore annoying modifiers
|
2015-02-17 04:31:59 -05:00
|
|
|
unsigned int modstate_filtered = modstate & ~( LockMask | NumlockMask );
|
2015-02-15 20:03:26 -05:00
|
|
|
for ( unsigned int i = 0; i < num_switchers; i++ ) {
|
2015-09-07 13:10:44 -04:00
|
|
|
if ( switchers[i].sw->keystr != NULL ) {
|
|
|
|
if ( ( modstate_filtered == switchers[i].sw->modmask ) &&
|
|
|
|
switchers[i].sw->keysym == key ) {
|
2015-02-15 20:03:26 -05:00
|
|
|
return i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
2014-08-26 14:25:00 -04:00
|
|
|
/**
|
|
|
|
* @param state Internal state of the menu.
|
|
|
|
* @param key the Key being pressed.
|
|
|
|
* @param modstate the modifier state.
|
|
|
|
*
|
|
|
|
* Keyboard navigation through the elements.
|
|
|
|
*/
|
2015-11-20 16:00:37 -05:00
|
|
|
static int menu_keyboard_navigation ( MenuState *state, KeySym key, unsigned int modstate )
|
2014-08-26 14:25:00 -04:00
|
|
|
{
|
2015-03-05 14:26:52 -05:00
|
|
|
// pressing one of the global key bindings closes the switcher. This allows fast closing of the
|
2015-02-15 15:15:16 -05:00
|
|
|
// menu if an item is not selected
|
2015-06-15 03:01:22 -04:00
|
|
|
if ( locate_switcher ( key, modstate ) != -1 || abe_test_action ( CANCEL, modstate, key ) ) {
|
2014-08-26 14:25:00 -04:00
|
|
|
state->retv = MENU_CANCEL;
|
|
|
|
state->quit = TRUE;
|
2015-11-20 16:00:37 -05:00
|
|
|
return 1;
|
2014-08-26 14:25:00 -04:00
|
|
|
}
|
|
|
|
// Up, Ctrl-p or Shift-Tab
|
2015-06-15 02:48:13 -04:00
|
|
|
else if ( abe_test_action ( ROW_UP, modstate, key ) ) {
|
2015-01-14 16:14:15 -05:00
|
|
|
menu_nav_up ( state );
|
2015-11-20 16:00:37 -05:00
|
|
|
return 1;
|
2014-08-26 14:25:00 -04:00
|
|
|
}
|
2015-06-15 02:48:13 -04:00
|
|
|
else if ( abe_test_action ( ROW_TAB, modstate, key ) ) {
|
2014-08-26 14:25:00 -04:00
|
|
|
if ( state->filtered_lines == 1 ) {
|
2015-03-31 16:45:02 -04:00
|
|
|
state->retv = MENU_OK;
|
|
|
|
*( state->selected_line ) = state->line_map[state->selected];
|
|
|
|
state->quit = 1;
|
2015-11-20 16:00:37 -05:00
|
|
|
return 1;
|
2014-08-26 14:25:00 -04:00
|
|
|
}
|
2012-08-23 21:28:39 -04:00
|
|
|
|
2014-08-26 14:25:00 -04:00
|
|
|
// Double tab!
|
|
|
|
if ( state->filtered_lines == 0 && key == state->prev_key ) {
|
|
|
|
state->retv = MENU_NEXT;
|
|
|
|
*( state->selected_line ) = 0;
|
|
|
|
state->quit = TRUE;
|
|
|
|
}
|
|
|
|
else{
|
2015-06-15 02:48:13 -04:00
|
|
|
menu_nav_down ( state );
|
2014-08-26 14:25:00 -04:00
|
|
|
}
|
2015-11-20 16:00:37 -05:00
|
|
|
return 1;
|
2014-08-26 14:25:00 -04:00
|
|
|
}
|
|
|
|
// Down, Ctrl-n
|
2015-06-15 02:48:13 -04:00
|
|
|
else if ( abe_test_action ( ROW_DOWN, modstate, key ) ) {
|
2015-01-14 16:14:15 -05:00
|
|
|
menu_nav_down ( state );
|
2015-11-20 16:00:37 -05:00
|
|
|
return 1;
|
2014-08-26 14:25:00 -04:00
|
|
|
}
|
2015-06-15 02:48:13 -04:00
|
|
|
else if ( abe_test_action ( ROW_LEFT, modstate, key ) ) {
|
2015-01-14 16:14:15 -05:00
|
|
|
menu_nav_left ( state );
|
2015-11-20 16:00:37 -05:00
|
|
|
return 1;
|
2014-08-26 14:25:00 -04:00
|
|
|
}
|
2015-06-15 02:48:13 -04:00
|
|
|
else if ( abe_test_action ( ROW_RIGHT, modstate, key ) ) {
|
2015-01-14 16:14:15 -05:00
|
|
|
menu_nav_right ( state );
|
2015-11-20 16:00:37 -05:00
|
|
|
return 1;
|
2014-08-26 14:25:00 -04:00
|
|
|
}
|
2015-06-15 03:01:22 -04:00
|
|
|
else if ( abe_test_action ( PAGE_PREV, modstate, key ) ) {
|
2015-08-31 11:47:26 -04:00
|
|
|
menu_nav_page_prev ( state );
|
2015-11-20 16:00:37 -05:00
|
|
|
return 1;
|
2014-08-26 14:25:00 -04:00
|
|
|
}
|
2015-06-15 03:01:22 -04:00
|
|
|
else if ( abe_test_action ( PAGE_NEXT, modstate, key ) ) {
|
2015-08-31 11:47:26 -04:00
|
|
|
menu_nav_page_next ( state );
|
2015-11-20 16:00:37 -05:00
|
|
|
return 1;
|
2014-08-26 14:25:00 -04:00
|
|
|
}
|
2015-06-15 03:01:22 -04:00
|
|
|
else if ( abe_test_action ( ROW_FIRST, modstate, key ) ) {
|
2015-08-31 11:47:26 -04:00
|
|
|
menu_nav_first ( state );
|
2015-11-20 16:00:37 -05:00
|
|
|
return 1;
|
2014-08-26 14:25:00 -04:00
|
|
|
}
|
2015-06-15 03:01:22 -04:00
|
|
|
else if ( abe_test_action ( ROW_LAST, modstate, key ) ) {
|
2015-08-31 11:47:26 -04:00
|
|
|
menu_nav_last ( state );
|
2015-11-20 16:00:37 -05:00
|
|
|
return 1;
|
2014-08-26 14:25:00 -04:00
|
|
|
}
|
2015-06-15 03:01:22 -04:00
|
|
|
else if ( abe_test_action ( ROW_SELECT, modstate, key ) ) {
|
2014-09-03 13:40:24 -04:00
|
|
|
// If a valid item is selected, return that..
|
2015-03-31 16:45:02 -04:00
|
|
|
if ( state->selected < state->filtered_lines ) {
|
2015-11-21 17:59:59 -05:00
|
|
|
int st;
|
2015-11-24 07:59:35 -05:00
|
|
|
char *str = NULL;
|
|
|
|
if ( state->sw->get_completion ) {
|
|
|
|
str = state->sw->get_completion ( state->sw, state->line_map[state->selected] );
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
str = state->sw->mgrv ( state->line_map[state->selected], state->sw, &st, TRUE );
|
|
|
|
}
|
2015-11-21 17:59:59 -05:00
|
|
|
textbox_text ( state->text, str );
|
|
|
|
g_free ( str );
|
2014-09-05 11:14:50 -04:00
|
|
|
textbox_cursor_end ( state->text );
|
|
|
|
state->update = TRUE;
|
2014-09-03 13:40:24 -04:00
|
|
|
state->refilter = TRUE;
|
|
|
|
}
|
2015-11-20 16:00:37 -05:00
|
|
|
return 1;
|
2014-09-03 13:40:24 -04:00
|
|
|
}
|
2014-08-26 14:25:00 -04:00
|
|
|
state->prev_key = key;
|
2015-11-20 16:00:37 -05:00
|
|
|
return 0;
|
2014-08-26 14:25:00 -04:00
|
|
|
}
|
2012-08-23 21:28:39 -04:00
|
|
|
|
2014-08-26 14:25:00 -04:00
|
|
|
/**
|
|
|
|
* @param state Internal state of the menu.
|
|
|
|
* @param xbe The mouse button press event.
|
|
|
|
*
|
|
|
|
* mouse navigation through the elements.
|
|
|
|
*
|
|
|
|
*/
|
2015-09-26 15:06:36 -04:00
|
|
|
static int intersect ( const textbox *tb, int x, int y )
|
2015-09-26 14:34:34 -04:00
|
|
|
{
|
|
|
|
if ( x >= ( tb->x ) && x < ( tb->x + tb->w ) ) {
|
|
|
|
if ( y >= ( tb->y ) && y < ( tb->y + tb->h ) ) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
2015-09-26 15:06:36 -04:00
|
|
|
static int sb_intersect ( const scrollbar *tb, int x, int y )
|
2015-09-26 14:34:34 -04:00
|
|
|
{
|
|
|
|
if ( x >= ( tb->x ) && x < ( tb->x + tb->w ) ) {
|
|
|
|
if ( y >= ( tb->y ) && y < ( tb->y + tb->h ) ) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
2014-08-26 14:25:00 -04:00
|
|
|
static void menu_mouse_navigation ( MenuState *state, XButtonEvent *xbe )
|
|
|
|
{
|
2015-01-14 16:14:15 -05:00
|
|
|
// Scroll event
|
|
|
|
if ( xbe->button > 3 ) {
|
|
|
|
if ( xbe->button == 4 ) {
|
|
|
|
menu_nav_up ( state );
|
|
|
|
}
|
|
|
|
else if ( xbe->button == 5 ) {
|
|
|
|
menu_nav_down ( state );
|
|
|
|
}
|
|
|
|
else if ( xbe->button == 6 ) {
|
|
|
|
menu_nav_left ( state );
|
|
|
|
}
|
|
|
|
else if ( xbe->button == 7 ) {
|
|
|
|
menu_nav_right ( state );
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2014-08-26 14:25:00 -04:00
|
|
|
else {
|
2015-09-26 14:34:34 -04:00
|
|
|
if ( state->scrollbar && sb_intersect ( state->scrollbar, xbe->x, xbe->y ) ) {
|
2015-09-04 02:26:57 -04:00
|
|
|
state->selected = scrollbar_clicked ( state->scrollbar, xbe->y );
|
|
|
|
state->update = TRUE;
|
|
|
|
return;
|
|
|
|
}
|
2014-11-10 03:19:50 -05:00
|
|
|
for ( unsigned int i = 0; config.sidebar_mode == TRUE && i < num_switchers; i++ ) {
|
2015-09-26 14:34:34 -04:00
|
|
|
if ( intersect ( switchers[i].tb, xbe->x, xbe->y ) ) {
|
2015-05-03 07:04:03 -04:00
|
|
|
*( state->selected_line ) = 0;
|
|
|
|
state->retv = MENU_QUICK_SWITCH | ( i & MENU_LOWER_MASK );
|
2014-11-10 03:19:50 -05:00
|
|
|
state->quit = TRUE;
|
2015-07-22 03:09:16 -04:00
|
|
|
state->skip_absorb = TRUE;
|
2014-11-10 03:19:50 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2014-08-26 14:25:00 -04:00
|
|
|
for ( unsigned int i = 0; i < state->max_elements; i++ ) {
|
2015-09-26 14:34:34 -04:00
|
|
|
if ( intersect ( state->boxes[i], xbe->x, xbe->y ) ) {
|
2014-08-26 14:25:00 -04:00
|
|
|
// Only allow items that are visible to be selected.
|
|
|
|
if ( ( state->last_offset + i ) >= state->filtered_lines ) {
|
2015-01-14 17:54:37 -05:00
|
|
|
break;
|
2014-08-26 14:25:00 -04:00
|
|
|
}
|
|
|
|
//
|
|
|
|
state->selected = state->last_offset + i;
|
|
|
|
state->update = TRUE;
|
|
|
|
if ( ( xbe->time - state->last_button_press ) < 200 ) {
|
|
|
|
state->retv = MENU_OK;
|
|
|
|
*( state->selected_line ) = state->line_map[state->selected];
|
|
|
|
// Quit
|
2015-07-19 04:02:20 -04:00
|
|
|
state->quit = TRUE;
|
|
|
|
state->skip_absorb = TRUE;
|
2014-08-26 14:25:00 -04:00
|
|
|
}
|
|
|
|
state->last_button_press = xbe->time;
|
2015-01-23 03:12:48 -05:00
|
|
|
break;
|
2014-08-26 14:25:00 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-14 07:47:45 -05:00
|
|
|
typedef struct _thread_state
|
2015-11-11 18:18:43 -05:00
|
|
|
{
|
|
|
|
MenuState *state;
|
|
|
|
char **tokens;
|
|
|
|
unsigned int start;
|
|
|
|
unsigned int stop;
|
|
|
|
unsigned int count;
|
2015-11-14 07:47:45 -05:00
|
|
|
GCond *cond;
|
|
|
|
GMutex *mutex;
|
|
|
|
unsigned int *acount;
|
|
|
|
void ( *callback )( struct _thread_state *t, gpointer data );
|
2015-11-11 18:18:43 -05:00
|
|
|
}thread_state;
|
|
|
|
|
2015-11-14 07:47:45 -05:00
|
|
|
static void filter_elements ( thread_state *t, G_GNUC_UNUSED gpointer user_data )
|
2015-11-11 18:18:43 -05:00
|
|
|
{
|
|
|
|
// input changed
|
|
|
|
for ( unsigned int i = t->start; i < t->stop; i++ ) {
|
2015-11-21 17:59:59 -05:00
|
|
|
int st;
|
2015-11-23 16:14:26 -05:00
|
|
|
int match = t->state->sw->token_match ( t->state->sw, t->tokens,
|
2015-11-11 18:18:43 -05:00
|
|
|
t->state->lines_not_ascii[i],
|
|
|
|
config.case_sensitive,
|
2015-11-23 16:14:26 -05:00
|
|
|
i );
|
2015-11-11 18:18:43 -05:00
|
|
|
// If each token was matched, add it to list.
|
|
|
|
if ( match ) {
|
|
|
|
t->state->line_map[t->start + t->count] = i;
|
|
|
|
if ( config.levenshtein_sort ) {
|
2015-11-21 17:59:59 -05:00
|
|
|
// This is inefficient, need to fix it.
|
|
|
|
char * str = t->state->sw->mgrv ( i, t->state->sw, &st, TRUE );
|
|
|
|
t->state->distance[i] = levenshtein ( t->state->text->text, str );
|
|
|
|
g_free ( str );
|
2015-11-11 18:18:43 -05:00
|
|
|
}
|
|
|
|
t->count++;
|
|
|
|
}
|
|
|
|
}
|
2015-11-14 07:47:45 -05:00
|
|
|
g_mutex_lock ( t->mutex );
|
|
|
|
( *( t->acount ) )--;
|
|
|
|
g_cond_signal ( t->cond );
|
|
|
|
g_mutex_unlock ( t->mutex );
|
|
|
|
}
|
|
|
|
static void check_is_ascii ( thread_state *t, G_GNUC_UNUSED gpointer user_data )
|
|
|
|
{
|
|
|
|
for ( unsigned int i = t->start; i < t->stop; i++ ) {
|
2015-11-21 17:59:59 -05:00
|
|
|
t->state->lines_not_ascii[i] = t->state->sw->is_not_ascii ( t->state->sw, i );
|
2015-11-14 07:47:45 -05:00
|
|
|
}
|
|
|
|
g_mutex_lock ( t->mutex );
|
|
|
|
( *( t->acount ) )--;
|
|
|
|
g_cond_signal ( t->cond );
|
|
|
|
g_mutex_unlock ( t->mutex );
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Small wrapper function to create easy workers.
|
|
|
|
*/
|
|
|
|
static void call_thread ( gpointer data, gpointer user_data )
|
|
|
|
{
|
|
|
|
thread_state *t = (thread_state *) data;
|
|
|
|
t->callback ( t, user_data );
|
2015-11-11 18:18:43 -05:00
|
|
|
}
|
|
|
|
|
2015-09-19 06:21:30 -04:00
|
|
|
static void menu_refilter ( MenuState *state )
|
2014-08-26 14:25:00 -04:00
|
|
|
{
|
2015-11-14 07:47:45 -05:00
|
|
|
TICK_N ( "Filter start" )
|
2014-08-26 14:25:00 -04:00
|
|
|
if ( strlen ( state->text->text ) > 0 ) {
|
2015-01-15 11:59:59 -05:00
|
|
|
unsigned int j = 0;
|
2015-09-19 06:21:30 -04:00
|
|
|
char **tokens = tokenize ( state->text->text, config.case_sensitive );
|
2015-11-11 18:18:43 -05:00
|
|
|
/**
|
|
|
|
* On long lists it can be beneficial to parallelize.
|
|
|
|
* If number of threads is 1, no thread is spawn.
|
2015-11-14 07:47:45 -05:00
|
|
|
* If number of threads > 1 and there are enough (> 1000) items, spawn jobs for the thread pool.
|
2015-11-11 18:18:43 -05:00
|
|
|
* For large lists with 8 threads I see a factor three speedup of the whole function.
|
|
|
|
*/
|
2015-11-14 07:47:45 -05:00
|
|
|
unsigned int nt = MAX ( 1, state->num_lines / 500 );
|
2015-11-11 18:18:43 -05:00
|
|
|
thread_state states[nt];
|
2015-11-14 07:47:45 -05:00
|
|
|
GCond cond;
|
|
|
|
GMutex mutex;
|
|
|
|
g_mutex_init ( &mutex );
|
|
|
|
g_cond_init ( &cond );
|
|
|
|
unsigned int count = nt;
|
2015-11-11 18:18:43 -05:00
|
|
|
unsigned int steps = ( state->num_lines + nt ) / nt;
|
|
|
|
for ( unsigned int i = 0; i < nt; i++ ) {
|
2015-11-14 07:47:45 -05:00
|
|
|
states[i].state = state;
|
|
|
|
states[i].tokens = tokens;
|
|
|
|
states[i].start = i * steps;
|
|
|
|
states[i].stop = MIN ( state->num_lines, ( i + 1 ) * steps );
|
|
|
|
states[i].count = 0;
|
|
|
|
states[i].cond = &cond;
|
|
|
|
states[i].mutex = &mutex;
|
|
|
|
states[i].acount = &count;
|
|
|
|
states[i].callback = filter_elements;
|
2015-11-11 18:18:43 -05:00
|
|
|
if ( i > 0 ) {
|
2015-11-14 07:47:45 -05:00
|
|
|
g_thread_pool_push ( tpool, &states[i], NULL );
|
2015-11-11 18:18:43 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// Run one in this thread.
|
2015-11-14 07:47:45 -05:00
|
|
|
filter_elements ( &states[0], NULL );
|
|
|
|
// No need to do this with only one thread.
|
|
|
|
if ( nt > 1 ) {
|
|
|
|
g_mutex_lock ( &mutex );
|
|
|
|
while ( count > 0 ) {
|
|
|
|
g_cond_wait ( &cond, &mutex );
|
|
|
|
}
|
|
|
|
g_mutex_unlock ( &mutex );
|
2015-11-11 18:18:43 -05:00
|
|
|
}
|
2015-11-14 07:47:45 -05:00
|
|
|
g_cond_clear ( &cond );
|
|
|
|
g_mutex_clear ( &mutex );
|
2015-11-11 18:18:43 -05:00
|
|
|
for ( unsigned int i = 0; i < nt; i++ ) {
|
|
|
|
if ( j != states[i].start ) {
|
|
|
|
memcpy ( &( state->line_map[j] ), &( state->line_map[states[i].start] ), sizeof ( unsigned int ) * ( states[i].count ) );
|
2014-08-26 14:25:00 -04:00
|
|
|
}
|
2015-11-11 18:18:43 -05:00
|
|
|
j += states[i].count;
|
2014-08-26 14:25:00 -04:00
|
|
|
}
|
2015-10-15 16:33:44 -04:00
|
|
|
if ( config.levenshtein_sort ) {
|
|
|
|
g_qsort_with_data ( state->line_map, j, sizeof ( int ), lev_sort, state->distance );
|
|
|
|
}
|
2014-05-14 14:56:38 -04:00
|
|
|
|
2014-08-26 14:25:00 -04:00
|
|
|
// Cleanup + bookkeeping.
|
|
|
|
state->filtered_lines = j;
|
2015-11-17 10:10:14 -05:00
|
|
|
tokenize_free ( tokens );
|
2014-08-26 14:25:00 -04:00
|
|
|
}
|
|
|
|
else{
|
2015-01-15 11:59:59 -05:00
|
|
|
for ( unsigned int i = 0; i < state->num_lines; i++ ) {
|
2014-08-26 14:25:00 -04:00
|
|
|
state->line_map[i] = i;
|
|
|
|
}
|
|
|
|
state->filtered_lines = state->num_lines;
|
|
|
|
}
|
2015-11-20 05:43:22 -05:00
|
|
|
if ( state->filtered_lines > 0 ) {
|
|
|
|
state->selected = MIN ( state->selected, state->filtered_lines - 1 );
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
state->selected = 0;
|
|
|
|
}
|
2014-08-11 14:21:29 -04:00
|
|
|
|
2015-03-17 15:05:37 -04:00
|
|
|
if ( config.auto_select == TRUE && state->filtered_lines == 1 && state->num_lines > 1 ) {
|
2015-02-24 11:34:25 -05:00
|
|
|
*( state->selected_line ) = state->line_map[state->selected];
|
|
|
|
state->retv = MENU_OK;
|
|
|
|
state->quit = TRUE;
|
|
|
|
}
|
|
|
|
|
2015-09-04 02:42:09 -04:00
|
|
|
scrollbar_set_max_value ( state->scrollbar, state->filtered_lines );
|
2014-08-26 14:25:00 -04:00
|
|
|
state->refilter = FALSE;
|
2015-03-23 03:56:55 -04:00
|
|
|
state->rchanged = TRUE;
|
2015-11-14 07:47:45 -05:00
|
|
|
TICK_N ( "Filter done" )
|
2014-08-26 14:25:00 -04:00
|
|
|
}
|
|
|
|
|
2015-09-27 06:57:54 -04:00
|
|
|
static void menu_draw ( MenuState *state, cairo_t *d )
|
2014-08-26 14:25:00 -04:00
|
|
|
{
|
|
|
|
unsigned int i, offset = 0;
|
|
|
|
// selected row is always visible.
|
|
|
|
// If selected is visible do not scroll.
|
2015-09-19 06:57:48 -04:00
|
|
|
if ( ( ( state->selected - ( state->last_offset ) ) < ( state->max_elements ) ) && ( state->selected >= ( state->last_offset ) ) ) {
|
2014-08-26 14:25:00 -04:00
|
|
|
offset = state->last_offset;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
// Do paginating
|
|
|
|
int page = ( state->max_elements > 0 ) ? ( state->selected / state->max_elements ) : 0;
|
|
|
|
offset = page * state->max_elements;
|
|
|
|
state->last_offset = offset;
|
2015-03-23 03:56:55 -04:00
|
|
|
if ( page != state->cur_page ) {
|
|
|
|
state->cur_page = page;
|
|
|
|
state->rchanged = TRUE;
|
|
|
|
}
|
2015-09-26 14:34:34 -04:00
|
|
|
// Set the position
|
2015-09-04 08:52:57 -04:00
|
|
|
scrollbar_set_handle ( state->scrollbar, page * state->max_elements );
|
2014-08-26 14:25:00 -04:00
|
|
|
}
|
2015-03-18 15:56:50 -04:00
|
|
|
// Re calculate the boxes and sizes, see if we can move this in the menu_calc*rowscolumns
|
|
|
|
// Get number of remaining lines to display.
|
|
|
|
unsigned int a_lines = MIN ( ( state->filtered_lines - offset ), state->max_elements );
|
|
|
|
|
|
|
|
// Calculate number of columns
|
2015-09-19 06:57:48 -04:00
|
|
|
unsigned int columns = ( a_lines + ( state->max_rows - a_lines % state->max_rows ) % state->max_rows ) / state->max_rows;
|
2015-03-18 15:56:50 -04:00
|
|
|
columns = MIN ( columns, state->columns );
|
|
|
|
|
2015-09-04 08:52:57 -04:00
|
|
|
// Update the handle length.
|
|
|
|
scrollbar_set_handle_length ( state->scrollbar, columns * state->max_rows );
|
2015-09-27 06:57:54 -04:00
|
|
|
scrollbar_draw ( state->scrollbar, d );
|
2015-03-18 15:56:50 -04:00
|
|
|
// Element width.
|
2015-10-10 07:03:11 -04:00
|
|
|
unsigned int element_width = state->w - ( 2 * ( state->border ) );
|
2015-09-06 04:12:09 -04:00
|
|
|
if ( state->scrollbar != NULL ) {
|
|
|
|
element_width -= state->scrollbar->w;
|
|
|
|
}
|
2015-03-18 15:56:50 -04:00
|
|
|
if ( columns > 0 ) {
|
2015-08-04 03:42:14 -04:00
|
|
|
element_width = ( element_width - ( columns - 1 ) * config.line_margin ) / columns;
|
2015-03-18 15:56:50 -04:00
|
|
|
}
|
|
|
|
|
2015-03-19 14:58:05 -04:00
|
|
|
int element_height = state->line_height * config.element_height;
|
2015-05-23 14:06:06 -04:00
|
|
|
int y_offset = state->top_offset;
|
2015-10-10 07:03:11 -04:00
|
|
|
int x_offset = state->border;
|
2015-03-18 15:56:50 -04:00
|
|
|
// Calculate number of visible rows.
|
|
|
|
unsigned int max_elements = MIN ( a_lines, state->max_rows * columns );
|
|
|
|
|
2015-03-23 03:56:55 -04:00
|
|
|
if ( state->rchanged ) {
|
|
|
|
// Move, resize visible boxes and show them.
|
|
|
|
for ( i = 0; i < max_elements; i++ ) {
|
2015-08-04 03:42:14 -04:00
|
|
|
unsigned int ex = ( ( i ) / state->max_rows ) * ( element_width + config.line_margin );
|
2015-08-26 15:49:53 -04:00
|
|
|
unsigned int ey = ( ( i ) % state->max_rows ) * ( element_height + config.line_margin );
|
2015-03-23 03:56:55 -04:00
|
|
|
// Move it around.
|
2015-09-19 06:57:48 -04:00
|
|
|
textbox_moveresize ( state->boxes[i], ex + x_offset, ey + y_offset, element_width, element_height );
|
2015-03-23 03:56:55 -04:00
|
|
|
{
|
2015-03-31 16:45:02 -04:00
|
|
|
TextBoxFontType type = ( ( ( i % state->max_rows ) & 1 ) == 0 ) ? NORMAL : ALT;
|
|
|
|
int fstate = 0;
|
2015-11-21 17:59:59 -05:00
|
|
|
char *text = state->sw->mgrv ( state->line_map[i + offset], state->sw, &fstate, TRUE );
|
2015-09-19 06:57:48 -04:00
|
|
|
TextBoxFontType tbft = fstate | ( ( i + offset ) == state->selected ? HIGHLIGHT : type );
|
2015-03-23 03:56:55 -04:00
|
|
|
textbox_font ( state->boxes[i], tbft );
|
|
|
|
textbox_text ( state->boxes[i], text );
|
2015-11-21 17:59:59 -05:00
|
|
|
g_free ( text );
|
2015-03-23 03:56:55 -04:00
|
|
|
}
|
2015-09-27 06:57:54 -04:00
|
|
|
textbox_draw ( state->boxes[i], d );
|
2014-08-26 14:25:00 -04:00
|
|
|
}
|
2015-03-23 03:56:55 -04:00
|
|
|
state->rchanged = FALSE;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
// Only do basic redrawing + highlight of row.
|
|
|
|
for ( i = 0; i < max_elements; i++ ) {
|
2015-03-31 16:45:02 -04:00
|
|
|
TextBoxFontType type = ( ( ( i % state->max_rows ) & 1 ) == 0 ) ? NORMAL : ALT;
|
|
|
|
int fstate = 0;
|
2015-11-21 17:59:59 -05:00
|
|
|
state->sw->mgrv ( state->line_map[i + offset], state->sw, &fstate, FALSE );
|
2015-03-31 16:45:02 -04:00
|
|
|
TextBoxFontType tbft = fstate | ( ( i + offset ) == state->selected ? HIGHLIGHT : type );
|
2014-08-26 14:25:00 -04:00
|
|
|
textbox_font ( state->boxes[i], tbft );
|
2015-09-27 06:57:54 -04:00
|
|
|
textbox_draw ( state->boxes[i], d );
|
2014-08-26 14:25:00 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void menu_update ( MenuState *state )
|
|
|
|
{
|
2015-11-14 07:47:45 -05:00
|
|
|
TICK ()
|
|
|
|
cairo_surface_t * surf = cairo_image_surface_create ( get_format (), state->w, state->h );
|
|
|
|
cairo_t *d = cairo_create ( surf );
|
2015-09-26 14:34:34 -04:00
|
|
|
cairo_set_operator ( d, CAIRO_OPERATOR_SOURCE );
|
2015-10-20 12:41:45 -04:00
|
|
|
if ( config.fake_transparency ) {
|
|
|
|
if ( state->bg != NULL ) {
|
2015-10-20 12:51:29 -04:00
|
|
|
cairo_set_source_surface ( d, state->bg,
|
|
|
|
-(double) ( state->x - state->mon.x ),
|
|
|
|
-(double) ( state->y - state->mon.y ) );
|
2015-10-20 12:41:45 -04:00
|
|
|
cairo_paint ( d );
|
|
|
|
cairo_set_operator ( d, CAIRO_OPERATOR_OVER );
|
|
|
|
color_background ( display, d );
|
|
|
|
cairo_paint ( d );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Paint the background.
|
|
|
|
color_background ( display, d );
|
|
|
|
cairo_paint ( d );
|
|
|
|
}
|
2015-11-14 07:47:45 -05:00
|
|
|
TICK_N ( "Background" )
|
2015-10-10 07:03:11 -04:00
|
|
|
color_border ( display, d );
|
|
|
|
|
|
|
|
if ( config.menu_bw > 0 ) {
|
|
|
|
cairo_save ( d );
|
|
|
|
cairo_set_line_width ( d, config.menu_bw );
|
|
|
|
cairo_rectangle ( d,
|
|
|
|
config.menu_bw / 2.0,
|
|
|
|
config.menu_bw / 2.0,
|
|
|
|
state->w - config.menu_bw,
|
|
|
|
state->h - config.menu_bw );
|
|
|
|
cairo_stroke ( d );
|
|
|
|
cairo_restore ( d );
|
|
|
|
}
|
|
|
|
|
2015-09-28 02:24:01 -04:00
|
|
|
// Always paint as overlay over the background.
|
|
|
|
cairo_set_operator ( d, CAIRO_OPERATOR_OVER );
|
2015-10-26 15:12:22 -04:00
|
|
|
if ( state->max_elements > 0 ) {
|
|
|
|
menu_draw ( state, d );
|
|
|
|
}
|
|
|
|
if ( state->prompt_tb ) {
|
|
|
|
textbox_draw ( state->prompt_tb, d );
|
|
|
|
}
|
|
|
|
if ( state->text ) {
|
|
|
|
textbox_draw ( state->text, d );
|
|
|
|
}
|
|
|
|
if ( state->case_indicator ) {
|
|
|
|
textbox_draw ( state->case_indicator, d );
|
|
|
|
}
|
2015-05-23 14:06:06 -04:00
|
|
|
if ( state->message_tb ) {
|
2015-09-26 14:34:34 -04:00
|
|
|
textbox_draw ( state->message_tb, d );
|
|
|
|
}
|
2015-10-10 07:03:11 -04:00
|
|
|
color_separator ( display, d );
|
2015-09-26 14:34:34 -04:00
|
|
|
|
2015-09-30 03:09:34 -04:00
|
|
|
if ( strcmp ( config.separator_style, "none" ) ) {
|
|
|
|
if ( strcmp ( config.separator_style, "dash" ) == 0 ) {
|
|
|
|
const double dashes[1] = { 4 };
|
|
|
|
cairo_set_dash ( d, dashes, 1, 0.0 );
|
|
|
|
}
|
2015-10-16 14:51:37 -04:00
|
|
|
cairo_move_to ( d, state->border, state->line_height + ( state->border ) * 1 + config.line_margin + 1 );
|
|
|
|
cairo_line_to ( d, state->w - state->border, state->line_height + ( state->border ) * 1 + config.line_margin + 1 );
|
2015-09-26 14:34:34 -04:00
|
|
|
cairo_stroke ( d );
|
2015-09-30 03:09:34 -04:00
|
|
|
if ( state->message_tb ) {
|
2015-10-16 14:51:37 -04:00
|
|
|
cairo_move_to ( d, state->border, state->top_offset - ( config.line_margin ) - 1 );
|
|
|
|
cairo_line_to ( d, state->w - state->border, state->top_offset - ( config.line_margin ) - 1 );
|
2015-09-30 03:09:34 -04:00
|
|
|
cairo_stroke ( d );
|
|
|
|
}
|
2014-11-09 07:10:24 -05:00
|
|
|
|
2015-09-30 03:09:34 -04:00
|
|
|
if ( config.sidebar_mode == TRUE ) {
|
2015-10-16 14:51:37 -04:00
|
|
|
cairo_move_to ( d, state->border, state->h - state->line_height - ( state->border ) * 1 - 1 - config.line_margin );
|
|
|
|
cairo_line_to ( d, state->w - state->border, state->h - state->line_height - ( state->border ) * 1 - 1 - config.line_margin );
|
2015-09-30 03:09:34 -04:00
|
|
|
cairo_stroke ( d );
|
|
|
|
}
|
|
|
|
}
|
2014-11-09 07:10:24 -05:00
|
|
|
if ( config.sidebar_mode == TRUE ) {
|
2015-02-01 09:00:01 -05:00
|
|
|
for ( unsigned int j = 0; j < num_switchers; j++ ) {
|
2015-11-04 06:03:59 -05:00
|
|
|
if ( switchers[j].tb != NULL ) {
|
|
|
|
textbox_draw ( switchers[j].tb, d );
|
|
|
|
}
|
2014-11-09 07:10:24 -05:00
|
|
|
}
|
|
|
|
}
|
2014-08-26 14:25:00 -04:00
|
|
|
state->update = FALSE;
|
2015-09-26 14:34:34 -04:00
|
|
|
|
2015-09-28 02:24:01 -04:00
|
|
|
// Draw to actual window.
|
2015-09-26 14:34:34 -04:00
|
|
|
cairo_set_source_surface ( draw, surf, 0, 0 );
|
|
|
|
cairo_paint ( draw );
|
2015-09-28 02:24:01 -04:00
|
|
|
// Cleanup
|
2015-09-26 14:34:34 -04:00
|
|
|
cairo_destroy ( d );
|
|
|
|
cairo_surface_destroy ( surf );
|
2015-09-27 06:57:54 -04:00
|
|
|
|
|
|
|
// Flush the surface.
|
|
|
|
cairo_surface_flush ( surface );
|
2015-11-14 07:47:45 -05:00
|
|
|
TICK ()
|
2014-08-26 14:25:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param state Internal state of the menu.
|
|
|
|
* @param xse X selection event.
|
|
|
|
*
|
|
|
|
* Handle paste event.
|
|
|
|
*/
|
|
|
|
static void menu_paste ( MenuState *state, XSelectionEvent *xse )
|
|
|
|
{
|
|
|
|
if ( xse->property == netatoms[UTF8_STRING] ) {
|
2015-02-09 14:23:55 -05:00
|
|
|
gchar *text = window_get_text_prop ( display, main_window, netatoms[UTF8_STRING] );
|
|
|
|
if ( text != NULL && text[0] != '\0' ) {
|
|
|
|
unsigned int dl = strlen ( text );
|
2015-02-09 14:20:51 -05:00
|
|
|
// Strip new line
|
2015-02-09 14:23:55 -05:00
|
|
|
while ( dl > 0 && text[dl] == '\n' ) {
|
2015-02-09 14:20:51 -05:00
|
|
|
text[dl] = '\0';
|
|
|
|
dl--;
|
2014-08-26 14:25:00 -04:00
|
|
|
}
|
|
|
|
// Insert string move cursor.
|
2015-11-22 14:41:45 -05:00
|
|
|
textbox_insert ( state->text, state->text->cursor, text, dl );
|
2015-03-19 15:01:52 -04:00
|
|
|
textbox_cursor ( state->text, state->text->cursor + dl );
|
2014-08-26 14:25:00 -04:00
|
|
|
// Force a redraw and refiltering of the text.
|
|
|
|
state->update = TRUE;
|
|
|
|
state->refilter = TRUE;
|
|
|
|
}
|
2015-02-09 14:23:55 -05:00
|
|
|
g_free ( text );
|
2014-08-26 14:25:00 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-09 05:47:51 -04:00
|
|
|
static void menu_resize ( MenuState *state )
|
|
|
|
{
|
2015-09-19 06:21:30 -04:00
|
|
|
unsigned int sbw = config.line_margin + 8;
|
2015-10-10 07:03:11 -04:00
|
|
|
scrollbar_move ( state->scrollbar, state->w - state->border - sbw, state->top_offset );
|
2015-09-09 05:47:51 -04:00
|
|
|
if ( config.sidebar_mode == TRUE ) {
|
2015-10-10 07:03:11 -04:00
|
|
|
int width = ( state->w - ( 2 * ( state->border ) + ( num_switchers - 1 ) * config.line_margin ) ) / num_switchers;
|
2015-09-09 05:47:51 -04:00
|
|
|
for ( unsigned int j = 0; j < num_switchers; j++ ) {
|
2015-10-16 14:51:37 -04:00
|
|
|
textbox_moveresize ( switchers[j].tb,
|
|
|
|
state->border + j * ( width + config.line_margin ), state->h - state->line_height - state->border,
|
|
|
|
width, state->line_height );
|
2015-09-26 14:34:34 -04:00
|
|
|
textbox_draw ( switchers[j].tb, draw );
|
2015-09-09 05:47:51 -04:00
|
|
|
}
|
|
|
|
}
|
2015-10-16 14:51:37 -04:00
|
|
|
int entrybox_width = state->w - ( 2 * ( state->border ) ) - textbox_get_width ( state->prompt_tb )
|
|
|
|
- textbox_get_width ( state->case_indicator );
|
|
|
|
textbox_moveresize ( state->text, state->text->x, state->text->y, entrybox_width, state->line_height );
|
|
|
|
textbox_move ( state->case_indicator, state->w - state->border - textbox_get_width ( state->case_indicator ), state->border );
|
2015-09-17 11:32:51 -04:00
|
|
|
/**
|
|
|
|
* Resize in Height
|
|
|
|
*/
|
|
|
|
{
|
|
|
|
unsigned int last_length = state->max_elements;
|
2015-09-19 06:57:48 -04:00
|
|
|
int element_height = state->line_height * config.element_height + config.line_margin;
|
2015-09-17 11:32:51 -04:00
|
|
|
// Calculated new number of boxes.
|
2015-10-18 07:40:39 -04:00
|
|
|
int h = ( state->h - state->top_offset - config.padding );
|
2015-09-17 11:32:51 -04:00
|
|
|
if ( config.sidebar_mode == TRUE ) {
|
2015-10-16 14:51:37 -04:00
|
|
|
h -= state->line_height + config.line_margin;
|
2015-09-17 11:32:51 -04:00
|
|
|
}
|
2015-10-18 07:40:39 -04:00
|
|
|
if ( h < 0 ) {
|
2015-11-01 06:28:55 -05:00
|
|
|
fprintf ( stderr, "Current padding %u (on each side) does not fit within visible window %u.\n", config.padding, state->h );
|
2015-10-18 07:40:39 -04:00
|
|
|
h = ( state->h - state->top_offset - state->h / 3 );
|
|
|
|
if ( config.sidebar_mode == TRUE ) {
|
|
|
|
h -= state->line_height + config.line_margin;
|
|
|
|
}
|
|
|
|
}
|
2015-10-16 14:51:37 -04:00
|
|
|
state->max_rows = MAX ( 1, ( h / element_height ) );
|
2015-09-17 11:32:51 -04:00
|
|
|
state->max_elements = state->max_rows * config.menu_columns;
|
|
|
|
// Free boxes no longer needed.
|
|
|
|
for ( unsigned int i = state->max_elements; i < last_length; i++ ) {
|
|
|
|
textbox_free ( state->boxes[i] );
|
|
|
|
}
|
|
|
|
// resize array.
|
|
|
|
state->boxes = g_realloc ( state->boxes, state->max_elements * sizeof ( textbox* ) );
|
|
|
|
|
|
|
|
int y_offset = state->top_offset;
|
2015-10-10 07:03:11 -04:00
|
|
|
int x_offset = state->border;
|
2015-09-22 16:23:52 -04:00
|
|
|
int rstate = 0;
|
|
|
|
if ( config.markup_rows ) {
|
|
|
|
rstate = TB_MARKUP;
|
|
|
|
}
|
2015-09-17 11:32:51 -04:00
|
|
|
// Add newly added boxes.
|
|
|
|
for ( unsigned int i = last_length; i < state->max_elements; i++ ) {
|
2015-09-26 14:34:34 -04:00
|
|
|
state->boxes[i] = textbox_create ( rstate, x_offset, y_offset,
|
2015-09-17 11:32:51 -04:00
|
|
|
state->element_width, element_height, NORMAL, "" );
|
|
|
|
}
|
2015-09-19 06:57:48 -04:00
|
|
|
scrollbar_resize ( state->scrollbar, -1, ( state->max_rows ) * ( element_height ) - config.line_margin );
|
2015-09-17 11:32:51 -04:00
|
|
|
}
|
|
|
|
|
2015-09-09 06:03:29 -04:00
|
|
|
state->rchanged = TRUE;
|
2015-09-09 14:01:19 -04:00
|
|
|
state->update = TRUE;
|
2015-09-09 05:47:51 -04:00
|
|
|
}
|
|
|
|
|
2015-11-16 02:17:30 -05:00
|
|
|
static void menu_setup_fake_transparency ( Display *display, MenuState *state )
|
|
|
|
{
|
|
|
|
Window root = DefaultRootWindow ( display );
|
|
|
|
int screen = DefaultScreen ( display );
|
|
|
|
cairo_surface_t *s = cairo_xlib_surface_create ( display,
|
|
|
|
root,
|
|
|
|
DefaultVisual ( display, screen ),
|
|
|
|
DisplayWidth ( display, screen ),
|
|
|
|
DisplayHeight ( display, screen ) );
|
|
|
|
|
|
|
|
state->bg = cairo_image_surface_create ( get_format (), state->mon.w, state->mon.h );
|
|
|
|
cairo_t *dr = cairo_create ( state->bg );
|
|
|
|
cairo_set_source_surface ( dr, s, -state->mon.x, -state->mon.y );
|
|
|
|
cairo_paint ( dr );
|
|
|
|
cairo_destroy ( dr );
|
|
|
|
cairo_surface_destroy ( s );
|
|
|
|
TICK_N ( "Fake transparency" )
|
|
|
|
}
|
|
|
|
|
2015-09-19 06:57:48 -04:00
|
|
|
MenuReturn menu ( Switcher *sw, char **input, char *prompt, unsigned int *selected_line, unsigned int *next_pos, const char *message )
|
2014-08-26 14:25:00 -04:00
|
|
|
{
|
2015-11-14 07:47:45 -05:00
|
|
|
TICK ()
|
|
|
|
int shift = FALSE;
|
2015-09-08 16:23:03 -04:00
|
|
|
MenuState state = {
|
|
|
|
.sw = sw,
|
2014-08-26 14:25:00 -04:00
|
|
|
.selected_line = selected_line,
|
|
|
|
.retv = MENU_CANCEL,
|
|
|
|
.prev_key = 0,
|
|
|
|
.last_button_press = 0,
|
|
|
|
.last_offset = 0,
|
2015-10-15 16:33:44 -04:00
|
|
|
.distance = NULL,
|
2014-08-26 14:25:00 -04:00
|
|
|
.quit = FALSE,
|
2015-07-19 04:02:20 -04:00
|
|
|
.skip_absorb = FALSE,
|
2014-08-26 14:25:00 -04:00
|
|
|
.filtered_lines = 0,
|
2014-08-27 13:44:15 -04:00
|
|
|
.max_elements = 0,
|
2014-08-26 14:25:00 -04:00
|
|
|
// We want to filter on the first run.
|
2015-05-23 14:06:06 -04:00
|
|
|
.refilter = TRUE,
|
|
|
|
.update = FALSE,
|
|
|
|
.rchanged = TRUE,
|
|
|
|
.cur_page = -1,
|
2015-10-10 07:03:11 -04:00
|
|
|
.top_offset = 0,
|
|
|
|
.border = config.padding + config.menu_bw
|
2014-08-26 14:25:00 -04:00
|
|
|
};
|
2015-09-08 15:41:54 -04:00
|
|
|
// Request the lines to show.
|
2015-11-21 17:59:59 -05:00
|
|
|
state.num_lines = sw->get_num_entries ( sw );
|
2015-10-12 02:12:25 -04:00
|
|
|
state.lines_not_ascii = g_malloc0_n ( state.num_lines, sizeof ( int ) );
|
2015-10-01 07:16:41 -04:00
|
|
|
|
|
|
|
// find out which lines contain non-ascii codepoints, so we can be faster in some cases.
|
2015-11-21 17:59:59 -05:00
|
|
|
if ( state.num_lines > 0 ) {
|
2015-11-14 07:47:45 -05:00
|
|
|
TICK_N ( "Is ASCII start" )
|
|
|
|
unsigned int nt = MAX ( 1, state.num_lines / 5000 );
|
|
|
|
thread_state states[nt];
|
|
|
|
unsigned int steps = ( state.num_lines + nt ) / nt;
|
|
|
|
unsigned int count = nt;
|
|
|
|
GCond cond;
|
|
|
|
GMutex mutex;
|
|
|
|
g_mutex_init ( &mutex );
|
|
|
|
g_cond_init ( &cond );
|
|
|
|
for ( unsigned int i = 0; i < nt; i++ ) {
|
|
|
|
states[i].state = &state;
|
|
|
|
states[i].start = i * steps;
|
|
|
|
states[i].stop = MIN ( ( i + 1 ) * steps, state.num_lines );
|
|
|
|
states[i].acount = &count;
|
|
|
|
states[i].mutex = &mutex;
|
|
|
|
states[i].cond = &cond;
|
|
|
|
states[i].callback = check_is_ascii;
|
|
|
|
if ( i > 0 ) {
|
|
|
|
g_thread_pool_push ( tpool, &( states[i] ), NULL );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Run one in this thread.
|
|
|
|
check_is_ascii ( &( states[0] ), NULL );
|
|
|
|
// No need to do this with only one thread.
|
|
|
|
if ( nt > 1 ) {
|
|
|
|
g_mutex_lock ( &mutex );
|
|
|
|
while ( count > 0 ) {
|
|
|
|
g_cond_wait ( &cond, &mutex );
|
|
|
|
}
|
|
|
|
g_mutex_unlock ( &mutex );
|
2015-10-29 16:28:46 -04:00
|
|
|
}
|
2015-11-14 07:47:45 -05:00
|
|
|
g_cond_clear ( &cond );
|
|
|
|
g_mutex_clear ( &mutex );
|
|
|
|
TICK_N ( "Is ASCII stop" )
|
2015-10-01 07:16:41 -04:00
|
|
|
}
|
|
|
|
|
2015-04-16 15:13:45 -04:00
|
|
|
if ( next_pos ) {
|
|
|
|
*next_pos = *selected_line;
|
|
|
|
}
|
2015-04-30 11:11:52 -04:00
|
|
|
// Try to grab the keyboard as early as possible.
|
|
|
|
// We grab this using the rootwindow (as dmenu does it).
|
|
|
|
// this seems to result in the smallest delay for most people.
|
2015-05-02 06:42:36 -04:00
|
|
|
int has_keyboard = take_keyboard ( display, DefaultRootWindow ( display ) );
|
2015-04-30 11:11:52 -04:00
|
|
|
|
|
|
|
if ( !has_keyboard ) {
|
|
|
|
fprintf ( stderr, "Failed to grab keyboard, even after %d uS.", 500 * 1000 );
|
2015-07-31 06:23:41 -04:00
|
|
|
// Break off.
|
|
|
|
return MENU_CANCEL;
|
2015-04-30 11:11:52 -04:00
|
|
|
}
|
2015-11-14 07:47:45 -05:00
|
|
|
TICK_N ( "Grab keyboard" )
|
2014-08-26 14:25:00 -04:00
|
|
|
// main window isn't explicitly destroyed in case we switch modes. Reusing it prevents flicker
|
|
|
|
XWindowAttributes attr;
|
|
|
|
if ( main_window == None || XGetWindowAttributes ( display, main_window, &attr ) == 0 ) {
|
|
|
|
main_window = create_window ( display );
|
2015-09-13 11:29:50 -04:00
|
|
|
if ( sncontext != NULL ) {
|
|
|
|
sn_launchee_context_setup_window ( sncontext, main_window );
|
|
|
|
}
|
2014-08-26 14:25:00 -04:00
|
|
|
}
|
2015-11-14 07:47:45 -05:00
|
|
|
TICK_N ( "Startup notification" )
|
2014-11-11 17:07:57 -05:00
|
|
|
// Get active monitor size.
|
2015-10-20 12:51:29 -04:00
|
|
|
monitor_active ( display, &( state.mon ) );
|
2015-11-14 07:47:45 -05:00
|
|
|
TICK_N ( "Get active monitor" )
|
2015-10-20 12:41:45 -04:00
|
|
|
if ( config.fake_transparency ) {
|
2015-11-16 02:17:30 -05:00
|
|
|
menu_setup_fake_transparency ( display, &state );
|
2015-10-20 12:41:45 -04:00
|
|
|
}
|
2014-11-11 17:07:57 -05:00
|
|
|
|
2015-01-13 06:16:32 -05:00
|
|
|
// we need this at this point so we can get height.
|
2015-04-06 11:13:26 -04:00
|
|
|
state.line_height = textbox_get_estimated_char_height ();
|
2015-10-10 07:03:11 -04:00
|
|
|
state.case_indicator = textbox_create ( TB_AUTOWIDTH, ( state.border ), ( state.border ),
|
2015-09-19 06:57:48 -04:00
|
|
|
0, state.line_height, NORMAL, "*" );
|
2015-01-13 06:16:32 -05:00
|
|
|
// Height of a row.
|
|
|
|
if ( config.menu_lines == 0 ) {
|
|
|
|
// Autosize it.
|
2015-10-20 12:51:29 -04:00
|
|
|
int h = state.mon.h - state.border * 2 - config.line_margin;
|
2015-03-19 14:58:05 -04:00
|
|
|
int r = ( h ) / ( state.line_height * config.element_height ) - 1 - config.sidebar_mode;
|
2015-01-13 06:16:32 -05:00
|
|
|
state.menu_lines = r;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
state.menu_lines = config.menu_lines;
|
|
|
|
}
|
|
|
|
menu_calculate_rows_columns ( &state );
|
2015-10-20 12:51:29 -04:00
|
|
|
menu_calculate_window_and_element_width ( &state, &( state.mon ) );
|
2015-01-13 06:16:32 -05:00
|
|
|
|
|
|
|
// Prompt box.
|
2015-10-10 07:03:11 -04:00
|
|
|
state.prompt_tb = textbox_create ( TB_AUTOWIDTH, ( state.border ), ( state.border ),
|
2015-03-20 11:07:30 -04:00
|
|
|
0, state.line_height, NORMAL, prompt );
|
2015-01-13 06:16:32 -05:00
|
|
|
// Entry box
|
2015-10-10 07:03:11 -04:00
|
|
|
int entrybox_width = state.w - ( 2 * ( state.border ) ) - textbox_get_width ( state.prompt_tb )
|
2015-01-13 06:16:32 -05:00
|
|
|
- textbox_get_width ( state.case_indicator );
|
2015-09-26 14:34:34 -04:00
|
|
|
state.text = textbox_create ( TB_EDITABLE,
|
2015-10-10 07:03:11 -04:00
|
|
|
( state.border ) + textbox_get_width ( state.prompt_tb ), ( state.border ),
|
2015-09-19 06:57:48 -04:00
|
|
|
entrybox_width, state.line_height, NORMAL, *input );
|
2015-05-23 14:06:06 -04:00
|
|
|
|
2015-10-10 07:03:11 -04:00
|
|
|
state.top_offset = state.border * 1 + state.line_height + 2 + config.line_margin * 2;
|
2015-05-23 14:06:06 -04:00
|
|
|
|
2015-01-13 05:48:38 -05:00
|
|
|
// Move indicator to end.
|
2015-10-10 07:03:11 -04:00
|
|
|
textbox_move ( state.case_indicator, state.border + textbox_get_width ( state.prompt_tb ) + entrybox_width, state.border );
|
2014-08-26 14:25:00 -04:00
|
|
|
|
2015-01-12 18:01:16 -05:00
|
|
|
if ( config.case_sensitive ) {
|
2015-09-26 14:34:34 -04:00
|
|
|
textbox_text ( state.case_indicator, "*" );
|
|
|
|
}
|
|
|
|
else{
|
2015-10-16 14:51:37 -04:00
|
|
|
textbox_text ( state.case_indicator, " " );
|
2015-01-12 18:01:16 -05:00
|
|
|
}
|
2015-05-23 14:06:06 -04:00
|
|
|
state.message_tb = NULL;
|
|
|
|
if ( message ) {
|
2015-09-26 14:34:34 -04:00
|
|
|
state.message_tb = textbox_create ( TB_AUTOHEIGHT | TB_MARKUP | TB_WRAP,
|
2015-10-10 07:03:11 -04:00
|
|
|
( state.border ), state.top_offset, state.w - ( 2 * ( state.border ) ),
|
2015-09-19 06:57:48 -04:00
|
|
|
-1, NORMAL, message );
|
2015-05-23 14:06:06 -04:00
|
|
|
state.top_offset += textbox_get_height ( state.message_tb );
|
2015-08-26 15:49:53 -04:00
|
|
|
state.top_offset += config.line_margin * 2 + 2;
|
2015-05-23 14:06:06 -04:00
|
|
|
}
|
|
|
|
|
2015-03-19 14:58:05 -04:00
|
|
|
int element_height = state.line_height * config.element_height;
|
2014-01-10 04:35:38 -05:00
|
|
|
// filtered list display
|
2014-08-26 14:25:00 -04:00
|
|
|
state.boxes = g_malloc0_n ( state.max_elements, sizeof ( textbox* ) );
|
2014-01-26 06:59:10 -05:00
|
|
|
|
2015-05-23 14:06:06 -04:00
|
|
|
int y_offset = state.top_offset;
|
2015-10-10 07:03:11 -04:00
|
|
|
int x_offset = state.border;
|
2014-10-30 12:53:22 -04:00
|
|
|
|
2015-09-22 16:23:52 -04:00
|
|
|
int rstate = 0;
|
|
|
|
if ( config.markup_rows ) {
|
|
|
|
rstate = TB_MARKUP;
|
|
|
|
}
|
2015-09-08 16:58:34 -04:00
|
|
|
for ( unsigned int i = 0; i < state.max_elements; i++ ) {
|
2015-09-26 14:34:34 -04:00
|
|
|
state.boxes[i] = textbox_create ( rstate, x_offset, y_offset,
|
2014-10-30 12:53:22 -04:00
|
|
|
state.element_width, element_height, NORMAL, "" );
|
2014-01-10 04:35:38 -05:00
|
|
|
}
|
2015-09-04 15:08:23 -04:00
|
|
|
if ( !config.hide_scrollbar ) {
|
2015-09-06 04:12:09 -04:00
|
|
|
unsigned int sbw = config.line_margin + 8;
|
2015-10-10 07:03:11 -04:00
|
|
|
state.scrollbar = scrollbar_create ( state.w - state.border - sbw, state.top_offset,
|
2015-09-19 06:57:48 -04:00
|
|
|
sbw, ( state.max_rows - 1 ) * ( element_height + config.line_margin ) + element_height );
|
2015-09-04 15:08:23 -04:00
|
|
|
}
|
2015-09-03 12:23:00 -04:00
|
|
|
|
2015-09-04 02:42:09 -04:00
|
|
|
scrollbar_set_max_value ( state.scrollbar, state.num_lines );
|
2014-01-10 04:35:38 -05:00
|
|
|
// filtered list
|
2015-09-08 16:23:03 -04:00
|
|
|
state.line_map = g_malloc0_n ( state.num_lines, sizeof ( unsigned int ) );
|
2015-10-15 16:33:44 -04:00
|
|
|
if ( config.levenshtein_sort ) {
|
|
|
|
state.distance = (int *) g_malloc0_n ( state.num_lines, sizeof ( int ) );
|
|
|
|
}
|
2014-01-10 04:35:38 -05:00
|
|
|
|
|
|
|
// resize window vertically to suit
|
2014-01-13 03:42:52 -05:00
|
|
|
// Subtract the margin of the last row.
|
2015-09-19 06:57:48 -04:00
|
|
|
state.h = state.top_offset + ( element_height + config.line_margin ) * ( state.max_rows ) - config.line_margin;
|
2015-10-10 07:03:11 -04:00
|
|
|
state.h += state.border;
|
2015-08-26 15:49:53 -04:00
|
|
|
state.h += 0;
|
2014-11-09 07:10:24 -05:00
|
|
|
// Add entry
|
|
|
|
if ( config.sidebar_mode == TRUE ) {
|
2015-08-26 15:49:53 -04:00
|
|
|
state.h += state.line_height + 2 * config.line_margin + 2;
|
2014-11-09 07:10:24 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Sidebar mode.
|
|
|
|
if ( config.menu_lines == 0 ) {
|
2015-10-20 12:51:29 -04:00
|
|
|
state.h = state.mon.h;
|
2014-11-09 07:10:24 -05:00
|
|
|
}
|
2014-01-26 06:59:10 -05:00
|
|
|
|
2014-07-19 14:42:22 -04:00
|
|
|
// Move the window to the correct x,y position.
|
2015-10-20 12:51:29 -04:00
|
|
|
calculate_window_position ( &state );
|
2014-11-09 07:10:24 -05:00
|
|
|
|
|
|
|
if ( config.sidebar_mode == TRUE ) {
|
2015-10-10 07:03:11 -04:00
|
|
|
int width = ( state.w - ( 2 * ( state.border ) + ( num_switchers - 1 ) * config.line_margin ) ) / num_switchers;
|
2015-02-01 09:00:01 -05:00
|
|
|
for ( unsigned int j = 0; j < num_switchers; j++ ) {
|
2015-10-10 07:03:11 -04:00
|
|
|
switchers[j].tb = textbox_create ( TB_CENTER, state.border + j * ( width + config.line_margin ),
|
|
|
|
state.h - state.line_height - state.border, width, state.line_height,
|
2015-09-19 06:57:48 -04:00
|
|
|
( j == curr_switcher ) ? HIGHLIGHT : NORMAL, switchers[j].sw->name );
|
2014-11-09 07:10:24 -05:00
|
|
|
}
|
|
|
|
}
|
2014-01-26 06:59:10 -05:00
|
|
|
|
2014-08-26 14:25:00 -04:00
|
|
|
// Display it.
|
2014-11-09 07:10:24 -05:00
|
|
|
XMoveResizeWindow ( display, main_window, state.x, state.y, state.w, state.h );
|
2015-09-26 14:34:34 -04:00
|
|
|
cairo_xlib_surface_set_size ( surface, state.w, state.h );
|
2014-07-19 15:11:27 -04:00
|
|
|
XMapRaised ( display, main_window );
|
2014-01-26 06:59:10 -05:00
|
|
|
|
2014-07-19 14:42:22 -04:00
|
|
|
// if grabbing keyboard failed, fall through
|
2015-01-29 11:37:12 -05:00
|
|
|
state.selected = 0;
|
|
|
|
|
2015-09-26 14:34:34 -04:00
|
|
|
state.quit = FALSE;
|
|
|
|
state.update = TRUE;
|
2015-09-19 06:21:30 -04:00
|
|
|
menu_refilter ( &state );
|
2015-01-29 11:37:12 -05:00
|
|
|
|
2015-09-19 06:57:48 -04:00
|
|
|
for ( unsigned int i = 0; ( *( state.selected_line ) ) < UINT32_MAX && !state.selected && i < state.filtered_lines; i++ ) {
|
2015-05-19 13:59:50 -04:00
|
|
|
if ( state.line_map[i] == *( state.selected_line ) ) {
|
|
|
|
state.selected = i;
|
2015-09-08 16:23:03 -04:00
|
|
|
break;
|
2015-05-19 13:59:50 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-13 11:29:50 -04:00
|
|
|
if ( sncontext != NULL ) {
|
|
|
|
sn_launchee_context_complete ( sncontext );
|
|
|
|
}
|
2015-04-30 11:11:52 -04:00
|
|
|
int x11_fd = ConnectionNumber ( display );
|
2015-01-29 11:37:12 -05:00
|
|
|
while ( !state.quit ) {
|
|
|
|
// Update if requested.
|
|
|
|
if ( state.update ) {
|
|
|
|
menu_update ( &state );
|
2014-08-01 17:29:01 -04:00
|
|
|
}
|
2014-01-26 06:59:10 -05:00
|
|
|
|
2015-01-29 11:37:12 -05:00
|
|
|
// Wait for event.
|
|
|
|
XEvent ev;
|
|
|
|
// Only use lazy mode above 5000 lines.
|
|
|
|
// Or if we still need to get window.
|
|
|
|
MainLoopEvent mle = ML_XEVENT;
|
|
|
|
// If we are in lazy mode, or trying to grab keyboard, go into timeout.
|
|
|
|
// Otherwise continue like we had an XEvent (and we will block on fetching this event).
|
2015-04-30 11:11:52 -04:00
|
|
|
if ( ( state.refilter && state.num_lines > config.lazy_filter_limit ) ) {
|
2015-01-29 11:37:12 -05:00
|
|
|
mle = wait_for_xevent_or_timeout ( display, x11_fd );
|
|
|
|
}
|
|
|
|
// If not in lazy mode, refilter.
|
|
|
|
if ( state.num_lines <= config.lazy_filter_limit ) {
|
|
|
|
if ( state.refilter ) {
|
2015-09-19 06:21:30 -04:00
|
|
|
menu_refilter ( &state );
|
2014-08-26 14:25:00 -04:00
|
|
|
menu_update ( &state );
|
2014-07-19 14:42:22 -04:00
|
|
|
}
|
2015-01-29 11:37:12 -05:00
|
|
|
}
|
|
|
|
else if ( mle == ML_TIMEOUT ) {
|
|
|
|
// When timeout (and in lazy filter mode)
|
|
|
|
// We refilter then loop back and wait for Xevent.
|
|
|
|
if ( state.refilter ) {
|
2015-09-19 06:21:30 -04:00
|
|
|
menu_refilter ( &state );
|
2015-01-29 11:37:12 -05:00
|
|
|
menu_update ( &state );
|
2015-01-18 12:17:09 -05:00
|
|
|
}
|
2015-01-31 12:23:17 -05:00
|
|
|
}
|
|
|
|
if ( mle == ML_TIMEOUT ) {
|
2015-01-29 11:37:12 -05:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// Get next event. (might block)
|
|
|
|
XNextEvent ( display, &ev );
|
2015-11-14 07:47:45 -05:00
|
|
|
TICK_N ( "X Event" )
|
2015-09-13 11:29:50 -04:00
|
|
|
if ( sndisplay != NULL ) {
|
|
|
|
sn_display_process_event ( sndisplay, &ev );
|
|
|
|
}
|
2015-04-23 16:14:31 -04:00
|
|
|
if ( ev.type == KeymapNotify ) {
|
|
|
|
XRefreshKeyboardMapping ( &ev.xmapping );
|
|
|
|
}
|
2015-09-09 05:47:51 -04:00
|
|
|
else if ( ev.type == ConfigureNotify ) {
|
|
|
|
XConfigureEvent xce = ev.xconfigure;
|
|
|
|
if ( xce.window == main_window ) {
|
2015-10-20 12:41:45 -04:00
|
|
|
if ( state.x != (int ) xce.x || state.y != (int) xce.y ) {
|
|
|
|
state.x = xce.x;
|
|
|
|
state.y = xce.y;
|
|
|
|
state.update = TRUE;
|
|
|
|
}
|
2015-09-19 06:57:48 -04:00
|
|
|
if ( state.w != (unsigned int) xce.width || state.h != (unsigned int ) xce.height ) {
|
2015-09-09 05:47:51 -04:00
|
|
|
state.w = xce.width;
|
2015-09-17 11:32:51 -04:00
|
|
|
state.h = xce.height;
|
2015-09-26 14:34:34 -04:00
|
|
|
cairo_xlib_surface_set_size ( surface, state.w, state.h );
|
2015-09-09 05:47:51 -04:00
|
|
|
menu_resize ( &state );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-09-09 14:01:19 -04:00
|
|
|
else if ( ev.type == FocusIn ) {
|
|
|
|
take_keyboard ( display, main_window );
|
2015-09-09 06:00:28 -04:00
|
|
|
}
|
2015-09-09 14:01:19 -04:00
|
|
|
else if ( ev.type == FocusOut ) {
|
|
|
|
release_keyboard ( display );
|
2015-09-09 06:00:28 -04:00
|
|
|
}
|
2015-01-29 11:37:12 -05:00
|
|
|
// Handle event.
|
2015-04-23 16:14:31 -04:00
|
|
|
else if ( ev.type == Expose ) {
|
2015-01-29 11:37:12 -05:00
|
|
|
while ( XCheckTypedEvent ( display, Expose, &ev ) ) {
|
|
|
|
;
|
2014-01-16 03:21:48 -05:00
|
|
|
}
|
2015-01-29 11:37:12 -05:00
|
|
|
state.update = TRUE;
|
|
|
|
}
|
2015-09-14 12:13:52 -04:00
|
|
|
else if ( ev.type == MotionNotify ) {
|
|
|
|
while ( XCheckTypedEvent ( display, MotionNotify, &ev ) ) {
|
|
|
|
;
|
|
|
|
}
|
|
|
|
XMotionEvent xme = ev.xmotion;
|
2015-09-26 14:34:34 -04:00
|
|
|
if ( xme.x >= state.scrollbar->x && xme.x < ( state.scrollbar->x + state.scrollbar->w ) ) {
|
|
|
|
state.selected = scrollbar_clicked ( state.scrollbar, xme.y );
|
|
|
|
state.update = TRUE;
|
|
|
|
}
|
2015-09-14 12:13:52 -04:00
|
|
|
}
|
2015-01-29 11:37:12 -05:00
|
|
|
// Button press event.
|
|
|
|
else if ( ev.type == ButtonPress ) {
|
|
|
|
while ( XCheckTypedEvent ( display, ButtonPress, &ev ) ) {
|
|
|
|
;
|
2014-08-23 06:47:09 -04:00
|
|
|
}
|
2015-01-29 11:37:12 -05:00
|
|
|
menu_mouse_navigation ( &state, &( ev.xbutton ) );
|
|
|
|
}
|
|
|
|
// Paste event.
|
|
|
|
else if ( ev.type == SelectionNotify ) {
|
2015-02-09 14:20:51 -05:00
|
|
|
do {
|
|
|
|
menu_paste ( &state, &( ev.xselection ) );
|
2015-02-09 14:23:55 -05:00
|
|
|
} while ( XCheckTypedEvent ( display, SelectionNotify, &ev ) );
|
2015-01-29 11:37:12 -05:00
|
|
|
}
|
|
|
|
// Key press event.
|
|
|
|
else if ( ev.type == KeyPress ) {
|
|
|
|
do {
|
2015-11-20 14:53:27 -05:00
|
|
|
// This is needed for letting the Input Method handle combined keys.
|
|
|
|
// E.g. `e into è
|
|
|
|
if ( XFilterEvent ( &ev, main_window ) ) {
|
|
|
|
continue;
|
2015-01-29 11:37:12 -05:00
|
|
|
}
|
2015-11-20 14:53:27 -05:00
|
|
|
Status stat;
|
|
|
|
char pad[32];
|
2015-11-21 17:59:59 -05:00
|
|
|
KeySym key; // = XkbKeycodeToKeysym ( display, ev.xkey.keycode, 0, 0 );
|
2015-11-20 14:53:27 -05:00
|
|
|
int len = Xutf8LookupString ( xic, &( ev.xkey ), pad, sizeof ( pad ), &key, &stat );
|
|
|
|
pad[len] = 0;
|
|
|
|
if ( stat == XLookupKeySym || stat == XLookupBoth ) {
|
|
|
|
// Handling of paste
|
|
|
|
if ( abe_test_action ( PASTE_PRIMARY, ev.xkey.state, key ) ) {
|
|
|
|
XConvertSelection ( display, XA_PRIMARY, netatoms[UTF8_STRING], netatoms[UTF8_STRING], main_window, CurrentTime );
|
2015-01-18 11:18:07 -05:00
|
|
|
}
|
2015-11-20 14:53:27 -05:00
|
|
|
else if ( abe_test_action ( PASTE_SECONDARY, ev.xkey.state, key ) ) {
|
|
|
|
XConvertSelection ( display, netatoms[CLIPBOARD], netatoms[UTF8_STRING], netatoms[UTF8_STRING], main_window,
|
|
|
|
CurrentTime );
|
2015-01-18 11:18:07 -05:00
|
|
|
}
|
2015-11-20 14:53:27 -05:00
|
|
|
else if ( abe_test_action ( MODE_PREVIOUS, ev.xkey.state, key ) ) {
|
|
|
|
state.retv = MENU_PREVIOUS;
|
|
|
|
*( state.selected_line ) = 0;
|
2015-01-18 11:18:07 -05:00
|
|
|
state.quit = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
2015-11-20 14:53:27 -05:00
|
|
|
// Menu navigation.
|
|
|
|
else if ( abe_test_action ( MODE_NEXT, ev.xkey.state, key ) ) {
|
|
|
|
state.retv = MENU_NEXT;
|
|
|
|
*( state.selected_line ) = 0;
|
|
|
|
state.quit = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// Toggle case sensitivity.
|
|
|
|
else if ( abe_test_action ( TOGGLE_CASE_SENSITIVITY, ev.xkey.state, key ) ) {
|
|
|
|
config.case_sensitive = !config.case_sensitive;
|
|
|
|
*( state.selected_line ) = 0;
|
|
|
|
state.refilter = TRUE;
|
|
|
|
state.update = TRUE;
|
|
|
|
if ( config.case_sensitive ) {
|
|
|
|
textbox_text ( state.case_indicator, "*" );
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
textbox_text ( state.case_indicator, " " );
|
|
|
|
}
|
2015-11-21 17:59:59 -05:00
|
|
|
break;
|
2015-11-20 14:53:27 -05:00
|
|
|
}
|
|
|
|
// Special delete entry command.
|
|
|
|
else if ( abe_test_action ( DELETE_ENTRY, ev.xkey.state, key ) ) {
|
|
|
|
if ( state.selected < state.filtered_lines ) {
|
|
|
|
*( state.selected_line ) = state.line_map[state.selected];
|
|
|
|
state.retv = MENU_ENTRY_DELETE;
|
|
|
|
state.quit = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2015-09-02 04:05:02 -04:00
|
|
|
for ( unsigned int a = CUSTOM_1; a <= CUSTOM_19; a++ ) {
|
|
|
|
if ( abe_test_action ( a, ev.xkey.state, key ) ) {
|
|
|
|
if ( state.selected < state.filtered_lines ) {
|
|
|
|
*( state.selected_line ) = state.line_map[state.selected];
|
|
|
|
}
|
|
|
|
state.retv = MENU_QUICK_SWITCH | ( ( a - CUSTOM_1 ) & MENU_LOWER_MASK );
|
|
|
|
state.quit = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2015-11-20 16:00:37 -05:00
|
|
|
if ( menu_keyboard_navigation ( &state, key, ev.xkey.state ) ) {
|
|
|
|
continue;
|
|
|
|
}
|
2015-11-20 14:53:27 -05:00
|
|
|
}
|
|
|
|
{
|
2015-09-02 04:05:02 -04:00
|
|
|
// Skip if we detected key before.
|
|
|
|
if ( state.quit ) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2015-11-22 14:41:45 -05:00
|
|
|
int rc = textbox_keypress ( state.text, &ev, pad, len, key, stat );
|
2015-01-29 11:37:12 -05:00
|
|
|
// Row is accepted.
|
|
|
|
if ( rc < 0 ) {
|
2015-03-27 15:28:53 -04:00
|
|
|
shift = ( ( ev.xkey.state & ShiftMask ) == ShiftMask );
|
2015-01-18 11:18:07 -05:00
|
|
|
|
2015-01-29 11:37:12 -05:00
|
|
|
// If a valid item is selected, return that..
|
2015-03-31 16:45:02 -04:00
|
|
|
if ( state.selected < state.filtered_lines ) {
|
2015-01-29 11:37:12 -05:00
|
|
|
*( state.selected_line ) = state.line_map[state.selected];
|
|
|
|
if ( strlen ( state.text->text ) > 0 && rc == -2 ) {
|
2014-11-29 10:35:43 -05:00
|
|
|
state.retv = MENU_CUSTOM_INPUT;
|
2014-11-29 10:54:42 -05:00
|
|
|
}
|
2015-01-29 11:37:12 -05:00
|
|
|
else {
|
|
|
|
state.retv = MENU_OK;
|
2014-11-29 10:35:43 -05:00
|
|
|
}
|
2014-03-22 16:04:19 -04:00
|
|
|
}
|
2015-01-29 11:37:12 -05:00
|
|
|
else if ( strlen ( state.text->text ) > 0 ) {
|
|
|
|
state.retv = MENU_CUSTOM_INPUT;
|
2014-11-29 10:54:42 -05:00
|
|
|
}
|
2014-08-26 14:25:00 -04:00
|
|
|
else{
|
2015-01-29 11:37:12 -05:00
|
|
|
// Nothing entered and nothing selected.
|
|
|
|
state.retv = MENU_CANCEL;
|
2014-02-01 08:03:23 -05:00
|
|
|
}
|
2015-01-29 11:37:12 -05:00
|
|
|
|
|
|
|
state.quit = TRUE;
|
2014-08-26 14:25:00 -04:00
|
|
|
}
|
2015-01-29 11:37:12 -05:00
|
|
|
// Key press is handled by entry box.
|
2015-08-29 17:02:30 -04:00
|
|
|
else if ( rc == 1 ) {
|
2015-01-29 11:37:12 -05:00
|
|
|
state.refilter = TRUE;
|
|
|
|
state.update = TRUE;
|
|
|
|
}
|
2015-08-29 17:02:30 -04:00
|
|
|
else if ( rc == 2 ) {
|
|
|
|
// redraw.
|
|
|
|
state.update = TRUE;
|
|
|
|
}
|
2015-01-29 11:37:12 -05:00
|
|
|
}
|
|
|
|
} while ( XCheckTypedEvent ( display, KeyPress, &ev ) );
|
2014-01-10 04:35:38 -05:00
|
|
|
}
|
2014-04-24 12:03:27 -04:00
|
|
|
}
|
2015-05-21 17:53:28 -04:00
|
|
|
// Wait for final release?
|
2015-07-19 04:02:20 -04:00
|
|
|
if ( !state.skip_absorb ) {
|
2015-05-21 17:53:28 -04:00
|
|
|
XEvent ev;
|
|
|
|
do {
|
|
|
|
XNextEvent ( display, &ev );
|
|
|
|
} while ( ev.type != KeyRelease );
|
|
|
|
}
|
|
|
|
|
2014-08-26 14:25:00 -04:00
|
|
|
// Update input string.
|
2014-08-09 05:40:42 -04:00
|
|
|
g_free ( *input );
|
2014-08-26 14:25:00 -04:00
|
|
|
*input = g_strdup ( state.text->text );
|
2014-02-01 17:04:45 -05:00
|
|
|
|
2015-04-16 15:13:45 -04:00
|
|
|
if ( next_pos ) {
|
|
|
|
*( next_pos ) = state.selected + 1;
|
|
|
|
}
|
|
|
|
|
2014-11-10 03:19:50 -05:00
|
|
|
int retv = state.retv;
|
2014-08-26 14:25:00 -04:00
|
|
|
menu_free_state ( &state );
|
2015-01-04 07:24:08 -05:00
|
|
|
|
2015-03-27 15:28:53 -04:00
|
|
|
if ( shift ) {
|
|
|
|
retv |= MENU_SHIFT;
|
|
|
|
}
|
|
|
|
|
2015-01-04 07:24:08 -05:00
|
|
|
// Free the switcher boxes.
|
|
|
|
// When state is free'ed we should no longer need these.
|
|
|
|
if ( config.sidebar_mode == TRUE ) {
|
2015-02-01 09:00:01 -05:00
|
|
|
for ( unsigned int j = 0; j < num_switchers; j++ ) {
|
2015-09-07 13:10:44 -04:00
|
|
|
textbox_free ( switchers[j].tb );
|
|
|
|
switchers[j].tb = NULL;
|
2015-01-04 07:24:08 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-10 03:19:50 -05:00
|
|
|
return retv;
|
2012-06-29 13:10:13 -04:00
|
|
|
}
|
|
|
|
|
2015-06-08 17:22:35 -04:00
|
|
|
void error_dialog ( const char *msg, int markup )
|
2014-08-27 13:44:15 -04:00
|
|
|
{
|
2014-09-03 07:07:26 -04:00
|
|
|
MenuState state = {
|
2015-09-08 16:23:03 -04:00
|
|
|
.sw = NULL,
|
2014-08-27 13:44:15 -04:00
|
|
|
.selected_line = NULL,
|
|
|
|
.retv = MENU_CANCEL,
|
2014-09-03 07:07:26 -04:00
|
|
|
.prev_key = 0,
|
|
|
|
.last_button_press = 0,
|
|
|
|
.last_offset = 0,
|
|
|
|
.num_lines = 0,
|
2015-10-15 16:33:44 -04:00
|
|
|
.distance = NULL,
|
2014-08-27 13:44:15 -04:00
|
|
|
.quit = FALSE,
|
2015-07-19 04:02:20 -04:00
|
|
|
.skip_absorb = FALSE,
|
2014-09-03 07:07:26 -04:00
|
|
|
.filtered_lines = 0,
|
|
|
|
.columns = 0,
|
|
|
|
.update = TRUE,
|
2015-10-26 15:12:22 -04:00
|
|
|
.top_offset = 0,
|
|
|
|
.border = config.padding + config.menu_bw
|
2014-08-27 13:44:15 -04:00
|
|
|
};
|
2015-04-30 11:11:52 -04:00
|
|
|
|
|
|
|
// Try to grab the keyboard as early as possible.
|
|
|
|
// We grab this using the rootwindow (as dmenu does it).
|
|
|
|
// this seems to result in the smallest delay for most people.
|
2015-05-02 06:42:36 -04:00
|
|
|
int has_keyboard = take_keyboard ( display, DefaultRootWindow ( display ) );
|
2015-04-30 11:11:52 -04:00
|
|
|
|
|
|
|
if ( !has_keyboard ) {
|
|
|
|
fprintf ( stderr, "Failed to grab keyboard, even after %d uS.", 500 * 1000 );
|
2015-07-31 06:23:41 -04:00
|
|
|
return;
|
2015-04-30 11:11:52 -04:00
|
|
|
}
|
2014-08-27 13:44:15 -04:00
|
|
|
// Get active monitor size.
|
2015-10-20 12:51:29 -04:00
|
|
|
monitor_active ( display, &( state.mon ) );
|
2015-10-26 15:12:22 -04:00
|
|
|
if ( config.fake_transparency ) {
|
2015-11-16 02:17:30 -05:00
|
|
|
menu_setup_fake_transparency ( display, &state );
|
2015-10-26 15:12:22 -04:00
|
|
|
}
|
2014-08-27 13:44:15 -04:00
|
|
|
// main window isn't explicitly destroyed in case we switch modes. Reusing it prevents flicker
|
|
|
|
XWindowAttributes attr;
|
|
|
|
if ( main_window == None || XGetWindowAttributes ( display, main_window, &attr ) == 0 ) {
|
|
|
|
main_window = create_window ( display );
|
|
|
|
}
|
|
|
|
|
2015-10-20 12:51:29 -04:00
|
|
|
menu_calculate_window_and_element_width ( &state, &( state.mon ) );
|
2014-09-03 07:07:26 -04:00
|
|
|
state.max_elements = 0;
|
2014-08-27 13:44:15 -04:00
|
|
|
|
2015-10-18 13:02:19 -04:00
|
|
|
state.text = textbox_create ( ( TB_AUTOHEIGHT | TB_WRAP ) + ( ( markup ) ? TB_MARKUP : 0 ),
|
2015-10-10 07:03:11 -04:00
|
|
|
( state.border ), ( state.border ),
|
|
|
|
( state.w - ( 2 * ( state.border ) ) ), 1, NORMAL, ( msg != NULL ) ? msg : "" );
|
2015-03-19 14:58:05 -04:00
|
|
|
state.line_height = textbox_get_height ( state.text );
|
2014-08-27 13:44:15 -04:00
|
|
|
|
|
|
|
// resize window vertically to suit
|
2015-10-10 07:03:11 -04:00
|
|
|
state.h = state.line_height + ( state.border ) * 2;
|
2014-08-27 13:44:15 -04:00
|
|
|
|
|
|
|
// Move the window to the correct x,y position.
|
2015-10-20 12:51:29 -04:00
|
|
|
calculate_window_position ( &state );
|
2014-11-15 10:26:55 -05:00
|
|
|
XMoveResizeWindow ( display, main_window, state.x, state.y, state.w, state.h );
|
2015-09-26 14:34:34 -04:00
|
|
|
cairo_xlib_surface_set_size ( surface, state.w, state.h );
|
2014-08-27 13:44:15 -04:00
|
|
|
// Display it.
|
|
|
|
XMapRaised ( display, main_window );
|
|
|
|
|
2015-09-13 11:29:50 -04:00
|
|
|
if ( sncontext != NULL ) {
|
|
|
|
sn_launchee_context_complete ( sncontext );
|
|
|
|
}
|
2015-01-29 11:37:12 -05:00
|
|
|
while ( !state.quit ) {
|
|
|
|
// Update if requested.
|
|
|
|
if ( state.update ) {
|
2015-10-26 15:12:22 -04:00
|
|
|
menu_update ( &state );
|
2015-01-29 11:37:12 -05:00
|
|
|
}
|
|
|
|
// Wait for event.
|
2015-04-30 11:11:52 -04:00
|
|
|
XEvent ev;
|
2015-01-29 11:37:12 -05:00
|
|
|
XNextEvent ( display, &ev );
|
2015-09-13 11:29:50 -04:00
|
|
|
if ( sndisplay != NULL ) {
|
|
|
|
sn_display_process_event ( sndisplay, &ev );
|
|
|
|
}
|
2015-01-29 11:37:12 -05:00
|
|
|
// Handle event.
|
|
|
|
if ( ev.type == Expose ) {
|
|
|
|
while ( XCheckTypedEvent ( display, Expose, &ev ) ) {
|
|
|
|
;
|
2014-08-27 13:44:15 -04:00
|
|
|
}
|
2015-01-29 11:37:12 -05:00
|
|
|
state.update = TRUE;
|
|
|
|
}
|
|
|
|
// Key press event.
|
|
|
|
else if ( ev.type == KeyPress ) {
|
|
|
|
while ( XCheckTypedEvent ( display, KeyPress, &ev ) ) {
|
|
|
|
;
|
2014-08-27 13:44:15 -04:00
|
|
|
}
|
2015-01-29 11:37:12 -05:00
|
|
|
state.quit = TRUE;
|
2014-08-27 13:44:15 -04:00
|
|
|
}
|
|
|
|
}
|
2015-01-30 12:01:25 -05:00
|
|
|
release_keyboard ( display );
|
2015-09-07 02:31:01 -04:00
|
|
|
menu_free_state ( &state );
|
2014-08-27 13:44:15 -04:00
|
|
|
}
|
2014-08-28 04:09:49 -04:00
|
|
|
|
2015-01-08 07:16:44 -05:00
|
|
|
/**
|
2015-07-30 02:57:09 -04:00
|
|
|
* Do needed steps to start showing the gui
|
2015-01-08 07:16:44 -05:00
|
|
|
*/
|
2015-07-30 02:57:09 -04:00
|
|
|
static int setup ()
|
2014-08-05 03:07:41 -04:00
|
|
|
{
|
2015-02-01 09:17:43 -05:00
|
|
|
// Create pid file
|
2015-07-30 02:57:09 -04:00
|
|
|
int pfd = create_pid_file ( pidfile );
|
|
|
|
if ( pfd >= 0 ) {
|
|
|
|
// Request truecolor visual.
|
|
|
|
create_visual_and_colormap ( display );
|
2015-09-28 15:41:58 -04:00
|
|
|
textbox_setup ( display );
|
2015-07-30 02:57:09 -04:00
|
|
|
}
|
|
|
|
return pfd;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Teardown the gui.
|
|
|
|
*/
|
|
|
|
static void teardown ( int pfd )
|
|
|
|
{
|
2014-08-05 03:07:41 -04:00
|
|
|
// Cleanup font setup.
|
2015-01-21 04:04:15 -05:00
|
|
|
textbox_cleanup ( );
|
|
|
|
|
2015-07-28 16:22:18 -04:00
|
|
|
// Release the window.
|
|
|
|
release_keyboard ( display );
|
2015-09-26 14:34:34 -04:00
|
|
|
if ( draw ) {
|
|
|
|
cairo_destroy ( draw );
|
|
|
|
draw = NULL;
|
2015-07-30 12:18:37 -04:00
|
|
|
}
|
2015-09-26 14:34:34 -04:00
|
|
|
if ( surface ) {
|
|
|
|
cairo_surface_destroy ( surface );
|
|
|
|
surface = NULL;
|
2015-07-28 16:22:18 -04:00
|
|
|
}
|
2015-09-27 07:26:18 -04:00
|
|
|
if ( main_window != None ) {
|
|
|
|
XUnmapWindow ( display, main_window );
|
|
|
|
XDestroyWindow ( display, main_window );
|
|
|
|
main_window = None;
|
|
|
|
XDestroyIC ( xic );
|
|
|
|
XCloseIM ( xim );
|
|
|
|
}
|
2015-09-26 14:34:34 -04:00
|
|
|
|
2015-07-28 17:08:12 -04:00
|
|
|
if ( map != None ) {
|
|
|
|
XFreeColormap ( display, map );
|
|
|
|
map = None;
|
|
|
|
}
|
2015-07-28 16:22:18 -04:00
|
|
|
// Cleanup pid file.
|
2015-07-30 02:57:09 -04:00
|
|
|
remove_pid_file ( pfd );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Start dmenu mode.
|
|
|
|
*/
|
|
|
|
static int run_dmenu ()
|
|
|
|
{
|
2015-08-20 15:42:53 -04:00
|
|
|
int ret_state = EXIT_FAILURE;
|
|
|
|
int pfd = setup ();
|
2015-07-30 02:57:09 -04:00
|
|
|
if ( pfd < 0 ) {
|
|
|
|
return ret_state;
|
2015-07-28 16:22:18 -04:00
|
|
|
}
|
2015-07-30 02:57:09 -04:00
|
|
|
|
|
|
|
// Dmenu modi has a return state.
|
2015-08-20 15:42:53 -04:00
|
|
|
ret_state = dmenu_switcher_dialog ();
|
2015-07-30 02:57:09 -04:00
|
|
|
teardown ( pfd );
|
2014-08-05 03:07:41 -04:00
|
|
|
return ret_state;
|
|
|
|
}
|
|
|
|
|
2015-07-28 16:22:18 -04:00
|
|
|
static void run_switcher ( SwitcherMode mode )
|
2014-01-20 16:58:10 -05:00
|
|
|
{
|
2015-07-30 02:57:09 -04:00
|
|
|
int pfd = setup ();
|
|
|
|
if ( pfd < 0 ) {
|
|
|
|
return;
|
|
|
|
}
|
2014-07-21 15:39:24 -04:00
|
|
|
// Otherwise check if requested mode is enabled.
|
2015-08-20 15:42:53 -04:00
|
|
|
char *input = g_strdup ( config.filter );
|
2015-03-27 15:28:53 -04:00
|
|
|
for ( unsigned int i = 0; i < num_switchers; i++ ) {
|
2015-09-07 13:10:44 -04:00
|
|
|
switchers[i].sw->init ( switchers[i].sw );
|
2015-03-27 15:28:53 -04:00
|
|
|
}
|
|
|
|
do {
|
|
|
|
SwitcherMode retv;
|
|
|
|
|
|
|
|
curr_switcher = mode;
|
2015-09-07 13:10:44 -04:00
|
|
|
retv = switcher_run ( &input, switchers[mode].sw );
|
2015-03-27 15:28:53 -04:00
|
|
|
// Find next enabled
|
|
|
|
if ( retv == NEXT_DIALOG ) {
|
|
|
|
mode = ( mode + 1 ) % num_switchers;
|
|
|
|
}
|
|
|
|
else if ( retv == PREVIOUS_DIALOG ) {
|
|
|
|
if ( mode == 0 ) {
|
|
|
|
mode = num_switchers - 1;
|
2014-07-21 17:19:45 -04:00
|
|
|
}
|
2014-07-21 15:39:24 -04:00
|
|
|
else {
|
2015-03-27 15:28:53 -04:00
|
|
|
mode = ( mode - 1 ) % num_switchers;
|
2014-07-21 15:39:24 -04:00
|
|
|
}
|
2015-03-27 15:28:53 -04:00
|
|
|
}
|
|
|
|
else if ( retv == RELOAD_DIALOG ) {
|
|
|
|
// do nothing.
|
|
|
|
}
|
|
|
|
else if ( retv < MODE_EXIT ) {
|
|
|
|
mode = ( retv ) % num_switchers;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
mode = retv;
|
|
|
|
}
|
|
|
|
} while ( mode != MODE_EXIT );
|
|
|
|
g_free ( input );
|
|
|
|
for ( unsigned int i = 0; i < num_switchers; i++ ) {
|
2015-09-07 13:10:44 -04:00
|
|
|
switchers[i].sw->destroy ( switchers[i].sw );
|
2014-07-21 15:39:24 -04:00
|
|
|
}
|
2015-07-30 02:57:09 -04:00
|
|
|
// cleanup
|
|
|
|
teardown ( pfd );
|
|
|
|
}
|
2014-01-16 12:47:19 -05:00
|
|
|
|
2015-07-30 02:57:09 -04:00
|
|
|
int show_error_message ( const char *msg, int markup )
|
|
|
|
{
|
|
|
|
int pfd = setup ();
|
|
|
|
if ( pfd < 0 ) {
|
|
|
|
return EXIT_FAILURE;
|
2014-01-20 16:58:10 -05:00
|
|
|
}
|
2015-07-30 02:57:09 -04:00
|
|
|
error_dialog ( msg, markup );
|
|
|
|
teardown ( pfd );
|
|
|
|
return EXIT_SUCCESS;
|
2012-06-29 13:10:13 -04:00
|
|
|
}
|
|
|
|
|
2015-01-08 07:16:44 -05:00
|
|
|
/**
|
|
|
|
* Function that listens for global key-presses.
|
|
|
|
* This is only used when in daemon mode.
|
|
|
|
*/
|
2014-05-25 05:04:45 -04:00
|
|
|
static void handle_keypress ( XEvent *ev )
|
2012-06-29 13:10:13 -04:00
|
|
|
{
|
2015-02-15 20:03:26 -05:00
|
|
|
int index;
|
2015-02-17 04:31:59 -05:00
|
|
|
KeySym key = XkbKeycodeToKeysym ( display, ev->xkey.keycode, 0, 0 );
|
|
|
|
index = locate_switcher ( key, ev->xkey.state );
|
|
|
|
if ( index >= 0 ) {
|
2015-07-28 16:22:18 -04:00
|
|
|
run_switcher ( index );
|
2014-01-21 04:13:42 -05:00
|
|
|
}
|
2015-02-15 20:03:26 -05:00
|
|
|
else {
|
2015-09-19 06:21:30 -04:00
|
|
|
fprintf ( stderr,
|
|
|
|
"Warning: Unhandled keypress in global keyhandler, keycode = %u mask = %u\n",
|
|
|
|
ev->xkey.keycode,
|
|
|
|
ev->xkey.state );
|
2015-02-15 20:03:26 -05:00
|
|
|
}
|
2012-06-29 13:10:13 -04:00
|
|
|
}
|
|
|
|
|
2014-01-19 07:57:54 -05:00
|
|
|
/**
|
2015-10-21 03:42:55 -04:00
|
|
|
* Help function.
|
2014-01-19 07:57:54 -05:00
|
|
|
*/
|
2015-10-21 03:42:55 -04:00
|
|
|
static void print_main_application_options ( void )
|
|
|
|
{
|
|
|
|
int is_term = isatty ( fileno ( stdout ) );
|
2015-11-15 07:12:43 -05:00
|
|
|
print_help_msg ( "-no-config", "", "Do not load configuration, use default values.", NULL, is_term );
|
|
|
|
print_help_msg ( "-quiet", "", "Suppress information messages.", NULL, is_term );
|
|
|
|
print_help_msg ( "-v,-version", "", "Print the version number and exit.", NULL, is_term );
|
|
|
|
print_help_msg ( "-dmenu", "", "Start in dmenu mode.", NULL, is_term );
|
|
|
|
print_help_msg ( "-display", "[string]", "X server to contact.", "${DISPLAY}", is_term );
|
|
|
|
print_help_msg ( "-h,-help", "", "This help message.", NULL, is_term );
|
|
|
|
print_help_msg ( "-dump-xresources", "", "Dump the current configuration in Xresources format and exit.", NULL, is_term );
|
|
|
|
print_help_msg ( "-e", "[string]", "Show a dialog displaying the passed message and exit.", NULL, is_term );
|
|
|
|
print_help_msg ( "-markup", "", "Enable pango markup where possible.", NULL, is_term );
|
|
|
|
print_help_msg ( "-normal-window", "", "In dmenu mode, behave as a normal window. (experimental)", NULL, is_term );
|
2015-11-14 13:59:56 -05:00
|
|
|
print_help_msg ( "-show", "[mode]", "Show the mode 'mode' and exit. The mode has to be enabled.", NULL, is_term );
|
2015-10-21 03:42:55 -04:00
|
|
|
}
|
2015-10-15 16:33:44 -04:00
|
|
|
static void help ( G_GNUC_UNUSED int argc, char **argv )
|
2014-01-19 07:57:54 -05:00
|
|
|
{
|
2015-10-15 16:33:44 -04:00
|
|
|
printf ( "%s usage:\n", argv[0] );
|
|
|
|
printf ( "\t%s [-options ...]\n\n", argv[0] );
|
2015-10-21 12:58:01 -04:00
|
|
|
printf ( "Command line only options:\n" );
|
2015-10-21 03:42:55 -04:00
|
|
|
print_main_application_options ();
|
2015-10-21 12:58:01 -04:00
|
|
|
printf ( "DMENU command line options:\n" );
|
|
|
|
print_dmenu_options ();
|
|
|
|
printf ( "Global options:\n" );
|
2015-10-15 16:33:44 -04:00
|
|
|
print_options ();
|
|
|
|
printf ( "\n" );
|
|
|
|
printf ( "For more information see: man rofi\n" );
|
2015-10-16 02:42:01 -04:00
|
|
|
printf ( "Version: "VERSION "\n" );
|
|
|
|
printf ( "Bugreports: "PACKAGE_BUGREPORT "\n" );
|
2014-01-19 07:57:54 -05:00
|
|
|
}
|
|
|
|
|
2014-09-23 03:24:24 -04:00
|
|
|
/**
|
|
|
|
* Function bound by 'atexit'.
|
|
|
|
* Cleanup globally allocated memory.
|
|
|
|
*/
|
2014-05-19 15:58:13 -04:00
|
|
|
static void cleanup ()
|
2014-05-19 15:02:05 -04:00
|
|
|
{
|
2015-11-14 07:47:45 -05:00
|
|
|
if ( tpool ) {
|
|
|
|
g_thread_pool_free ( tpool, TRUE, FALSE );
|
|
|
|
tpool = NULL;
|
|
|
|
}
|
2014-05-19 15:02:05 -04:00
|
|
|
// Cleanup
|
2014-06-04 15:29:23 -04:00
|
|
|
if ( display != NULL ) {
|
|
|
|
if ( main_window != None ) {
|
2015-07-29 03:37:40 -04:00
|
|
|
// We should never hit this code.
|
2015-03-27 15:33:25 -04:00
|
|
|
release_keyboard ( display );
|
2014-05-19 15:02:05 -04:00
|
|
|
XDestroyWindow ( display, main_window );
|
2015-07-29 03:37:40 -04:00
|
|
|
main_window = None;
|
2015-09-26 14:34:34 -04:00
|
|
|
XDestroyIC ( xic );
|
|
|
|
XCloseIM ( xim );
|
2014-05-19 15:02:05 -04:00
|
|
|
}
|
2015-09-26 14:34:34 -04:00
|
|
|
|
2015-09-13 11:29:50 -04:00
|
|
|
if ( sncontext != NULL ) {
|
|
|
|
sn_launchee_context_unref ( sncontext );
|
|
|
|
sncontext = NULL;
|
|
|
|
}
|
|
|
|
if ( sndisplay != NULL ) {
|
|
|
|
sn_display_unref ( sndisplay );
|
|
|
|
sndisplay = NULL;
|
|
|
|
}
|
2015-07-29 03:37:40 -04:00
|
|
|
XCloseDisplay ( display );
|
|
|
|
display = NULL;
|
2014-05-19 15:02:05 -04:00
|
|
|
}
|
2015-07-28 16:22:18 -04:00
|
|
|
|
2014-05-19 15:58:13 -04:00
|
|
|
// Cleaning up memory allocated by the Xresources file.
|
2015-02-03 02:21:59 -05:00
|
|
|
config_xresource_free ();
|
2014-07-21 15:39:24 -04:00
|
|
|
for ( unsigned int i = 0; i < num_switchers; i++ ) {
|
2015-02-17 04:31:59 -05:00
|
|
|
// Switcher keystr is free'ed when needed by config system.
|
2015-09-07 13:10:44 -04:00
|
|
|
if ( switchers[i].sw->keycfg != NULL ) {
|
|
|
|
g_free ( switchers[i].sw->keycfg );
|
|
|
|
switchers[i].sw->keycfg = NULL;
|
2015-03-27 15:28:53 -04:00
|
|
|
}
|
|
|
|
// only used for script dialog.
|
2015-09-07 13:10:44 -04:00
|
|
|
if ( switchers[i].sw->free != NULL ) {
|
|
|
|
switchers[i].sw->free ( switchers[i].sw );
|
2015-02-15 15:15:16 -05:00
|
|
|
}
|
2014-07-21 15:39:24 -04:00
|
|
|
}
|
2014-08-09 05:40:42 -04:00
|
|
|
g_free ( switchers );
|
2015-04-30 16:42:04 -04:00
|
|
|
|
|
|
|
// Cleanup the custom keybinding
|
|
|
|
cleanup_abe ();
|
2015-11-14 07:47:45 -05:00
|
|
|
|
|
|
|
TIMINGS_STOP ()
|
2014-05-19 15:02:05 -04:00
|
|
|
}
|
2014-05-20 05:41:39 -04:00
|
|
|
|
2014-09-23 03:24:24 -04:00
|
|
|
/**
|
|
|
|
* Parse the switcher string, into internal array of type Switcher.
|
|
|
|
*
|
|
|
|
* String is split on separator ','
|
|
|
|
* First the three build-in modi are checked: window, run, ssh
|
|
|
|
* if that fails, a script-switcher is created.
|
|
|
|
*/
|
2014-07-21 15:39:24 -04:00
|
|
|
static void setup_switchers ( void )
|
|
|
|
{
|
2015-01-09 09:54:34 -05:00
|
|
|
char *savept = NULL;
|
2015-01-08 07:16:44 -05:00
|
|
|
// Make a copy, as strtok will modify it.
|
2014-08-09 05:40:42 -04:00
|
|
|
char *switcher_str = g_strdup ( config.switchers );
|
2014-12-02 02:11:53 -05:00
|
|
|
// Split token on ','. This modifies switcher_str.
|
2015-09-19 06:57:48 -04:00
|
|
|
for ( char *token = strtok_r ( switcher_str, ",", &savept ); token != NULL; token = strtok_r ( NULL, ",", &savept ) ) {
|
2015-02-09 13:35:51 -05:00
|
|
|
// Resize and add entry.
|
2015-09-19 06:57:48 -04:00
|
|
|
switchers = (Mode *) g_realloc ( switchers, sizeof ( Mode ) * ( num_switchers + 1 ) );
|
2015-09-07 13:10:44 -04:00
|
|
|
switchers[num_switchers].tb = NULL;
|
2015-02-09 13:35:51 -05:00
|
|
|
|
2014-12-02 02:11:53 -05:00
|
|
|
// Window switcher.
|
2015-09-14 02:57:10 -04:00
|
|
|
#ifdef WINDOW_MODE
|
2014-07-21 15:39:24 -04:00
|
|
|
if ( strcasecmp ( token, "window" ) == 0 ) {
|
2015-09-07 13:10:44 -04:00
|
|
|
switchers[num_switchers].sw = &window_mode;
|
2014-07-21 15:39:24 -04:00
|
|
|
num_switchers++;
|
|
|
|
}
|
2015-09-07 11:41:48 -04:00
|
|
|
else if ( strcasecmp ( token, "windowcd" ) == 0 ) {
|
2015-09-07 13:10:44 -04:00
|
|
|
switchers[num_switchers].sw = &window_mode_cd;
|
2015-09-07 11:41:48 -04:00
|
|
|
num_switchers++;
|
|
|
|
}
|
2015-09-14 02:57:10 -04:00
|
|
|
else
|
|
|
|
#endif // WINDOW_MODE
|
2014-12-02 02:11:53 -05:00
|
|
|
// SSh dialog
|
2015-09-14 02:57:10 -04:00
|
|
|
if ( strcasecmp ( token, "ssh" ) == 0 ) {
|
2015-09-07 13:10:44 -04:00
|
|
|
switchers[num_switchers].sw = &ssh_mode;
|
2014-07-21 15:39:24 -04:00
|
|
|
num_switchers++;
|
|
|
|
}
|
2014-12-02 02:11:53 -05:00
|
|
|
// Run dialog
|
2014-07-21 15:39:24 -04:00
|
|
|
else if ( strcasecmp ( token, "run" ) == 0 ) {
|
2015-09-07 13:10:44 -04:00
|
|
|
switchers[num_switchers].sw = &run_mode;
|
2014-07-21 15:39:24 -04:00
|
|
|
num_switchers++;
|
|
|
|
}
|
2015-11-03 02:31:38 -05:00
|
|
|
else if ( strcasecmp ( token, "drun" ) == 0 ) {
|
|
|
|
switchers[num_switchers].sw = &drun_mode;
|
|
|
|
num_switchers++;
|
|
|
|
}
|
2015-03-30 14:12:22 -04:00
|
|
|
// combi dialog
|
|
|
|
else if ( strcasecmp ( token, "combi" ) == 0 ) {
|
2015-09-07 13:10:44 -04:00
|
|
|
switchers[num_switchers].sw = &combi_mode;
|
2015-03-30 14:12:22 -04:00
|
|
|
num_switchers++;
|
|
|
|
}
|
2014-07-21 15:39:24 -04:00
|
|
|
else {
|
2014-12-02 02:11:53 -05:00
|
|
|
// If not build in, use custom switchers.
|
2015-03-27 15:28:53 -04:00
|
|
|
Switcher *sw = script_switcher_parse_setup ( token );
|
2014-07-21 15:39:24 -04:00
|
|
|
if ( sw != NULL ) {
|
2015-09-07 13:10:44 -04:00
|
|
|
switchers[num_switchers].sw = sw;
|
2014-07-21 15:39:24 -04:00
|
|
|
num_switchers++;
|
|
|
|
}
|
|
|
|
else{
|
2014-12-02 02:11:53 -05:00
|
|
|
// Report error, don't continue.
|
2014-07-21 15:39:24 -04:00
|
|
|
fprintf ( stderr, "Invalid script switcher: %s\n", token );
|
|
|
|
token = NULL;
|
|
|
|
}
|
|
|
|
}
|
2015-02-15 15:15:16 -05:00
|
|
|
// Keybinding.
|
2014-07-21 15:39:24 -04:00
|
|
|
}
|
2014-12-02 02:11:53 -05:00
|
|
|
// Free string that was modified by strtok_r
|
2014-08-09 05:40:42 -04:00
|
|
|
g_free ( switcher_str );
|
2015-02-15 15:15:16 -05:00
|
|
|
// We cannot do this in main loop, as we create pointer to string,
|
|
|
|
// and re-alloc moves that pointer.
|
|
|
|
for ( unsigned int i = 0; i < num_switchers; i++ ) {
|
2015-09-07 13:10:44 -04:00
|
|
|
switchers[i].sw->keycfg = g_strdup_printf ( "key-%s", switchers[i].sw->name );
|
2015-10-16 02:42:01 -04:00
|
|
|
config_parser_add_option ( xrm_String, switchers[i].sw->keycfg, (void * *) &( switchers[i].sw->keystr ), "Keybinding" );
|
2015-02-15 15:15:16 -05:00
|
|
|
}
|
2014-07-21 15:39:24 -04:00
|
|
|
}
|
|
|
|
|
2014-11-05 04:52:10 -05:00
|
|
|
/**
|
|
|
|
* @param display Pointer to the X connection to use.
|
|
|
|
* Load configuration.
|
|
|
|
* Following priority: (current), X, commandline arguments
|
|
|
|
*/
|
|
|
|
static inline void load_configuration ( Display *display )
|
|
|
|
{
|
|
|
|
// Load in config from X resources.
|
2015-02-03 02:21:59 -05:00
|
|
|
config_parse_xresource_options ( display );
|
2014-11-05 04:52:10 -05:00
|
|
|
|
|
|
|
// Parse command line for settings.
|
2015-03-11 13:32:37 -04:00
|
|
|
config_parse_cmd_options ( );
|
2015-02-15 15:15:16 -05:00
|
|
|
}
|
|
|
|
static inline void load_configuration_dynamic ( Display *display )
|
|
|
|
{
|
|
|
|
// Load in config from X resources.
|
|
|
|
config_parse_xresource_options_dynamic ( display );
|
2015-03-11 13:32:37 -04:00
|
|
|
config_parse_cmd_options_dynamic ( );
|
2014-11-05 04:52:10 -05:00
|
|
|
}
|
|
|
|
|
2015-07-29 03:37:40 -04:00
|
|
|
static void release_global_keybindings ()
|
|
|
|
{
|
|
|
|
for ( unsigned int i = 0; i < num_switchers; i++ ) {
|
2015-09-07 13:10:44 -04:00
|
|
|
if ( switchers[i].sw->keystr != NULL ) {
|
2015-07-29 03:37:40 -04:00
|
|
|
// No need to parse key, this should be done when grabbing.
|
2015-09-07 13:10:44 -04:00
|
|
|
if ( switchers[i].sw->keysym != NoSymbol ) {
|
|
|
|
x11_ungrab_key ( display, switchers[i].sw->modmask, switchers[i].sw->keysym );
|
2015-07-29 03:37:40 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
static int grab_global_keybindings ()
|
|
|
|
{
|
|
|
|
int key_bound = FALSE;
|
|
|
|
for ( unsigned int i = 0; i < num_switchers; i++ ) {
|
2015-09-07 13:10:44 -04:00
|
|
|
if ( switchers[i].sw->keystr != NULL ) {
|
2015-09-19 14:59:50 -04:00
|
|
|
x11_parse_key ( switchers[i].sw->keystr, &( switchers[i].sw->modmask ), &( switchers[i].sw->keysym ) );
|
2015-09-07 13:10:44 -04:00
|
|
|
if ( switchers[i].sw->keysym != NoSymbol ) {
|
|
|
|
x11_grab_key ( display, switchers[i].sw->modmask, switchers[i].sw->keysym );
|
2015-07-29 03:37:40 -04:00
|
|
|
key_bound = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return key_bound;
|
|
|
|
}
|
2015-07-29 11:55:26 -04:00
|
|
|
static void print_global_keybindings ()
|
|
|
|
{
|
|
|
|
fprintf ( stdout, "listening to the following keys:\n" );
|
|
|
|
for ( unsigned int i = 0; i < num_switchers; i++ ) {
|
2015-09-07 13:10:44 -04:00
|
|
|
if ( switchers[i].sw->keystr != NULL ) {
|
2015-09-19 06:57:48 -04:00
|
|
|
fprintf ( stdout, "\t* "color_bold "%s"color_reset " on %s\n", switchers[i].sw->name, switchers[i].sw->keystr );
|
2015-07-29 11:55:26 -04:00
|
|
|
}
|
|
|
|
else {
|
2015-09-19 06:57:48 -04:00
|
|
|
fprintf ( stdout, "\t* "color_bold "%s"color_reset " on <unspecified>\n", switchers[i].sw->name );
|
2015-07-29 11:55:26 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-07-28 16:22:18 -04:00
|
|
|
|
|
|
|
static void reload_configuration ()
|
|
|
|
{
|
|
|
|
if ( find_arg ( "-no-config" ) < 0 ) {
|
2015-11-14 12:57:21 -05:00
|
|
|
TICK ()
|
2015-10-10 08:15:27 -04:00
|
|
|
// Reset the color cache
|
|
|
|
color_cache_reset ();
|
2015-07-28 16:22:18 -04:00
|
|
|
// We need to open a new connection to X11, otherwise we get old
|
|
|
|
// configuration
|
2015-07-29 03:37:40 -04:00
|
|
|
Display *temp_display = XOpenDisplay ( display_str );
|
|
|
|
if ( temp_display ) {
|
|
|
|
load_configuration ( temp_display );
|
|
|
|
load_configuration_dynamic ( temp_display );
|
2015-07-28 16:22:18 -04:00
|
|
|
|
|
|
|
// Sanity check
|
2015-10-18 07:40:39 -04:00
|
|
|
config_sanity_check ( temp_display );
|
2015-07-28 16:22:18 -04:00
|
|
|
parse_keys_abe ();
|
2015-07-29 03:37:40 -04:00
|
|
|
XCloseDisplay ( temp_display );
|
|
|
|
}
|
|
|
|
else {
|
2015-09-19 06:57:48 -04:00
|
|
|
fprintf ( stderr, "Failed to get a new connection to the X11 server. No point in continuing.\n" );
|
2015-07-29 03:37:40 -04:00
|
|
|
abort ();
|
2015-07-28 16:22:18 -04:00
|
|
|
}
|
2015-11-14 12:57:21 -05:00
|
|
|
TICK_N ( "Load config" )
|
2015-07-28 16:22:18 -04:00
|
|
|
}
|
2015-02-03 02:21:59 -05:00
|
|
|
}
|
|
|
|
|
2015-08-01 10:10:52 -04:00
|
|
|
/**
|
|
|
|
* Separate thread that handles signals being send to rofi.
|
|
|
|
* Currently it listens for three signals:
|
|
|
|
* * HUP: reload the configuration.
|
|
|
|
* * INT: Quit the program.
|
|
|
|
* * USR1: Dump the current configuration to stdout.
|
|
|
|
*
|
|
|
|
* These messages are relayed to the main thread via a pipe, the write side of the pipe is passed
|
|
|
|
* as argument to this thread.
|
|
|
|
* When receiving a sig-int the thread quits.
|
|
|
|
*/
|
|
|
|
static gpointer rofi_signal_handler_process ( gpointer arg )
|
|
|
|
{
|
|
|
|
int pfd = *( (int *) arg );
|
|
|
|
|
|
|
|
// Create same mask again.
|
|
|
|
sigset_t set;
|
|
|
|
sigemptyset ( &set );
|
|
|
|
sigaddset ( &set, SIGHUP );
|
|
|
|
sigaddset ( &set, SIGINT );
|
|
|
|
sigaddset ( &set, SIGUSR1 );
|
|
|
|
// loop forever.
|
|
|
|
while ( 1 ) {
|
|
|
|
siginfo_t info;
|
|
|
|
int sig = sigwaitinfo ( &set, &info );
|
|
|
|
if ( sig < 0 ) {
|
|
|
|
perror ( "sigwaitinfo failed, lets restart" );
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Send message to main thread.
|
|
|
|
if ( sig == SIGHUP ) {
|
2015-10-19 03:23:06 -04:00
|
|
|
ssize_t t = write ( pfd, "c", 1 );
|
|
|
|
if ( t < 0 ) {
|
|
|
|
fprintf ( stderr, "Failed to send signal to main thread.\n" );
|
|
|
|
}
|
2015-08-01 10:10:52 -04:00
|
|
|
}
|
|
|
|
if ( sig == SIGUSR1 ) {
|
2015-10-19 03:23:06 -04:00
|
|
|
ssize_t t = write ( pfd, "i", 1 );
|
|
|
|
if ( t < 0 ) {
|
|
|
|
fprintf ( stderr, "Failed to send signal to main thread.\n" );
|
|
|
|
}
|
2015-08-01 10:10:52 -04:00
|
|
|
}
|
2015-11-14 13:52:15 -05:00
|
|
|
if ( sig == SIGINT ) {
|
2015-10-19 03:23:06 -04:00
|
|
|
ssize_t t = write ( pfd, "q", 1 );
|
|
|
|
if ( t < 0 ) {
|
|
|
|
fprintf ( stderr, "Failed to send signal to main thread.\n" );
|
|
|
|
}
|
2015-08-01 10:10:52 -04:00
|
|
|
// Close my end and exit.
|
|
|
|
g_thread_exit ( NULL );
|
2015-09-01 14:44:47 -04:00
|
|
|
}
|
2015-08-01 10:10:52 -04:00
|
|
|
}
|
|
|
|
}
|
2015-10-18 13:02:19 -04:00
|
|
|
return NULL;
|
2015-08-01 10:10:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Process X11 events in the main-loop (gui-thread) of the application.
|
|
|
|
*/
|
|
|
|
static void main_loop_x11_event_handler ( void )
|
|
|
|
{
|
|
|
|
// X11 produced an event. Consume them.
|
|
|
|
while ( XPending ( display ) ) {
|
2015-08-31 11:47:26 -04:00
|
|
|
XEvent ev;
|
2015-08-01 10:10:52 -04:00
|
|
|
// Read event, we know this won't block as we checked with XPending.
|
|
|
|
XNextEvent ( display, &ev );
|
2015-09-13 11:29:50 -04:00
|
|
|
if ( sndisplay != NULL ) {
|
|
|
|
sn_display_process_event ( sndisplay, &ev );
|
|
|
|
}
|
2015-08-01 10:10:52 -04:00
|
|
|
// If we get an event that does not belong to a window:
|
|
|
|
// Ignore it.
|
|
|
|
if ( ev.xany.window == None ) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// If keypress, handle it.
|
|
|
|
if ( ev.type == KeyPress ) {
|
|
|
|
handle_keypress ( &ev );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Process signals in the main-loop (gui-thread) of the application.
|
|
|
|
*
|
|
|
|
* returns TRUE when mainloop should be stopped.
|
|
|
|
*/
|
2015-08-02 09:45:52 -04:00
|
|
|
static int main_loop_signal_handler ( char command, int quiet )
|
2015-08-01 10:10:52 -04:00
|
|
|
{
|
|
|
|
if ( command == 'c' ) {
|
|
|
|
if ( !quiet ) {
|
|
|
|
fprintf ( stdout, "Reload configuration\n" );
|
|
|
|
}
|
|
|
|
// Release the keybindings.
|
|
|
|
release_global_keybindings ();
|
|
|
|
// Reload config
|
|
|
|
reload_configuration ();
|
|
|
|
// Grab the possibly new keybindings.
|
|
|
|
grab_global_keybindings ();
|
|
|
|
if ( !quiet ) {
|
|
|
|
print_global_keybindings ();
|
|
|
|
}
|
|
|
|
// We need to flush, otherwise the first key presses are not caught.
|
|
|
|
XFlush ( display );
|
|
|
|
}
|
|
|
|
// Got message to quit.
|
|
|
|
else if ( command == 'q' ) {
|
|
|
|
// Break out of loop.
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
// Got message to print info
|
|
|
|
else if ( command == 'i' ) {
|
|
|
|
xresource_dump ();
|
|
|
|
}
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2015-09-20 05:45:28 -04:00
|
|
|
SwitcherMode switcher_run ( char **input, Switcher *sw )
|
|
|
|
{
|
|
|
|
char *prompt = g_strdup_printf ( "%s:", sw->name );
|
|
|
|
unsigned int selected_line = UINT32_MAX;
|
|
|
|
int mretv = menu ( sw, input, prompt, &selected_line, NULL, NULL );
|
|
|
|
g_free ( prompt );
|
2015-11-23 16:14:26 -05:00
|
|
|
return sw->result ( sw, mretv, input, selected_line );
|
2015-09-20 05:45:28 -04:00
|
|
|
}
|
|
|
|
|
2015-07-28 17:08:12 -04:00
|
|
|
/**
|
|
|
|
* Setup signal handling.
|
|
|
|
* Block all the signals, start a signal processor thread to handle these events.
|
|
|
|
*/
|
|
|
|
static GThread *setup_signal_thread ( int *fd )
|
|
|
|
{
|
|
|
|
// Block all HUP,INT,USR1 signals.
|
|
|
|
// In this and other child (they inherit mask)
|
|
|
|
sigset_t set;
|
|
|
|
sigemptyset ( &set );
|
|
|
|
sigaddset ( &set, SIGHUP );
|
|
|
|
sigaddset ( &set, SIGINT );
|
|
|
|
sigaddset ( &set, SIGUSR1 );
|
|
|
|
sigprocmask ( SIG_BLOCK, &set, NULL );
|
|
|
|
// Create signal handler process.
|
|
|
|
// This will use sigwaitinfo to read signals and forward them back to the main thread again.
|
2015-08-31 11:47:26 -04:00
|
|
|
return g_thread_new ( "signal_process", rofi_signal_handler_process, (void *) fd );
|
2015-07-28 17:08:12 -04:00
|
|
|
}
|
|
|
|
|
2015-09-13 11:29:50 -04:00
|
|
|
static int error_trap_depth = 0;
|
|
|
|
static void error_trap_push ( G_GNUC_UNUSED SnDisplay *display, G_GNUC_UNUSED Display *xdisplay )
|
|
|
|
{
|
|
|
|
++error_trap_depth;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void error_trap_pop ( G_GNUC_UNUSED SnDisplay *display, Display *xdisplay )
|
|
|
|
{
|
|
|
|
if ( error_trap_depth == 0 ) {
|
|
|
|
fprintf ( stderr, "Error trap underflow!\n" );
|
2015-11-14 13:52:15 -05:00
|
|
|
exit ( EXIT_FAILURE );
|
2015-09-13 11:29:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
XSync ( xdisplay, False ); /* get all errors out of the queue */
|
|
|
|
--error_trap_depth;
|
|
|
|
}
|
|
|
|
|
2014-05-22 03:33:32 -04:00
|
|
|
int main ( int argc, char *argv[] )
|
|
|
|
{
|
2015-11-14 07:47:45 -05:00
|
|
|
TIMINGS_START ()
|
|
|
|
|
2015-03-11 13:32:37 -04:00
|
|
|
cmd_set_arguments ( argc, argv );
|
2015-04-05 16:29:26 -04:00
|
|
|
// Quiet flag
|
2015-09-05 13:04:36 -04:00
|
|
|
int quiet = ( find_arg ( "-quiet" ) >= 0 );
|
2015-02-03 02:21:59 -05:00
|
|
|
// Version
|
2015-03-11 13:32:37 -04:00
|
|
|
if ( find_arg ( "-v" ) >= 0 || find_arg ( "-version" ) >= 0 ) {
|
2015-02-03 02:21:59 -05:00
|
|
|
fprintf ( stdout, "Version: "VERSION "\n" );
|
|
|
|
exit ( EXIT_SUCCESS );
|
|
|
|
}
|
|
|
|
|
2015-02-17 04:31:59 -05:00
|
|
|
// Detect if we are in dmenu mode.
|
|
|
|
// This has two possible causes.
|
|
|
|
// 1 the user specifies it on the command-line.
|
2015-09-05 13:04:36 -04:00
|
|
|
int dmenu_mode = FALSE;
|
2015-03-11 13:32:37 -04:00
|
|
|
if ( find_arg ( "-dmenu" ) >= 0 ) {
|
2015-02-17 04:31:59 -05:00
|
|
|
dmenu_mode = TRUE;
|
|
|
|
}
|
|
|
|
// 2 the binary that executed is called dmenu (e.g. symlink to rofi)
|
|
|
|
else{
|
|
|
|
// Get the base name of the executable called.
|
|
|
|
char *base_name = g_path_get_basename ( argv[0] );
|
|
|
|
dmenu_mode = ( strcmp ( base_name, "dmenu" ) == 0 );
|
|
|
|
// Free the basename for dmenu detection.
|
|
|
|
g_free ( base_name );
|
|
|
|
}
|
2015-11-14 07:47:45 -05:00
|
|
|
TICK ()
|
2014-05-20 05:41:39 -04:00
|
|
|
// Get the path to the cache dir.
|
2014-08-09 05:44:06 -04:00
|
|
|
cache_dir = g_get_user_cache_dir ();
|
2014-02-02 04:54:01 -05:00
|
|
|
|
2015-01-31 12:23:17 -05:00
|
|
|
// Create pid file path.
|
2015-02-17 04:31:59 -05:00
|
|
|
const char *path = g_get_user_runtime_dir ();
|
|
|
|
if ( path ) {
|
|
|
|
pidfile = g_build_filename ( path, "rofi.pid", NULL );
|
2015-01-31 12:23:17 -05:00
|
|
|
}
|
2015-10-16 02:42:01 -04:00
|
|
|
config_parser_add_option ( xrm_String, "pid", (void * *) &pidfile, "Pidfile location" );
|
2015-01-31 12:23:17 -05:00
|
|
|
|
2015-11-14 07:47:45 -05:00
|
|
|
TICK ()
|
2014-05-20 05:41:39 -04:00
|
|
|
// Register cleanup function.
|
|
|
|
atexit ( cleanup );
|
2014-05-19 15:02:05 -04:00
|
|
|
|
2015-11-14 07:47:45 -05:00
|
|
|
TICK ()
|
2015-02-09 13:35:51 -05:00
|
|
|
// Get DISPLAY, first env, then argument.
|
2014-11-04 10:37:05 -05:00
|
|
|
display_str = getenv ( "DISPLAY" );
|
2015-03-11 13:32:37 -04:00
|
|
|
find_arg_str ( "-display", &display_str );
|
2014-01-15 03:27:03 -05:00
|
|
|
|
2015-11-22 15:10:39 -05:00
|
|
|
if ( setlocale ( LC_ALL, "" ) == NULL ) {
|
|
|
|
fprintf ( stderr, "Failed to set locale.\n" );
|
2015-11-22 07:57:51 -05:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
2015-11-22 15:10:39 -05:00
|
|
|
|
2015-04-23 16:14:31 -04:00
|
|
|
if ( !XSupportsLocale () ) {
|
|
|
|
fprintf ( stderr, "X11 does not support locales\n" );
|
|
|
|
return 11;
|
|
|
|
}
|
|
|
|
if ( XSetLocaleModifiers ( "@im=none" ) == NULL ) {
|
|
|
|
fprintf ( stderr, "Failed to set locale modifier.\n" );
|
|
|
|
return 10;
|
|
|
|
}
|
2014-06-04 15:29:23 -04:00
|
|
|
if ( !( display = XOpenDisplay ( display_str ) ) ) {
|
2014-03-22 16:04:19 -04:00
|
|
|
fprintf ( stderr, "cannot open display!\n" );
|
2014-01-10 04:35:38 -05:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
2015-11-14 07:47:45 -05:00
|
|
|
TICK_N ( "Open Display" )
|
2015-09-13 11:29:50 -04:00
|
|
|
// startup not.
|
|
|
|
sndisplay = sn_display_new ( display, error_trap_push, error_trap_pop );
|
|
|
|
|
|
|
|
if ( sndisplay != NULL ) {
|
|
|
|
sncontext = sn_launchee_context_new_from_environment ( sndisplay, DefaultScreen ( display ) );
|
|
|
|
}
|
2015-11-14 07:47:45 -05:00
|
|
|
TICK_N ( "Startup Notification" )
|
2015-04-30 16:42:04 -04:00
|
|
|
// Setup keybinding
|
|
|
|
setup_abe ();
|
2015-11-14 07:47:45 -05:00
|
|
|
TICK_N ( "Setup abe" )
|
2015-04-30 16:42:04 -04:00
|
|
|
|
2015-05-31 03:46:39 -04:00
|
|
|
if ( find_arg ( "-no-config" ) < 0 ) {
|
|
|
|
load_configuration ( display );
|
|
|
|
}
|
2015-02-17 04:31:59 -05:00
|
|
|
if ( !dmenu_mode ) {
|
|
|
|
// setup_switchers
|
|
|
|
setup_switchers ();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Add dmenu options.
|
2015-11-14 13:52:15 -05:00
|
|
|
config_parser_add_option ( xrm_Char, "sep", (void * *) &( config.separator ), "Element separator" );
|
2015-02-17 04:31:59 -05:00
|
|
|
}
|
2015-05-31 03:46:39 -04:00
|
|
|
if ( find_arg ( "-no-config" ) < 0 ) {
|
|
|
|
// Reload for dynamic part.
|
|
|
|
load_configuration_dynamic ( display );
|
|
|
|
}
|
2015-07-28 16:22:18 -04:00
|
|
|
|
|
|
|
x11_setup ( display );
|
|
|
|
|
2015-11-14 07:47:45 -05:00
|
|
|
TICK_N ( "X11 Setup " )
|
2015-05-31 03:46:39 -04:00
|
|
|
// Sanity check
|
2015-10-18 07:40:39 -04:00
|
|
|
config_sanity_check ( display );
|
2015-11-14 07:47:45 -05:00
|
|
|
TICK_N ( "Config sanity check" )
|
2015-01-12 13:14:46 -05:00
|
|
|
// Dump.
|
2015-10-15 16:33:44 -04:00
|
|
|
// catch help request
|
|
|
|
if ( find_arg ( "-h" ) >= 0 || find_arg ( "-help" ) >= 0 || find_arg ( "--help" ) >= 0 ) {
|
|
|
|
help ( argc, argv );
|
|
|
|
exit ( EXIT_SUCCESS );
|
|
|
|
}
|
2015-03-11 13:32:37 -04:00
|
|
|
if ( find_arg ( "-dump-xresources" ) >= 0 ) {
|
2015-01-12 13:14:46 -05:00
|
|
|
xresource_dump ();
|
|
|
|
exit ( EXIT_SUCCESS );
|
|
|
|
}
|
2015-04-30 16:42:04 -04:00
|
|
|
// Parse the keybindings.
|
|
|
|
parse_keys_abe ();
|
2015-11-14 07:47:45 -05:00
|
|
|
TICK_N ( "Parse ABE" )
|
2014-09-03 07:07:26 -04:00
|
|
|
char *msg = NULL;
|
2015-03-11 13:32:37 -04:00
|
|
|
if ( find_arg_str ( "-e", &( msg ) ) ) {
|
2015-06-08 17:22:35 -04:00
|
|
|
int markup = FALSE;
|
|
|
|
if ( find_arg ( "-markup" ) >= 0 ) {
|
|
|
|
markup = TRUE;
|
|
|
|
}
|
2015-07-30 02:57:09 -04:00
|
|
|
return show_error_message ( msg, markup );
|
2014-08-27 13:44:15 -04:00
|
|
|
}
|
|
|
|
|
2015-11-14 07:47:45 -05:00
|
|
|
// Create thread pool
|
2015-11-14 12:57:21 -05:00
|
|
|
GError *error = NULL;
|
|
|
|
tpool = g_thread_pool_new ( call_thread, NULL, config.threads, FALSE, &error );
|
|
|
|
if ( error == NULL ) {
|
|
|
|
// Idle threads should stick around for a max of 60 seconds.
|
|
|
|
g_thread_pool_set_max_idle_time ( 60000 );
|
|
|
|
// We are allowed to have
|
|
|
|
g_thread_pool_set_max_threads ( tpool, config.threads, &error );
|
|
|
|
}
|
|
|
|
// If error occured during setup of pool, tell user and exit.
|
|
|
|
if ( error != NULL ) {
|
|
|
|
char *msg = g_strdup_printf ( "Failed to setup thread pool: '%s'", error->message );
|
|
|
|
show_error_message ( msg, FALSE );
|
|
|
|
g_free ( msg );
|
|
|
|
g_error_free ( error );
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
2015-11-14 07:47:45 -05:00
|
|
|
|
|
|
|
TICK_N ( "Setup Threadpool" )
|
2015-02-01 14:15:21 -05:00
|
|
|
// Dmenu mode.
|
|
|
|
if ( dmenu_mode == TRUE ) {
|
2015-09-09 14:01:19 -04:00
|
|
|
normal_window_mode = find_arg ( "-normal-window" ) >= 0;
|
2014-11-09 07:10:24 -05:00
|
|
|
// force off sidebar mode:
|
|
|
|
config.sidebar_mode = FALSE;
|
2014-11-05 04:27:46 -05:00
|
|
|
int retv = run_dmenu ();
|
2014-12-16 15:08:12 -05:00
|
|
|
|
2014-11-10 02:59:39 -05:00
|
|
|
// User canceled the operation.
|
2014-11-05 04:27:46 -05:00
|
|
|
if ( retv == FALSE ) {
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
2015-05-04 04:37:50 -04:00
|
|
|
else if ( retv >= 10 ) {
|
|
|
|
return retv;
|
2015-05-03 07:04:03 -04:00
|
|
|
}
|
2015-02-01 14:15:21 -05:00
|
|
|
return EXIT_SUCCESS;
|
2014-11-05 04:27:46 -05:00
|
|
|
}
|
2015-02-01 14:15:21 -05:00
|
|
|
|
|
|
|
// flags to run immediately and exit
|
|
|
|
char *sname = NULL;
|
2015-03-11 13:32:37 -04:00
|
|
|
if ( find_arg_str ( "-show", &sname ) == TRUE ) {
|
2014-07-21 15:39:24 -04:00
|
|
|
int index = switcher_get ( sname );
|
|
|
|
if ( index >= 0 ) {
|
2015-07-28 16:22:18 -04:00
|
|
|
run_switcher ( index );
|
2014-07-21 15:39:24 -04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
fprintf ( stderr, "The %s switcher has not been enabled\n", sname );
|
|
|
|
}
|
|
|
|
}
|
2014-06-04 15:29:23 -04:00
|
|
|
else{
|
2014-01-23 14:33:13 -05:00
|
|
|
// Daemon mode, Listen to key presses..
|
2015-07-29 03:37:40 -04:00
|
|
|
if ( !grab_global_keybindings () ) {
|
2015-11-14 12:57:21 -05:00
|
|
|
fprintf ( stderr, "Rofi was launched in daemon mode, but no key-binding was specified.\n" );
|
2015-04-05 16:29:26 -04:00
|
|
|
fprintf ( stderr, "Please check the manpage on how to specify a key-binding.\n" );
|
|
|
|
fprintf ( stderr, "The following modi are enabled and keys can be specified:\n" );
|
|
|
|
for ( unsigned int i = 0; i < num_switchers; i++ ) {
|
2015-09-19 14:59:50 -04:00
|
|
|
fprintf ( stderr, "\t* "color_bold "%s"color_reset ": -key-%s <key>\n", switchers[i].sw->name, switchers[i].sw->name );
|
2015-04-05 16:29:26 -04:00
|
|
|
}
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
if ( !quiet ) {
|
2015-07-29 12:16:06 -04:00
|
|
|
fprintf ( stdout, "Rofi is launched in daemon mode.\n" );
|
2015-07-29 11:55:26 -04:00
|
|
|
print_global_keybindings ();
|
2014-07-21 15:39:24 -04:00
|
|
|
}
|
2014-11-05 04:52:10 -05:00
|
|
|
|
2015-07-28 16:22:18 -04:00
|
|
|
// Create a pipe to communicate between signal thread an main thread.
|
|
|
|
int pfds[2];
|
2015-07-28 17:08:12 -04:00
|
|
|
if ( pipe ( pfds ) != 0 ) {
|
|
|
|
char * msg = g_strdup_printf ( "Failed to start rofi: '<i>%s</i>'", strerror ( errno ) );
|
|
|
|
show_error_message ( msg, TRUE );
|
|
|
|
g_free ( msg );
|
|
|
|
exit ( EXIT_FAILURE );
|
|
|
|
}
|
|
|
|
GThread *pid_signal_proc = setup_signal_thread ( &( pfds[1] ) );
|
2015-07-28 16:22:18 -04:00
|
|
|
|
2015-09-13 11:29:50 -04:00
|
|
|
// done starting deamon.
|
|
|
|
|
|
|
|
if ( sncontext != NULL ) {
|
|
|
|
sn_launchee_context_complete ( sncontext );
|
|
|
|
}
|
2014-11-25 06:57:34 -05:00
|
|
|
// Application Main loop.
|
|
|
|
// This listens in the background for any events on the Xserver
|
|
|
|
// catching global key presses.
|
2015-07-28 16:22:18 -04:00
|
|
|
// It also listens from messages from the signal process.
|
|
|
|
XSelectInput ( display, DefaultRootWindow ( display ), KeyPressMask );
|
|
|
|
XFlush ( display );
|
|
|
|
int x11_fd = ConnectionNumber ( display );
|
2014-06-04 15:29:23 -04:00
|
|
|
for (;; ) {
|
2015-07-28 16:22:18 -04:00
|
|
|
fd_set in_fds;
|
2015-08-01 10:10:52 -04:00
|
|
|
// Create a File Description Set containing x11_fd, and signal pipe
|
2015-07-28 16:22:18 -04:00
|
|
|
FD_ZERO ( &in_fds );
|
|
|
|
FD_SET ( x11_fd, &in_fds );
|
|
|
|
FD_SET ( pfds[0], &in_fds );
|
|
|
|
|
2015-08-02 09:45:52 -04:00
|
|
|
// Wait for X Event or a message on signal pipe
|
2015-07-28 16:22:18 -04:00
|
|
|
if ( select ( MAX ( x11_fd, pfds[0] ) + 1, &in_fds, 0, 0, NULL ) >= 0 ) {
|
2015-08-01 10:10:52 -04:00
|
|
|
// X11
|
2015-07-28 16:22:18 -04:00
|
|
|
if ( FD_ISSET ( x11_fd, &in_fds ) ) {
|
2015-08-02 09:45:52 -04:00
|
|
|
main_loop_x11_event_handler ();
|
2015-07-28 16:22:18 -04:00
|
|
|
}
|
2015-08-01 10:10:52 -04:00
|
|
|
// Signal Pipe
|
2015-07-28 16:22:18 -04:00
|
|
|
if ( FD_ISSET ( pfds[0], &in_fds ) ) {
|
|
|
|
// The signal thread send us a message. Process it.
|
2015-10-19 03:23:06 -04:00
|
|
|
char c;
|
|
|
|
ssize_t r = read ( pfds[0], &c, 1 );
|
|
|
|
if ( r < 0 ) {
|
|
|
|
fprintf ( stderr, "Failed to read data from signal thread: %s\n", strerror ( errno ) );
|
|
|
|
}
|
2015-08-01 10:10:52 -04:00
|
|
|
// Process the signal in the main_loop.
|
2015-10-19 03:23:06 -04:00
|
|
|
else if ( main_loop_signal_handler ( c, quiet ) ) {
|
2015-07-28 16:22:18 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2014-03-22 16:04:19 -04:00
|
|
|
}
|
2014-01-23 12:24:28 -05:00
|
|
|
}
|
2015-07-29 03:37:40 -04:00
|
|
|
|
|
|
|
release_global_keybindings ();
|
2015-07-28 16:22:18 -04:00
|
|
|
// Join the signal process thread. (at this point it should have exited).
|
|
|
|
// this also unrefs (de-allocs) the GThread object.
|
|
|
|
g_thread_join ( pid_signal_proc );
|
|
|
|
// Close pipe
|
|
|
|
close ( pfds[0] );
|
|
|
|
close ( pfds[1] );
|
2015-07-30 02:57:09 -04:00
|
|
|
if ( !quiet ) {
|
2015-07-29 11:55:26 -04:00
|
|
|
fprintf ( stdout, "Quit from daemon mode.\n" );
|
|
|
|
}
|
2014-01-23 12:24:28 -05:00
|
|
|
}
|
2014-01-23 14:33:13 -05:00
|
|
|
|
2014-01-23 12:24:28 -05:00
|
|
|
return EXIT_SUCCESS;
|
2012-09-01 09:49:31 -04:00
|
|
|
}
|