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-02-12 16:34:06 -05: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.
|
2014-01-10 04:35:38 -05:00
|
|
|
*
|
2013-07-19 10:55:01 -04: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>
|
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-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-02-09 13:35:51 -05:00
|
|
|
#include "x11-helper.h"
|
|
|
|
#include "xrmoptions.h"
|
|
|
|
// Switchers.
|
2015-02-12 16:26:28 -05:00
|
|
|
#include "dialogs/run-dialog.h"
|
|
|
|
#include "dialogs/ssh-dialog.h"
|
|
|
|
#include "dialogs/dmenu-dialog.h"
|
|
|
|
#include "dialogs/script-dialog.h"
|
|
|
|
#include "dialogs/window-dialog.h"
|
2012-06-29 13:10:13 -04:00
|
|
|
|
2014-08-21 13:03:21 -04:00
|
|
|
#define LINE_MARGIN 3
|
2014-01-13 03:42:52 -05:00
|
|
|
|
2015-02-09 13:35:51 -05:00
|
|
|
typedef enum _MainLoopEvent
|
|
|
|
{
|
|
|
|
ML_XEVENT,
|
|
|
|
ML_TIMEOUT
|
|
|
|
} MainLoopEvent;
|
|
|
|
|
2015-02-03 02:00:33 -05:00
|
|
|
// Pidfile.
|
2015-02-15 15:15:16 -05:00
|
|
|
char *pidfile = NULL;
|
|
|
|
const char *cache_dir = NULL;
|
|
|
|
Display *display = NULL;
|
|
|
|
char *display_str = NULL;
|
2015-02-09 13:35:51 -05:00
|
|
|
|
2015-02-15 15:15:16 -05:00
|
|
|
const char *netatom_names[] = { EWMH_ATOMS ( ATOM_CHAR ) };
|
|
|
|
Atom netatoms[NUM_NETATOMS];
|
2015-01-17 12:27:41 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Structure defining a switcher.
|
|
|
|
* It consists of a name, callback and if enabled
|
|
|
|
* a textbox for the sidebar-mode.
|
|
|
|
*/
|
2014-07-21 15:39:24 -04:00
|
|
|
typedef struct _Switcher
|
|
|
|
{
|
2015-01-17 12:27:41 -05:00
|
|
|
// Name (max 31 char long)
|
2015-02-04 03:37:34 -05:00
|
|
|
char name[32];
|
2015-01-17 12:27:41 -05:00
|
|
|
// Switcher callback.
|
2015-02-04 03:37:34 -05:00
|
|
|
switcher_callback cb;
|
2015-01-17 12:27:41 -05:00
|
|
|
// Callback data.
|
2015-02-04 03:37:34 -05:00
|
|
|
void *cb_data;
|
|
|
|
switcher_callback_free_data cb_data_free;
|
2015-01-17 12:27:41 -05:00
|
|
|
// Textbox used in the sidebar-mode.
|
2015-02-04 03:37:34 -05:00
|
|
|
textbox *tb;
|
2015-02-15 15:15:16 -05:00
|
|
|
// Keybindings (keysym and modmask)
|
|
|
|
char * keycfg;
|
|
|
|
char * keystr;
|
|
|
|
KeySym keysym;
|
|
|
|
unsigned int modmask;
|
2014-07-21 15:39:24 -04:00
|
|
|
} Switcher;
|
|
|
|
|
2015-01-17 12:27:41 -05:00
|
|
|
// Array of switchers.
|
|
|
|
Switcher *switchers = NULL;
|
|
|
|
// Number of switchers.
|
2014-08-22 03:43:26 -04:00
|
|
|
unsigned int num_switchers = 0;
|
2015-01-17 12:27:41 -05:00
|
|
|
// Current selected switcher.
|
2014-11-09 07:10:24 -05:00
|
|
|
unsigned int curr_switcher = 0;
|
2014-07-21 15:39:24 -04:00
|
|
|
|
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++ ) {
|
2014-07-21 15:39:24 -04:00
|
|
|
if ( strcmp ( switchers[i].name, name ) == 0 ) {
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2014-03-22 16:04:19 -04:00
|
|
|
void catch_exit ( __attribute__( ( unused ) ) int sig )
|
2012-06-29 13:10:13 -04:00
|
|
|
{
|
2014-06-04 15:29:23 -04:00
|
|
|
while ( 0 < waitpid ( -1, NULL, WNOHANG ) ) {
|
2014-03-22 16:04:19 -04:00
|
|
|
;
|
|
|
|
}
|
2012-06-29 13:10:13 -04:00
|
|
|
}
|
|
|
|
|
2015-02-09 13:35:51 -05:00
|
|
|
Window main_window = None;
|
|
|
|
GC gc = NULL;
|
|
|
|
Colormap map = None;
|
2015-01-20 17:32:57 -05:00
|
|
|
XVisualInfo vinfo;
|
2012-06-29 13:10:13 -04:00
|
|
|
|
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.
|
|
|
|
struct timeval tv;
|
|
|
|
fd_set in_fds;
|
|
|
|
// Create a File Description Set containing x11_fd
|
|
|
|
FD_ZERO ( &in_fds );
|
|
|
|
FD_SET ( x11_fd, &in_fds );
|
|
|
|
|
|
|
|
// Set our timer. 200ms is a decent delay
|
|
|
|
tv.tv_usec = 200000;
|
|
|
|
tv.tv_sec = 0;
|
|
|
|
// 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
|
|
|
|
2014-12-02 04:04:28 -05:00
|
|
|
static void menu_hide_arrow_text ( int filtered_lines, int selected, int max_elements,
|
2014-12-16 15:08:12 -05:00
|
|
|
textbox *arrowbox_top, textbox *arrowbox_bottom )
|
2014-05-14 14:56:38 -04:00
|
|
|
{
|
2014-06-04 15:29:23 -04:00
|
|
|
if ( arrowbox_top == NULL || arrowbox_bottom == NULL ) {
|
2014-05-19 15:58:13 -04:00
|
|
|
return;
|
2014-05-14 14:56:38 -04:00
|
|
|
}
|
2014-05-19 15:58:13 -04:00
|
|
|
int page = ( filtered_lines > 0 ) ? selected / max_elements : 0;
|
|
|
|
int npages = ( filtered_lines > 0 ) ? ( ( filtered_lines + max_elements - 1 ) / max_elements ) : 1;
|
2014-06-04 15:29:23 -04:00
|
|
|
if ( !( page != 0 && npages > 1 ) ) {
|
2014-05-19 15:58:13 -04:00
|
|
|
textbox_hide ( arrowbox_top );
|
|
|
|
}
|
2014-06-04 15:29:23 -04:00
|
|
|
if ( !( ( npages - 1 ) != page && npages > 1 ) ) {
|
2014-05-19 15:58:13 -04:00
|
|
|
textbox_hide ( arrowbox_bottom );
|
2014-05-14 14:56:38 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-02 04:04:28 -05:00
|
|
|
static void menu_set_arrow_text ( int filtered_lines, int selected, int max_elements,
|
2014-12-16 15:08:12 -05:00
|
|
|
textbox *arrowbox_top, textbox *arrowbox_bottom )
|
2014-05-14 13:51:48 -04:00
|
|
|
{
|
2014-06-04 15:29:23 -04:00
|
|
|
if ( arrowbox_top == NULL || arrowbox_bottom == NULL ) {
|
2014-05-19 15:58:13 -04:00
|
|
|
return;
|
|
|
|
}
|
2014-06-04 15:29:23 -04:00
|
|
|
if ( filtered_lines == 0 || max_elements == 0 ) {
|
2014-06-02 15:51:22 -04:00
|
|
|
return;
|
|
|
|
}
|
2014-05-19 15:58:13 -04:00
|
|
|
int page = ( filtered_lines > 0 ) ? selected / max_elements : 0;
|
|
|
|
int npages = ( filtered_lines > 0 ) ? ( ( filtered_lines + max_elements - 1 ) / max_elements ) : 1;
|
|
|
|
int entry = selected % max_elements;
|
2014-06-04 15:29:23 -04:00
|
|
|
if ( page != 0 && npages > 1 ) {
|
2014-05-19 15:58:13 -04:00
|
|
|
textbox_show ( arrowbox_top );
|
2014-05-25 17:58:05 -04:00
|
|
|
textbox_font ( arrowbox_top, ( entry != 0 ) ? NORMAL : HIGHLIGHT );
|
2015-01-21 04:04:15 -05:00
|
|
|
textbox_draw ( arrowbox_top );
|
2014-05-14 14:56:38 -04:00
|
|
|
}
|
2014-06-04 15:29:23 -04:00
|
|
|
if ( ( npages - 1 ) != page && npages > 1 ) {
|
2014-05-19 15:58:13 -04:00
|
|
|
textbox_show ( arrowbox_bottom );
|
2014-05-25 17:58:05 -04:00
|
|
|
textbox_font ( arrowbox_bottom, ( entry != ( max_elements - 1 ) ) ? NORMAL : HIGHLIGHT );
|
2015-01-21 04:04:15 -05:00
|
|
|
textbox_draw ( arrowbox_bottom );
|
2014-05-14 14:56:38 -04:00
|
|
|
}
|
2014-05-14 13:51:48 -04:00
|
|
|
}
|
2012-07-18 08:14:13 -04:00
|
|
|
|
2012-06-29 13:10:13 -04:00
|
|
|
|
2014-01-20 18:20:09 -05:00
|
|
|
|
2014-07-05 13:47:55 -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];
|
|
|
|
}
|
|
|
|
|
2014-08-21 13:03:21 -04:00
|
|
|
static int dist ( const char *s, const char *t, int *d, int ls, int lt, int i, int j )
|
2014-07-05 13:47:55 -04:00
|
|
|
{
|
2014-08-21 13:03:21 -04:00
|
|
|
if ( d[i * ( lt + 1 ) + j] >= 0 ) {
|
|
|
|
return d[i * ( lt + 1 ) + j];
|
2014-07-05 13:47:55 -04:00
|
|
|
}
|
|
|
|
|
2014-08-21 13:03:21 -04:00
|
|
|
int x;
|
|
|
|
if ( i == ls ) {
|
|
|
|
x = lt - j;
|
|
|
|
}
|
|
|
|
else if ( j == lt ) {
|
|
|
|
x = ls - i;
|
|
|
|
}
|
|
|
|
else if ( s[i] == t[j] ) {
|
|
|
|
x = dist ( s, t, d, ls, lt, i + 1, j + 1 );
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
x = dist ( s, t, d, ls, lt, i + 1, j + 1 );
|
2014-07-05 13:47:55 -04:00
|
|
|
|
2014-08-21 13:03:21 -04:00
|
|
|
int y;
|
|
|
|
if ( ( y = dist ( s, t, d, ls, lt, i, j + 1 ) ) < x ) {
|
|
|
|
x = y;
|
2014-07-05 13:47:55 -04:00
|
|
|
}
|
2014-08-21 13:03:21 -04:00
|
|
|
if ( ( y = dist ( s, t, d, ls, lt, i + 1, j ) ) < x ) {
|
|
|
|
x = y;
|
2014-07-05 13:47:55 -04:00
|
|
|
}
|
2014-08-21 13:03:21 -04:00
|
|
|
x++;
|
|
|
|
}
|
|
|
|
return d[i * ( lt + 1 ) + j] = x;
|
|
|
|
}
|
|
|
|
static int levenshtein ( const char *s, const char *t )
|
|
|
|
{
|
2015-01-07 16:11:12 -05:00
|
|
|
int ls = strlen ( s ), lt = strlen ( t );
|
|
|
|
size_t array_length = ( ls + 1 ) * ( lt + 1 );
|
2015-01-10 09:13:10 -05:00
|
|
|
|
2015-01-07 16:11:12 -05:00
|
|
|
// For some reason Coverity does not get that I initialize the
|
|
|
|
// array in for loop.
|
2015-02-11 17:07:55 -05:00
|
|
|
int d[array_length];
|
2015-01-07 16:11:12 -05:00
|
|
|
for ( size_t i = 0; i < array_length; i++ ) {
|
2014-08-21 13:03:21 -04:00
|
|
|
d[i] = -1;
|
2014-07-05 13:47:55 -04:00
|
|
|
}
|
2014-08-21 13:03:21 -04:00
|
|
|
|
2015-02-11 17:07:55 -05:00
|
|
|
return dist ( s, t, d, ls, lt, 0, 0 );
|
2014-07-05 13:47:55 -04:00
|
|
|
}
|
|
|
|
|
2014-07-19 15:11:27 -04:00
|
|
|
Window create_window ( Display *display )
|
|
|
|
{
|
2015-01-20 17:32:57 -05:00
|
|
|
XSetWindowAttributes attr;
|
|
|
|
attr.colormap = map;
|
|
|
|
attr.border_pixel = color_get ( display, config.menu_bc );
|
|
|
|
attr.background_pixel = color_get ( display, config.menu_bg );
|
|
|
|
|
|
|
|
Window box = XCreateWindow ( display, DefaultRootWindow ( display ),
|
|
|
|
0, 0, 200, 100, config.menu_bw, vinfo.depth, InputOutput,
|
|
|
|
vinfo.visual, CWColormap | CWBorderPixel | CWBackPixel, &attr );
|
2014-08-23 06:47:09 -04:00
|
|
|
XSelectInput ( display, box, ExposureMask | ButtonPressMask );
|
2014-07-19 15:11:27 -04:00
|
|
|
|
|
|
|
gc = XCreateGC ( display, box, 0, 0 );
|
|
|
|
XSetLineAttributes ( display, gc, 2, LineOnOffDash, CapButt, JoinMiter );
|
|
|
|
XSetForeground ( display, gc, color_get ( display, config.menu_bc ) );
|
|
|
|
// make it an unmanaged window
|
2015-02-09 13:35:51 -05:00
|
|
|
window_set_atom_prop ( display, box, netatoms[_NET_WM_STATE], &netatoms[_NET_WM_STATE_ABOVE], 1 );
|
2014-07-19 15:11:27 -04:00
|
|
|
XSetWindowAttributes sattr;
|
|
|
|
sattr.override_redirect = True;
|
|
|
|
XChangeWindowAttributes ( display, box, CWOverrideRedirect, &sattr );
|
|
|
|
|
|
|
|
// Set the WM_NAME
|
|
|
|
XStoreName ( display, box, "rofi" );
|
|
|
|
|
2015-02-09 13:35:51 -05:00
|
|
|
x11_set_window_opacity ( display, box, config.window_opacity );
|
2014-07-19 15:11:27 -04:00
|
|
|
return box;
|
|
|
|
}
|
|
|
|
|
2014-08-26 14:25:00 -04:00
|
|
|
// State of the menu.
|
|
|
|
|
|
|
|
typedef struct MenuState
|
|
|
|
{
|
2014-11-09 07:10:24 -05:00
|
|
|
unsigned int menu_lines;
|
2014-08-26 14:25:00 -04:00
|
|
|
unsigned int max_elements;
|
|
|
|
unsigned int max_rows;
|
|
|
|
unsigned int columns;
|
|
|
|
|
|
|
|
// window width,height
|
|
|
|
unsigned int w, h;
|
|
|
|
int x, y;
|
|
|
|
unsigned int element_width;
|
|
|
|
|
|
|
|
// Update/Refilter list.
|
|
|
|
int update;
|
|
|
|
int refilter;
|
|
|
|
|
|
|
|
// Entries
|
|
|
|
textbox *text;
|
|
|
|
textbox *prompt_tb;
|
2015-01-12 18:01:16 -05:00
|
|
|
textbox *case_indicator;
|
2014-08-26 14:25:00 -04:00
|
|
|
textbox *arrowbox_top;
|
|
|
|
textbox *arrowbox_bottom;
|
|
|
|
textbox **boxes;
|
|
|
|
char **filtered;
|
|
|
|
int *distance;
|
|
|
|
int *line_map;
|
|
|
|
|
|
|
|
unsigned int num_lines;
|
|
|
|
|
|
|
|
// Selected element.
|
|
|
|
unsigned int selected;
|
|
|
|
unsigned int filtered_lines;
|
|
|
|
// Last offset in paginating.
|
|
|
|
unsigned int last_offset;
|
|
|
|
|
|
|
|
KeySym prev_key;
|
|
|
|
Time last_button_press;
|
|
|
|
|
|
|
|
int quit;
|
|
|
|
int init;
|
|
|
|
// Return state
|
|
|
|
int *selected_line;
|
|
|
|
MenuReturn retv;
|
2014-09-05 11:14:50 -04:00
|
|
|
char **lines;
|
2014-08-26 14:25:00 -04:00
|
|
|
}MenuState;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @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 );
|
2014-08-26 14:25:00 -04:00
|
|
|
textbox_free ( state->arrowbox_bottom );
|
|
|
|
textbox_free ( state->arrowbox_top );
|
|
|
|
|
|
|
|
for ( unsigned int i = 0; i < state->max_elements; i++ ) {
|
|
|
|
textbox_free ( state->boxes[i] );
|
|
|
|
}
|
|
|
|
|
|
|
|
g_free ( state->boxes );
|
|
|
|
g_free ( state->filtered );
|
|
|
|
g_free ( state->line_map );
|
|
|
|
g_free ( state->distance );
|
|
|
|
}
|
|
|
|
|
2014-07-19 14:42:22 -04:00
|
|
|
/**
|
|
|
|
* @param x [out] the calculated x position.
|
|
|
|
* @param y [out] the calculated y position.
|
|
|
|
* @param mon the workarea.
|
|
|
|
* @param h the required height of the window.
|
|
|
|
* @param w the required width of the window.
|
|
|
|
*/
|
2014-08-26 14:25:00 -04:00
|
|
|
static void calculate_window_position ( MenuState *state, const workarea *mon )
|
2014-07-19 14:42:22 -04:00
|
|
|
{
|
|
|
|
// Default location is center.
|
2014-08-26 14:25:00 -04:00
|
|
|
state->y = mon->y + ( mon->h - state->h - config.menu_bw * 2 ) / 2;
|
|
|
|
state->x = mon->x + ( mon->w - state->w - config.menu_bw * 2 ) / 2;
|
2014-07-19 14:42:22 -04:00
|
|
|
// Determine window location
|
|
|
|
switch ( config.location )
|
|
|
|
{
|
|
|
|
case WL_NORTH_WEST:
|
2014-08-26 14:25:00 -04:00
|
|
|
state->x = mon->x;
|
2014-07-19 14:42:22 -04:00
|
|
|
case WL_NORTH:
|
2014-08-26 14:25:00 -04:00
|
|
|
state->y = mon->y;
|
2014-07-19 14:42:22 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case WL_NORTH_EAST:
|
2014-08-26 14:25:00 -04:00
|
|
|
state->y = mon->y;
|
2014-07-19 14:42:22 -04:00
|
|
|
case WL_EAST:
|
2014-08-26 14:25:00 -04:00
|
|
|
state->x = mon->x + mon->w - state->w - config.menu_bw * 2;
|
2014-07-19 14:42:22 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case WL_EAST_SOUTH:
|
2014-08-26 14:25:00 -04:00
|
|
|
state->x = mon->x + mon->w - state->w - config.menu_bw * 2;
|
2014-07-19 14:42:22 -04:00
|
|
|
case WL_SOUTH:
|
2014-08-26 14:25:00 -04:00
|
|
|
state->y = mon->y + mon->h - state->h - config.menu_bw * 2;
|
2014-07-19 14:42:22 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case WL_SOUTH_WEST:
|
2014-08-26 14:25:00 -04:00
|
|
|
state->y = mon->y + mon->h - state->h - config.menu_bw * 2;
|
2014-07-19 14:42:22 -04:00
|
|
|
case WL_WEST:
|
2014-08-26 14:25:00 -04:00
|
|
|
state->x = 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.
|
|
|
|
* @param num_lines the number of entries passed to 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.
|
2014-11-09 07:10:24 -05:00
|
|
|
state->max_rows = MIN ( state->menu_lines,
|
2014-08-26 14:25:00 -04:00
|
|
|
(unsigned int) (
|
|
|
|
( state->num_lines + ( state->columns - state->num_lines % state->columns ) %
|
|
|
|
state->columns ) / ( state->columns )
|
|
|
|
) );
|
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 ) {
|
|
|
|
state->columns = ( 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 );
|
|
|
|
state->w += 2 * config.padding + 4; // 4 = 2*SIDE_MARGIN
|
2014-08-11 14:21:29 -04:00
|
|
|
// Compensate for border width.
|
2014-08-26 14:25:00 -04:00
|
|
|
state->w -= config.menu_bw * 2;
|
2014-08-11 14:21:29 -04:00
|
|
|
}
|
|
|
|
else{
|
|
|
|
// Calculate as float to stop silly, big rounding down errors.
|
2014-08-26 14:25:00 -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
|
|
|
// Compensate for border width.
|
2014-08-26 14:25:00 -04:00
|
|
|
state->w -= config.menu_bw * 2;
|
2014-08-11 14:21:29 -04:00
|
|
|
}
|
|
|
|
|
2014-09-03 07:07:26 -04:00
|
|
|
if ( state->columns > 0 ) {
|
2014-08-27 13:44:15 -04:00
|
|
|
state->element_width = state->w - ( 2 * ( config.padding ) );
|
|
|
|
// Divide by the # columns
|
|
|
|
state->element_width = ( state->element_width - ( state->columns - 1 ) * 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-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-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 )
|
|
|
|
{
|
|
|
|
state->selected = state->selected < state->filtered_lines - 1 ? MIN (
|
|
|
|
state->filtered_lines - 1, state->selected + 1 ) : 0;
|
|
|
|
state->update = TRUE;
|
|
|
|
}
|
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.
|
|
|
|
*/
|
|
|
|
static void menu_keyboard_navigation ( MenuState *state, KeySym key, unsigned int modstate )
|
|
|
|
{
|
2015-02-15 15:15:16 -05:00
|
|
|
// pressing one of the global key bindings closes the switcher. this allows fast closing of the
|
|
|
|
// menu if an item is not selected
|
|
|
|
for ( unsigned int i = 0; i < num_switchers; i++ ) {
|
|
|
|
if ( switchers[i].keystr != NULL ) {
|
|
|
|
if ( ( switchers[i].modmask == AnyModifier || modstate & ( switchers[i].keysym ) ) &&
|
|
|
|
switchers[i].keysym == key ) {
|
|
|
|
state->retv = MENU_CANCEL;
|
|
|
|
state->quit = TRUE;
|
|
|
|
state->prev_key = key;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( key == XK_Escape ) {
|
2014-08-26 14:25:00 -04:00
|
|
|
state->retv = MENU_CANCEL;
|
|
|
|
state->quit = TRUE;
|
|
|
|
}
|
|
|
|
// Up, Ctrl-p or Shift-Tab
|
|
|
|
else if ( key == XK_Up || ( key == XK_Tab && modstate & ShiftMask ) ||
|
|
|
|
( key == XK_p && modstate & ControlMask ) ) {
|
2015-01-14 16:14:15 -05:00
|
|
|
menu_nav_up ( state );
|
2014-08-26 14:25:00 -04:00
|
|
|
}
|
|
|
|
else if ( key == XK_Tab ) {
|
|
|
|
if ( state->filtered_lines == 1 ) {
|
|
|
|
if ( state->filtered[state->selected] ) {
|
|
|
|
state->retv = MENU_OK;
|
|
|
|
*( state->selected_line ) = state->line_map[state->selected];
|
|
|
|
state->quit = 1;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
fprintf ( stderr, "We should never hit this." );
|
|
|
|
abort ();
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
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{
|
|
|
|
state->selected = state->selected < state->filtered_lines - 1 ? MIN (
|
|
|
|
state->filtered_lines - 1, state->selected + 1 ) : 0;
|
|
|
|
state->update = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Down, Ctrl-n
|
|
|
|
else if ( key == XK_Down ||
|
|
|
|
( key == XK_n && ( modstate & ControlMask ) ) ) {
|
2015-01-14 16:14:15 -05:00
|
|
|
menu_nav_down ( state );
|
2014-08-26 14:25:00 -04:00
|
|
|
}
|
|
|
|
else if ( key == XK_Page_Up && ( modstate & ControlMask ) ) {
|
2015-01-14 16:14:15 -05:00
|
|
|
menu_nav_left ( state );
|
2014-08-26 14:25:00 -04:00
|
|
|
}
|
|
|
|
else if ( key == XK_Page_Down && ( modstate & ControlMask ) ) {
|
2015-01-14 16:14:15 -05:00
|
|
|
menu_nav_right ( state );
|
2014-08-26 14:25:00 -04:00
|
|
|
}
|
|
|
|
else if ( key == XK_Page_Up ) {
|
|
|
|
if ( state->selected < state->max_elements ) {
|
|
|
|
state->selected = 0;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
state->selected -= ( state->max_elements );
|
|
|
|
}
|
|
|
|
state->update = TRUE;
|
|
|
|
}
|
|
|
|
else if ( key == XK_Page_Down ) {
|
|
|
|
state->selected += ( state->max_elements );
|
|
|
|
if ( state->selected >= state->filtered_lines ) {
|
|
|
|
state->selected = state->filtered_lines - 1;
|
|
|
|
}
|
|
|
|
state->update = TRUE;
|
|
|
|
}
|
|
|
|
else if ( key == XK_Home || key == XK_KP_Home ) {
|
|
|
|
state->selected = 0;
|
|
|
|
state->update = TRUE;
|
|
|
|
}
|
|
|
|
else if ( key == XK_End || key == XK_KP_End ) {
|
|
|
|
state->selected = state->filtered_lines - 1;
|
|
|
|
state->update = TRUE;
|
|
|
|
}
|
2014-09-05 11:14:50 -04:00
|
|
|
else if ( key == XK_space && ( modstate & ControlMask ) == ControlMask ) {
|
2014-09-03 13:40:24 -04:00
|
|
|
// If a valid item is selected, return that..
|
|
|
|
if ( state->selected < state->filtered_lines && state->filtered[state->selected] != NULL ) {
|
2014-09-05 11:14:50 -04:00
|
|
|
textbox_text ( state->text, state->lines[state->line_map[state->selected]] );
|
|
|
|
textbox_cursor_end ( state->text );
|
|
|
|
state->update = TRUE;
|
2014-09-03 13:40:24 -04:00
|
|
|
state->refilter = TRUE;
|
|
|
|
}
|
|
|
|
}
|
2014-08-26 14:25:00 -04:00
|
|
|
state->prev_key = key;
|
|
|
|
}
|
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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
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
|
|
|
if ( xbe->window == state->arrowbox_top->window ) {
|
|
|
|
// Page up.
|
|
|
|
if ( state->selected < state->max_rows ) {
|
|
|
|
state->selected = 0;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
state->selected -= state->max_elements;
|
|
|
|
}
|
|
|
|
state->update = TRUE;
|
|
|
|
}
|
|
|
|
else if ( xbe->window == state->arrowbox_bottom->window ) {
|
|
|
|
// Page down.
|
|
|
|
state->selected += state->max_elements;
|
|
|
|
if ( state->selected >= state->filtered_lines ) {
|
|
|
|
state->selected = state->filtered_lines - 1;
|
|
|
|
}
|
|
|
|
state->update = TRUE;
|
|
|
|
}
|
|
|
|
else {
|
2014-11-10 03:19:50 -05:00
|
|
|
for ( unsigned int i = 0; config.sidebar_mode == TRUE && i < num_switchers; i++ ) {
|
|
|
|
if ( switchers[i].tb->window == ( xbe->window ) ) {
|
|
|
|
*( state->selected_line ) = i;
|
|
|
|
state->retv = MENU_QUICK_SWITCH;
|
|
|
|
state->quit = TRUE;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2014-08-26 14:25:00 -04:00
|
|
|
for ( unsigned int i = 0; i < state->max_elements; i++ ) {
|
|
|
|
if ( ( xbe->window ) == ( state->boxes[i]->window ) ) {
|
|
|
|
// 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
|
|
|
|
state->quit = TRUE;
|
|
|
|
}
|
|
|
|
state->last_button_press = xbe->time;
|
2015-01-23 03:12:48 -05:00
|
|
|
break;
|
2014-08-26 14:25:00 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-12 08:13:46 -05:00
|
|
|
static void menu_refilter ( MenuState *state, char **lines, menu_match_cb mmc, void *mmc_data,
|
2015-01-13 05:48:38 -05:00
|
|
|
int sorting, int case_sensitive )
|
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;
|
|
|
|
char **tokens = tokenize ( state->text->text, case_sensitive );
|
2014-08-26 14:25:00 -04:00
|
|
|
|
|
|
|
// input changed
|
2015-01-15 11:59:59 -05:00
|
|
|
for ( unsigned int i = 0; i < state->num_lines; i++ ) {
|
2015-01-12 08:13:46 -05:00
|
|
|
int match = mmc ( tokens, lines[i], case_sensitive, i, mmc_data );
|
2014-08-26 14:25:00 -04:00
|
|
|
|
|
|
|
// If each token was matched, add it to list.
|
|
|
|
if ( match ) {
|
|
|
|
state->line_map[j] = i;
|
|
|
|
if ( sorting ) {
|
|
|
|
state->distance[i] = levenshtein ( state->text->text, lines[i] );
|
|
|
|
}
|
|
|
|
// Try to look-up the selected line and highlight that.
|
|
|
|
// This is needed 'hack' to fix the dmenu 'next row' modi.
|
|
|
|
// int to unsigned int is valid because we check negativeness of
|
|
|
|
// selected_line
|
|
|
|
if ( state->init == TRUE && ( state->selected_line ) != NULL &&
|
|
|
|
( *( state->selected_line ) ) >= 0 &&
|
|
|
|
( (unsigned int) ( *( state->selected_line ) ) ) == i ) {
|
|
|
|
state->selected = j;
|
|
|
|
state->init = FALSE;
|
|
|
|
}
|
|
|
|
j++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( sorting ) {
|
|
|
|
qsort_r ( state->line_map, j, sizeof ( int ), lev_sort, state->distance );
|
|
|
|
}
|
|
|
|
// Update the filtered list.
|
2015-01-15 11:59:59 -05:00
|
|
|
for ( unsigned int i = 0; i < j; i++ ) {
|
2014-08-26 14:25:00 -04:00
|
|
|
state->filtered[i] = lines[state->line_map[i]];
|
|
|
|
}
|
2015-01-15 11:59:59 -05:00
|
|
|
for ( unsigned int i = j; i < state->num_lines; i++ ) {
|
2014-08-26 14:25:00 -04:00
|
|
|
state->filtered[i] = NULL;
|
|
|
|
}
|
2014-05-14 14:56:38 -04:00
|
|
|
|
2014-08-26 14:25:00 -04:00
|
|
|
// Cleanup + bookkeeping.
|
|
|
|
state->filtered_lines = j;
|
|
|
|
g_strfreev ( tokens );
|
|
|
|
}
|
|
|
|
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->filtered[i] = lines[i];
|
|
|
|
state->line_map[i] = i;
|
|
|
|
}
|
|
|
|
state->filtered_lines = state->num_lines;
|
|
|
|
}
|
|
|
|
state->selected = MIN ( state->selected, state->filtered_lines - 1 );
|
2014-08-11 14:21:29 -04:00
|
|
|
|
2014-08-26 14:25:00 -04:00
|
|
|
state->refilter = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void menu_draw ( MenuState *state )
|
|
|
|
{
|
|
|
|
unsigned int i, offset = 0;
|
|
|
|
|
|
|
|
// selected row is always visible.
|
|
|
|
// If selected is visible do not scroll.
|
|
|
|
if ( ( ( state->selected - ( state->last_offset ) ) < ( state->max_elements ) )
|
|
|
|
&& ( state->selected >= ( state->last_offset ) ) ) {
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
for ( i = 0; i < state->max_elements; i++ ) {
|
|
|
|
if ( ( i + offset ) >= state->num_lines || state->filtered[i + offset] == NULL ) {
|
|
|
|
textbox_font ( state->boxes[i], NORMAL );
|
|
|
|
textbox_text ( state->boxes[i], "" );
|
|
|
|
}
|
|
|
|
else{
|
2015-01-12 13:14:46 -05:00
|
|
|
TextBoxFontType type = ( ( ( i % state->max_rows ) & 1 ) == 0 ) ? NORMAL : ALT;
|
2014-08-26 14:25:00 -04:00
|
|
|
char *text = state->filtered[i + offset];
|
2015-01-12 13:14:46 -05:00
|
|
|
TextBoxFontType tbft = ( i + offset ) == state->selected ? HIGHLIGHT : type;
|
2014-08-26 14:25:00 -04:00
|
|
|
textbox_font ( state->boxes[i], tbft );
|
|
|
|
textbox_text ( state->boxes[i], text );
|
|
|
|
}
|
|
|
|
|
|
|
|
textbox_draw ( state->boxes[i] );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void menu_update ( MenuState *state )
|
|
|
|
{
|
|
|
|
menu_hide_arrow_text ( state->filtered_lines, state->selected,
|
|
|
|
state->max_elements, state->arrowbox_top,
|
|
|
|
state->arrowbox_bottom );
|
2015-01-12 18:01:16 -05:00
|
|
|
textbox_draw ( state->case_indicator );
|
2014-08-26 14:25:00 -04:00
|
|
|
textbox_draw ( state->prompt_tb );
|
2015-01-12 18:01:16 -05:00
|
|
|
textbox_draw ( state->text );
|
2014-08-26 14:25:00 -04:00
|
|
|
menu_draw ( state );
|
|
|
|
menu_set_arrow_text ( state->filtered_lines, state->selected,
|
|
|
|
state->max_elements, state->arrowbox_top,
|
|
|
|
state->arrowbox_bottom );
|
|
|
|
// Why do we need the specian -1?
|
2015-02-10 01:42:40 -05:00
|
|
|
int line_height = textbox_get_height ( state->text );
|
|
|
|
XDrawLine ( display, main_window, gc, ( config.padding ),
|
|
|
|
line_height + ( config.padding ) + ( LINE_MARGIN ) / 2,
|
|
|
|
state->w - ( ( config.padding ) ) - 1,
|
|
|
|
line_height + ( config.padding ) + ( LINE_MARGIN ) / 2 );
|
2014-11-09 07:10:24 -05:00
|
|
|
|
|
|
|
if ( config.sidebar_mode == TRUE ) {
|
|
|
|
int line_height = textbox_get_height ( state->text );
|
|
|
|
XDrawLine ( display, main_window, gc,
|
|
|
|
( config.padding ),
|
2014-11-10 02:59:39 -05:00
|
|
|
state->h - line_height - ( config.padding ) - 1,
|
2014-11-09 07:10:24 -05:00
|
|
|
state->w - ( ( config.padding ) ) - 1,
|
2014-11-10 02:59:39 -05:00
|
|
|
state->h - line_height - ( config.padding ) - 1 );
|
2015-02-01 09:00:01 -05:00
|
|
|
for ( unsigned int j = 0; j < num_switchers; j++ ) {
|
2014-11-10 02:59:39 -05:00
|
|
|
textbox_draw ( switchers[j].tb );
|
2014-11-09 07:10:24 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-26 14:25:00 -04:00
|
|
|
state->update = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @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-02-09 14:20:51 -05:00
|
|
|
textbox_insert ( state->text, state->text->cursor, text );
|
2015-02-09 14:23:55 -05:00
|
|
|
textbox_cursor ( state->text, state->text->cursor + dl - 1 );
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
MenuReturn menu ( char **lines, unsigned int num_lines, char **input, char *prompt, Time *time,
|
|
|
|
int *shift, menu_match_cb mmc, void *mmc_data, int *selected_line, int sorting )
|
|
|
|
{
|
|
|
|
MenuState state = {
|
|
|
|
.selected_line = selected_line,
|
|
|
|
.retv = MENU_CANCEL,
|
|
|
|
.prev_key = 0,
|
|
|
|
.last_button_press = 0,
|
|
|
|
.last_offset = 0,
|
|
|
|
.num_lines = num_lines,
|
|
|
|
.distance = NULL,
|
|
|
|
.init = TRUE,
|
|
|
|
.quit = FALSE,
|
|
|
|
.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.
|
|
|
|
.refilter = TRUE,
|
2014-09-03 13:40:24 -04:00
|
|
|
.update = FALSE,
|
|
|
|
.lines = lines
|
2014-08-26 14:25:00 -04:00
|
|
|
};
|
|
|
|
unsigned int i;
|
|
|
|
workarea mon;
|
|
|
|
|
|
|
|
// 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 );
|
|
|
|
}
|
2014-11-11 17:07:57 -05:00
|
|
|
// Get active monitor size.
|
2015-02-09 13:35:51 -05:00
|
|
|
monitor_active ( display, &mon );
|
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-01-21 04:04:15 -05:00
|
|
|
state.case_indicator = textbox_create ( main_window, &vinfo, map, TB_AUTOHEIGHT | TB_AUTOWIDTH,
|
2015-01-12 18:01:16 -05:00
|
|
|
( config.padding ), ( config.padding ),
|
|
|
|
0, 0,
|
|
|
|
NORMAL, "*" );
|
|
|
|
|
2015-01-13 06:16:32 -05:00
|
|
|
// Height of a row.
|
|
|
|
int line_height = textbox_get_height ( state.case_indicator );
|
|
|
|
if ( config.menu_lines == 0 ) {
|
|
|
|
// Autosize it.
|
|
|
|
int h = mon.h - config.padding * 2 - LINE_MARGIN - config.menu_bw * 2;
|
|
|
|
int r = ( h ) / ( line_height * config.element_height ) - 1 - config.sidebar_mode;
|
|
|
|
state.menu_lines = r;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
state.menu_lines = config.menu_lines;
|
|
|
|
}
|
|
|
|
menu_calculate_rows_columns ( &state );
|
|
|
|
menu_calculate_window_and_element_width ( &state, &mon );
|
|
|
|
|
|
|
|
// Prompt box.
|
2015-01-21 04:04:15 -05:00
|
|
|
state.prompt_tb = textbox_create ( main_window, &vinfo, map, TB_AUTOHEIGHT | TB_AUTOWIDTH,
|
2015-01-13 05:48:38 -05:00
|
|
|
( config.padding ),
|
2015-01-12 18:01:16 -05:00
|
|
|
( config.padding ),
|
2014-08-26 14:25:00 -04:00
|
|
|
0, 0, NORMAL, prompt );
|
2015-01-13 06:16:32 -05:00
|
|
|
// Entry box
|
2015-02-10 01:42:40 -05:00
|
|
|
int entrybox_width = state.w
|
|
|
|
- ( 2 * ( config.padding ) )
|
2015-01-13 06:16:32 -05:00
|
|
|
- textbox_get_width ( state.prompt_tb )
|
|
|
|
- textbox_get_width ( state.case_indicator );
|
2014-08-26 14:25:00 -04:00
|
|
|
|
2015-01-21 04:04:15 -05:00
|
|
|
state.text = textbox_create ( main_window, &vinfo, map, TB_AUTOHEIGHT | TB_EDITABLE,
|
2015-01-13 05:48:38 -05:00
|
|
|
( config.padding ) + textbox_get_width ( state.prompt_tb ),
|
2014-08-26 14:25:00 -04:00
|
|
|
( config.padding ),
|
2015-01-13 06:16:32 -05:00
|
|
|
entrybox_width, 0,
|
2014-08-26 14:25:00 -04:00
|
|
|
NORMAL,
|
|
|
|
( input != NULL ) ? *input : "" );
|
2015-01-13 05:48:38 -05:00
|
|
|
// Move indicator to end.
|
|
|
|
textbox_move ( state.case_indicator,
|
2015-01-13 06:16:32 -05:00
|
|
|
config.padding + textbox_get_width ( state.prompt_tb ) + entrybox_width,
|
2015-01-13 05:48:38 -05:00
|
|
|
0 );
|
2014-08-26 14:25:00 -04:00
|
|
|
|
|
|
|
textbox_show ( state.text );
|
|
|
|
textbox_show ( state.prompt_tb );
|
|
|
|
|
2015-01-12 18:01:16 -05:00
|
|
|
if ( config.case_sensitive ) {
|
|
|
|
textbox_show ( state.case_indicator );
|
|
|
|
}
|
|
|
|
|
2014-10-30 12:53:22 -04:00
|
|
|
int element_height = 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-02-10 01:42:40 -05:00
|
|
|
int y_offset = config.padding + line_height;
|
|
|
|
int x_offset = config.padding;
|
2014-10-30 12:53:22 -04:00
|
|
|
|
2014-08-26 14:25:00 -04:00
|
|
|
for ( i = 0; i < state.max_elements; i++ ) {
|
2015-02-12 01:55:23 -05:00
|
|
|
unsigned int ex = ( ( i ) / state.max_rows ) * ( state.element_width + LINE_MARGIN );
|
|
|
|
unsigned int ey = ( ( i ) % state.max_rows ) * element_height + LINE_MARGIN;
|
2014-07-19 15:11:27 -04:00
|
|
|
|
2015-01-21 04:04:15 -05:00
|
|
|
state.boxes[i] = textbox_create ( main_window, &vinfo, map, 0,
|
2015-02-11 17:07:55 -05:00
|
|
|
ex + x_offset, ey + y_offset,
|
2014-10-30 12:53:22 -04:00
|
|
|
state.element_width, element_height, NORMAL, "" );
|
2014-08-26 14:25:00 -04:00
|
|
|
textbox_show ( state.boxes[i] );
|
2014-01-10 04:35:38 -05:00
|
|
|
}
|
2014-05-14 14:56:38 -04:00
|
|
|
// Arrows
|
2015-01-21 04:04:15 -05:00
|
|
|
state.arrowbox_top = textbox_create ( main_window, &vinfo, map, TB_AUTOHEIGHT | TB_AUTOWIDTH,
|
2015-02-10 01:42:40 -05:00
|
|
|
( config.padding ), ( config.padding ),
|
|
|
|
0, 0, NORMAL,
|
|
|
|
"↑" );
|
2015-01-21 04:04:15 -05:00
|
|
|
state.arrowbox_bottom = textbox_create ( main_window, &vinfo, map, TB_AUTOHEIGHT | TB_AUTOWIDTH,
|
2015-02-10 01:42:40 -05:00
|
|
|
( config.padding ), ( config.padding ),
|
|
|
|
0, 0, NORMAL,
|
|
|
|
"↓" );
|
|
|
|
|
|
|
|
textbox_move ( state.arrowbox_top,
|
|
|
|
state.w - config.padding - state.arrowbox_top->w,
|
|
|
|
config.padding + line_height + LINE_MARGIN );
|
|
|
|
textbox_move ( state.arrowbox_bottom,
|
|
|
|
state.w - config.padding - state.arrowbox_bottom->w,
|
|
|
|
config.padding + state.max_rows * element_height + LINE_MARGIN );
|
2012-08-23 21:28:39 -04:00
|
|
|
|
2014-01-10 04:35:38 -05:00
|
|
|
// filtered list
|
2014-08-26 14:25:00 -04:00
|
|
|
state.filtered = (char * *) g_malloc0_n ( state.num_lines, sizeof ( char* ) );
|
|
|
|
state.line_map = g_malloc0_n ( state.num_lines, sizeof ( int ) );
|
2014-08-03 11:05:06 -04:00
|
|
|
if ( sorting ) {
|
2014-08-26 14:25:00 -04:00
|
|
|
state.distance = (int *) g_malloc0_n ( state.num_lines, sizeof ( int ) );
|
2014-07-05 13:47:55 -04:00
|
|
|
}
|
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.
|
2014-10-30 12:53:22 -04:00
|
|
|
state.h = line_height + element_height * state.max_rows + ( config.padding ) * 2 + LINE_MARGIN;
|
2015-02-10 01:42:40 -05:00
|
|
|
|
2014-11-09 07:10:24 -05:00
|
|
|
// Add entry
|
|
|
|
if ( config.sidebar_mode == TRUE ) {
|
|
|
|
state.h += line_height + LINE_MARGIN;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sidebar mode.
|
|
|
|
if ( config.menu_lines == 0 ) {
|
|
|
|
state.h = mon.h - config.menu_bw * 2;
|
|
|
|
}
|
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.
|
2014-08-26 14:25:00 -04:00
|
|
|
calculate_window_position ( &state, &mon );
|
2014-11-09 07:10:24 -05:00
|
|
|
|
|
|
|
if ( config.sidebar_mode == TRUE ) {
|
|
|
|
int line_height = textbox_get_height ( state.text );
|
|
|
|
int width = ( state.w - ( 2 * ( config.padding ) ) ) / num_switchers;
|
2015-02-01 09:00:01 -05:00
|
|
|
for ( unsigned int j = 0; j < num_switchers; j++ ) {
|
2015-01-21 04:04:15 -05:00
|
|
|
switchers[j].tb = textbox_create ( main_window, &vinfo, map, TB_CENTER,
|
2014-11-12 11:49:13 -05:00
|
|
|
config.padding + j * width, state.h - line_height - config.padding,
|
|
|
|
width, line_height, ( j == curr_switcher ) ? HIGHLIGHT : NORMAL, switchers[j].name );
|
2014-11-09 07:10:24 -05:00
|
|
|
textbox_show ( switchers[j].tb );
|
|
|
|
}
|
|
|
|
}
|
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 );
|
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;
|
|
|
|
// The cast to unsigned in here is valid, we checked if selected_line > 0.
|
|
|
|
// So its maximum range is 0-2³¹, well within the num_lines range.
|
|
|
|
if ( ( *( state.selected_line ) ) >= 0 && (unsigned int) ( *( state.selected_line ) ) <= state.num_lines ) {
|
|
|
|
state.selected = *( state.selected_line );
|
|
|
|
}
|
|
|
|
|
|
|
|
state.quit = FALSE;
|
|
|
|
menu_refilter ( &state, lines, mmc, mmc_data, sorting, config.case_sensitive );
|
|
|
|
|
|
|
|
int x11_fd = ConnectionNumber ( display );
|
|
|
|
int has_keyboard = take_keyboard ( display, main_window );
|
|
|
|
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).
|
|
|
|
if ( !has_keyboard || ( state.refilter && state.num_lines > config.lazy_filter_limit ) ) {
|
|
|
|
mle = wait_for_xevent_or_timeout ( display, x11_fd );
|
|
|
|
// Whatever happened, try to get keyboard.
|
|
|
|
has_keyboard = take_keyboard ( display, main_window );
|
|
|
|
}
|
|
|
|
// If not in lazy mode, refilter.
|
|
|
|
if ( state.num_lines <= config.lazy_filter_limit ) {
|
|
|
|
if ( state.refilter ) {
|
|
|
|
menu_refilter ( &state, lines, mmc, mmc_data, sorting, config.case_sensitive );
|
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 ) {
|
|
|
|
menu_refilter ( &state, lines, mmc, mmc_data, sorting, config.case_sensitive );
|
|
|
|
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 );
|
2014-04-24 12:03:27 -04:00
|
|
|
|
2015-01-29 11:37:12 -05:00
|
|
|
// Handle event.
|
|
|
|
if ( ev.type == Expose ) {
|
|
|
|
while ( XCheckTypedEvent ( display, Expose, &ev ) ) {
|
|
|
|
;
|
2014-01-16 03:21:48 -05:00
|
|
|
}
|
2015-01-29 11:37:12 -05:00
|
|
|
state.update = TRUE;
|
|
|
|
}
|
|
|
|
// 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 {
|
|
|
|
if ( time ) {
|
|
|
|
*time = ev.xkey.time;
|
|
|
|
}
|
2014-02-01 08:03:23 -05:00
|
|
|
|
2015-01-29 11:37:12 -05:00
|
|
|
KeySym key = XkbKeycodeToKeysym ( display, ev.xkey.keycode, 0, 0 );
|
2014-01-10 04:35:38 -05:00
|
|
|
|
2015-01-29 11:37:12 -05:00
|
|
|
// Handling of paste
|
|
|
|
if ( ( ( ( ev.xkey.state & ControlMask ) == ControlMask ) && key == XK_v ) ) {
|
|
|
|
XConvertSelection ( display, ( ev.xkey.state & ShiftMask ) ?
|
|
|
|
XA_PRIMARY : netatoms[CLIPBOARD],
|
|
|
|
netatoms[UTF8_STRING], netatoms[UTF8_STRING], main_window, CurrentTime );
|
|
|
|
}
|
|
|
|
else if ( key == XK_Insert ) {
|
|
|
|
XConvertSelection ( display, ( ev.xkey.state & ShiftMask ) ?
|
|
|
|
XA_PRIMARY : netatoms[CLIPBOARD],
|
|
|
|
netatoms[UTF8_STRING], netatoms[UTF8_STRING], main_window, CurrentTime );
|
|
|
|
}
|
2015-02-06 02:45:21 -05:00
|
|
|
else if ( ( ( ev.xkey.state & ShiftMask ) == ShiftMask ) && key == XK_Left ) {
|
2015-01-29 11:37:12 -05:00
|
|
|
state.retv = MENU_PREVIOUS;
|
|
|
|
*( state.selected_line ) = 0;
|
|
|
|
state.quit = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// Menu navigation.
|
|
|
|
else if ( ( ( ev.xkey.state & ShiftMask ) == ShiftMask ) &&
|
2015-02-06 02:45:21 -05:00
|
|
|
key == XK_Right ) {
|
2015-01-29 11:37:12 -05:00
|
|
|
state.retv = MENU_NEXT;
|
|
|
|
*( state.selected_line ) = 0;
|
|
|
|
state.quit = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// Toggle case sensitivity.
|
|
|
|
else if ( key == XK_grave || key == XK_dead_grave
|
|
|
|
|| key == XK_acute ) {
|
|
|
|
config.case_sensitive = !config.case_sensitive;
|
|
|
|
*( state.selected_line ) = 0;
|
|
|
|
state.refilter = TRUE;
|
|
|
|
state.update = TRUE;
|
|
|
|
if ( config.case_sensitive ) {
|
|
|
|
textbox_show ( state.case_indicator );
|
2015-01-18 11:18:07 -05:00
|
|
|
}
|
2015-01-29 11:37:12 -05:00
|
|
|
else {
|
|
|
|
textbox_hide ( state.case_indicator );
|
2015-01-18 11:18:07 -05:00
|
|
|
}
|
2015-01-29 11:37:12 -05:00
|
|
|
}
|
|
|
|
// Switcher short-cut
|
|
|
|
else if ( ( ( ev.xkey.state & Mod1Mask ) == Mod1Mask ) &&
|
|
|
|
key >= XK_1 && key <= XK_9 ) {
|
|
|
|
*( state.selected_line ) = ( key - XK_1 );
|
|
|
|
state.retv = MENU_QUICK_SWITCH;
|
|
|
|
state.quit = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// Special delete entry command.
|
|
|
|
else if ( ( ( ev.xkey.state & ShiftMask ) == ShiftMask ) &&
|
|
|
|
key == XK_Delete ) {
|
|
|
|
if ( state.filtered[state.selected] != NULL ) {
|
|
|
|
*( state.selected_line ) = state.line_map[state.selected];
|
|
|
|
state.retv = MENU_ENTRY_DELETE;
|
2015-01-18 11:18:07 -05:00
|
|
|
state.quit = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
2015-01-29 11:37:12 -05:00
|
|
|
}
|
|
|
|
else{
|
|
|
|
int rc = textbox_keypress ( state.text, &ev );
|
|
|
|
// Row is accepted.
|
|
|
|
if ( rc < 0 ) {
|
|
|
|
if ( shift != NULL ) {
|
|
|
|
( *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..
|
|
|
|
if ( state.selected < state.filtered_lines && state.filtered[state.selected] != NULL ) {
|
|
|
|
*( 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.
|
|
|
|
else if ( rc > 0 ) {
|
|
|
|
state.refilter = TRUE;
|
|
|
|
state.update = TRUE;
|
|
|
|
}
|
|
|
|
// Other keys.
|
|
|
|
else{
|
|
|
|
// unhandled key
|
|
|
|
menu_keyboard_navigation ( &state, key, ev.xkey.state );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} while ( XCheckTypedEvent ( display, KeyPress, &ev ) );
|
2014-01-10 04:35:38 -05:00
|
|
|
}
|
2014-04-24 12:03:27 -04:00
|
|
|
}
|
2015-01-29 11:37:12 -05:00
|
|
|
|
2015-01-30 12:01:25 -05:00
|
|
|
release_keyboard ( display );
|
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
|
|
|
|
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
|
|
|
|
|
|
|
// 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-01-04 07:24:08 -05:00
|
|
|
textbox_free ( switchers[j].tb );
|
|
|
|
switchers[j].tb = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-10 03:19:50 -05:00
|
|
|
return retv;
|
2012-06-29 13:10:13 -04:00
|
|
|
}
|
|
|
|
|
2015-02-03 02:21:59 -05:00
|
|
|
void error_dialog ( const char *msg )
|
2014-08-27 13:44:15 -04:00
|
|
|
{
|
2014-09-03 07:07:26 -04:00
|
|
|
MenuState state = {
|
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,
|
2014-08-27 13:44:15 -04:00
|
|
|
.distance = NULL,
|
|
|
|
.init = FALSE,
|
|
|
|
.quit = FALSE,
|
2014-09-03 07:07:26 -04:00
|
|
|
.filtered_lines = 0,
|
|
|
|
.columns = 0,
|
|
|
|
.update = TRUE,
|
2014-08-27 13:44:15 -04:00
|
|
|
};
|
2014-09-03 07:07:26 -04:00
|
|
|
workarea mon;
|
2014-08-27 13:44:15 -04:00
|
|
|
// Get active monitor size.
|
2015-02-09 13:35:51 -05:00
|
|
|
monitor_active ( display, &mon );
|
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 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
menu_calculate_window_and_element_width ( &state, &mon );
|
2014-09-03 07:07:26 -04:00
|
|
|
state.max_elements = 0;
|
2014-08-27 13:44:15 -04:00
|
|
|
|
2015-01-21 04:04:15 -05:00
|
|
|
state.text = textbox_create ( main_window, &vinfo, map, TB_AUTOHEIGHT,
|
2014-08-27 13:44:15 -04:00
|
|
|
( config.padding ),
|
|
|
|
( config.padding ),
|
|
|
|
( state.w - ( 2 * ( config.padding ) ) ),
|
|
|
|
1,
|
|
|
|
NORMAL,
|
|
|
|
( msg != NULL ) ? msg : "" );
|
|
|
|
textbox_show ( state.text );
|
|
|
|
int line_height = textbox_get_height ( state.text );
|
|
|
|
|
|
|
|
// resize window vertically to suit
|
2014-09-03 07:07:26 -04:00
|
|
|
state.h = line_height + ( config.padding ) * 2;
|
2014-08-27 13:44:15 -04:00
|
|
|
|
|
|
|
// Move the window to the correct x,y position.
|
|
|
|
calculate_window_position ( &state, &mon );
|
2014-11-15 10:26:55 -05:00
|
|
|
XMoveResizeWindow ( display, main_window, state.x, state.y, state.w, state.h );
|
2014-08-27 13:44:15 -04:00
|
|
|
|
|
|
|
// Display it.
|
|
|
|
XMapRaised ( display, main_window );
|
|
|
|
|
2015-01-29 11:37:12 -05:00
|
|
|
int x11_fd = ConnectionNumber ( display );
|
|
|
|
int has_keyboard = take_keyboard ( display, main_window );
|
|
|
|
while ( !state.quit ) {
|
|
|
|
// Update if requested.
|
|
|
|
if ( state.update ) {
|
|
|
|
textbox_draw ( state.text );
|
|
|
|
state.update = FALSE;
|
|
|
|
}
|
|
|
|
// Wait for event.
|
|
|
|
XEvent ev;
|
|
|
|
MainLoopEvent mle = ML_XEVENT;
|
|
|
|
if ( !has_keyboard ) {
|
|
|
|
mle = wait_for_xevent_or_timeout ( display, x11_fd );
|
|
|
|
has_keyboard = take_keyboard ( display, main_window );
|
|
|
|
}
|
|
|
|
if ( mle == ML_TIMEOUT ) {
|
|
|
|
// Loop.
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
XNextEvent ( display, &ev );
|
2014-08-27 13:44:15 -04:00
|
|
|
|
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 );
|
2014-08-27 13:44:15 -04:00
|
|
|
}
|
2014-08-28 04:09:49 -04:00
|
|
|
|
2014-01-14 00:36:12 -05:00
|
|
|
|
2015-01-08 07:16:44 -05:00
|
|
|
/**
|
|
|
|
* Start dmenu mode.
|
|
|
|
*/
|
2014-08-05 03:07:41 -04:00
|
|
|
static int run_dmenu ()
|
|
|
|
{
|
2015-02-01 09:17:43 -05:00
|
|
|
// Create pid file
|
2015-02-03 02:00:33 -05:00
|
|
|
create_pid_file ( pidfile );
|
2015-02-01 09:17:43 -05:00
|
|
|
|
2015-01-21 04:04:15 -05:00
|
|
|
// Request truecolor visual.
|
2015-02-13 02:26:23 -05:00
|
|
|
create_visual_and_colormap ( display );
|
2015-01-21 04:04:15 -05:00
|
|
|
textbox_setup ( &vinfo, map,
|
|
|
|
config.menu_bg, config.menu_bg_alt, config.menu_fg,
|
|
|
|
config.menu_hlbg,
|
|
|
|
config.menu_hlfg );
|
2014-08-05 03:07:41 -04:00
|
|
|
char *input = NULL;
|
|
|
|
|
|
|
|
// Dmenu modi has a return state.
|
2015-02-11 17:07:55 -05:00
|
|
|
int ret_state = dmenu_switcher_dialog ( &input );
|
2014-08-05 03:07:41 -04:00
|
|
|
|
2014-08-09 05:40:42 -04:00
|
|
|
g_free ( input );
|
2014-08-05 03:07:41 -04:00
|
|
|
|
|
|
|
// Cleanup font setup.
|
2015-01-21 04:04:15 -05:00
|
|
|
textbox_cleanup ( );
|
|
|
|
|
|
|
|
if ( map != None ) {
|
|
|
|
XFreeColormap ( display, map );
|
2015-02-09 13:35:51 -05:00
|
|
|
map = None;
|
2015-01-21 04:04:15 -05:00
|
|
|
}
|
2014-08-05 03:07:41 -04:00
|
|
|
return ret_state;
|
|
|
|
}
|
|
|
|
|
2014-05-24 05:02:13 -04:00
|
|
|
static void run_switcher ( int do_fork, SwitcherMode mode )
|
2014-01-20 16:58:10 -05:00
|
|
|
{
|
|
|
|
// we fork because it's technically possible to have multiple window
|
|
|
|
// lists up at once on a zaphod multihead X setup.
|
|
|
|
// this also happens to isolate the Xft font stuff in a child process
|
|
|
|
// that gets cleaned up every time. that library shows some valgrind
|
|
|
|
// strangeness...
|
2014-06-04 15:29:23 -04:00
|
|
|
if ( do_fork == TRUE ) {
|
|
|
|
if ( fork () ) {
|
2014-08-07 15:42:16 -04:00
|
|
|
return;
|
2014-03-22 16:04:19 -04:00
|
|
|
}
|
2014-01-14 00:36:12 -05:00
|
|
|
|
2014-11-04 10:37:05 -05:00
|
|
|
display = XOpenDisplay ( display_str );
|
2014-03-22 16:04:19 -04:00
|
|
|
XSync ( display, True );
|
2014-01-20 16:58:10 -05:00
|
|
|
}
|
2015-02-04 03:37:34 -05:00
|
|
|
// Create pid file to avoid multiple instances.
|
2015-02-03 02:00:33 -05:00
|
|
|
create_pid_file ( pidfile );
|
2015-02-04 03:37:34 -05:00
|
|
|
// Create the colormap and the main visual.
|
2015-02-13 02:26:23 -05:00
|
|
|
create_visual_and_colormap ( display );
|
2015-01-20 17:32:57 -05:00
|
|
|
|
2014-05-26 03:00:14 -04:00
|
|
|
// Because of the above fork, we want to do this here.
|
|
|
|
// Make sure this is isolated to its own thread.
|
2015-01-21 04:04:15 -05:00
|
|
|
textbox_setup ( &vinfo, map,
|
|
|
|
config.menu_bg, config.menu_bg_alt, config.menu_fg,
|
|
|
|
config.menu_hlbg,
|
|
|
|
config.menu_hlfg );
|
2014-07-21 15:39:24 -04:00
|
|
|
// Otherwise check if requested mode is enabled.
|
2014-08-05 03:07:41 -04:00
|
|
|
if ( switchers[mode].cb != NULL ) {
|
2015-02-04 03:37:34 -05:00
|
|
|
char *input = NULL;
|
2014-07-21 15:39:24 -04:00
|
|
|
do {
|
2014-08-25 14:02:48 -04:00
|
|
|
SwitcherMode retv;
|
2014-01-14 00:36:12 -05:00
|
|
|
|
2014-11-09 07:10:24 -05:00
|
|
|
curr_switcher = mode;
|
|
|
|
retv = switchers[mode].cb ( &input, switchers[mode].cb_data );
|
2014-07-21 15:39:24 -04:00
|
|
|
// Find next enabled
|
|
|
|
if ( retv == NEXT_DIALOG ) {
|
|
|
|
mode = ( mode + 1 ) % num_switchers;
|
|
|
|
}
|
2014-11-11 15:50:16 -05:00
|
|
|
else if ( retv == PREVIOUS_DIALOG ) {
|
2015-02-01 09:00:01 -05:00
|
|
|
if ( mode == 0 ) {
|
2014-11-12 11:49:13 -05:00
|
|
|
mode = num_switchers - 1;
|
2015-02-01 09:00:01 -05:00
|
|
|
}
|
|
|
|
else {
|
2015-02-01 04:43:28 -05:00
|
|
|
mode = ( mode - 1 ) % num_switchers;
|
2014-11-11 15:50:16 -05:00
|
|
|
}
|
|
|
|
}
|
2014-07-21 15:39:24 -04:00
|
|
|
else if ( retv == RELOAD_DIALOG ) {
|
|
|
|
// do nothing.
|
|
|
|
}
|
2014-08-05 03:07:41 -04:00
|
|
|
else if ( retv < MODE_EXIT ) {
|
2014-07-21 17:19:45 -04:00
|
|
|
mode = ( retv ) % num_switchers;
|
|
|
|
}
|
2014-07-21 15:39:24 -04:00
|
|
|
else {
|
|
|
|
mode = retv;
|
|
|
|
}
|
|
|
|
} while ( mode != MODE_EXIT );
|
2015-02-04 03:37:34 -05:00
|
|
|
g_free ( input );
|
2014-07-21 15:39:24 -04:00
|
|
|
}
|
2014-01-16 12:47:19 -05:00
|
|
|
|
2014-05-26 03:00:14 -04:00
|
|
|
// Cleanup font setup.
|
2015-01-21 04:04:15 -05:00
|
|
|
textbox_cleanup ( );
|
|
|
|
if ( map != None ) {
|
|
|
|
XFreeColormap ( display, map );
|
2015-02-09 13:35:51 -05:00
|
|
|
map = None;
|
2015-01-21 04:04:15 -05:00
|
|
|
}
|
2014-05-26 03:00:14 -04:00
|
|
|
|
2014-06-04 15:29:23 -04:00
|
|
|
if ( do_fork == TRUE ) {
|
2014-03-22 16:04:19 -04:00
|
|
|
exit ( EXIT_SUCCESS );
|
2014-01-20 16:58:10 -05:00
|
|
|
}
|
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-04 03:37:34 -05:00
|
|
|
int index = -1;
|
|
|
|
KeySym key = XkbKeycodeToKeysym ( display, ev->xkey.keycode, 0, 0 );
|
2015-02-15 15:15:16 -05:00
|
|
|
for ( unsigned int i = 0; i < num_switchers; i++ ) {
|
|
|
|
if ( switchers[i].keystr != NULL ) {
|
|
|
|
if ( ( switchers[i].modmask == AnyModifier || ( ev->xkey.state ) & ( switchers[i].keysym ) ) &&
|
|
|
|
switchers[i].keysym == key ) {
|
|
|
|
index = i;
|
|
|
|
}
|
|
|
|
}
|
2015-02-04 03:37:34 -05:00
|
|
|
}
|
|
|
|
if ( index >= 0 ) {
|
|
|
|
run_switcher ( TRUE, index );
|
2014-01-21 04:13:42 -05:00
|
|
|
}
|
2012-06-29 13:10:13 -04:00
|
|
|
}
|
|
|
|
|
2014-01-19 07:57:54 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Help function. This calls man.
|
|
|
|
*/
|
2014-05-27 02:31:59 -04:00
|
|
|
static void help ()
|
2014-01-19 07:57:54 -05:00
|
|
|
{
|
2014-03-22 16:04:19 -04:00
|
|
|
int code = execlp ( "man", "man", MANPAGE_PATH, NULL );
|
2014-01-19 07:57:54 -05:00
|
|
|
|
2014-06-04 15:29:23 -04:00
|
|
|
if ( code == -1 ) {
|
2014-03-22 16:04:19 -04:00
|
|
|
fprintf ( stderr, "Failed to execute man: %s\n", strerror ( errno ) );
|
2014-01-19 07:57:54 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-18 16:18:19 -04: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
|
|
|
{
|
|
|
|
// Cleanup
|
2014-06-04 15:29:23 -04:00
|
|
|
if ( display != NULL ) {
|
|
|
|
if ( main_window != None ) {
|
2014-05-19 15:02:05 -04:00
|
|
|
XFreeGC ( display, gc );
|
|
|
|
XDestroyWindow ( display, main_window );
|
|
|
|
XCloseDisplay ( display );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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++ ) {
|
|
|
|
// only used for script dialog.
|
2015-02-04 03:37:34 -05:00
|
|
|
if ( switchers[i].cb_data_free != NULL ) {
|
|
|
|
switchers[i].cb_data_free ( switchers[i].cb_data );
|
2014-07-21 15:39:24 -04:00
|
|
|
}
|
2015-02-15 15:15:16 -05:00
|
|
|
if ( switchers[i].keystr != NULL ) {
|
|
|
|
g_free ( switchers[i].keystr );
|
|
|
|
switchers[i].keystr = NULL;
|
|
|
|
}
|
|
|
|
if ( switchers[i].keycfg != NULL ) {
|
|
|
|
g_free ( switchers[i].keycfg );
|
|
|
|
switchers[i].keycfg = NULL;
|
|
|
|
}
|
2014-07-21 15:39:24 -04:00
|
|
|
}
|
2014-08-09 05:40:42 -04:00
|
|
|
g_free ( switchers );
|
2015-01-31 12:23:17 -05:00
|
|
|
|
|
|
|
// Cleanup pid file.
|
|
|
|
if ( pidfile ) {
|
|
|
|
unlink ( pidfile );
|
|
|
|
g_free ( pidfile );
|
|
|
|
}
|
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-01-08 07:16:44 -05:00
|
|
|
for ( char *token = strtok_r ( switcher_str, ",", &savept );
|
2014-07-30 14:54:16 -04:00
|
|
|
token != NULL;
|
|
|
|
token = strtok_r ( NULL, ",", &savept ) ) {
|
2015-02-09 13:35:51 -05:00
|
|
|
// Resize and add entry.
|
2015-02-15 15:15:16 -05:00
|
|
|
switchers = (Switcher *) g_realloc ( switchers,
|
|
|
|
sizeof ( Switcher ) * ( num_switchers + 1 ) );
|
2015-02-09 13:35:51 -05:00
|
|
|
switchers[num_switchers].cb_data = NULL;
|
|
|
|
switchers[num_switchers].cb_data_free = NULL;
|
2015-02-15 15:15:16 -05:00
|
|
|
switchers[num_switchers].keystr = NULL;
|
|
|
|
switchers[num_switchers].keycfg = NULL;
|
|
|
|
switchers[num_switchers].keysym = None;
|
|
|
|
switchers[num_switchers].modmask = AnyModifier;
|
2015-02-09 13:35:51 -05:00
|
|
|
|
2014-12-02 02:11:53 -05:00
|
|
|
// Window switcher.
|
2014-07-21 15:39:24 -04:00
|
|
|
if ( strcasecmp ( token, "window" ) == 0 ) {
|
2014-08-09 05:49:37 -04:00
|
|
|
g_strlcpy ( switchers[num_switchers].name, "window", 32 );
|
2015-02-09 13:35:51 -05:00
|
|
|
switchers[num_switchers].cb = run_switcher_window;
|
2014-07-21 15:39:24 -04:00
|
|
|
num_switchers++;
|
|
|
|
}
|
2014-12-02 02:11:53 -05:00
|
|
|
// SSh dialog
|
2014-07-21 15:39:24 -04:00
|
|
|
else if ( strcasecmp ( token, "ssh" ) == 0 ) {
|
2014-08-09 05:49:37 -04:00
|
|
|
g_strlcpy ( switchers[num_switchers].name, "ssh", 32 );
|
2015-02-09 13:35:51 -05:00
|
|
|
switchers[num_switchers].cb = ssh_switcher_dialog;
|
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 ) {
|
2014-08-09 05:49:37 -04:00
|
|
|
g_strlcpy ( switchers[num_switchers].name, "run", 32 );
|
2015-02-09 13:35:51 -05:00
|
|
|
switchers[num_switchers].cb = run_switcher_dialog;
|
2014-07-21 15:39:24 -04:00
|
|
|
num_switchers++;
|
|
|
|
}
|
|
|
|
else {
|
2014-12-02 02:11:53 -05:00
|
|
|
// If not build in, use custom switchers.
|
2014-07-21 15:39:24 -04:00
|
|
|
ScriptOptions *sw = script_switcher_parse_setup ( token );
|
|
|
|
if ( sw != NULL ) {
|
2014-12-02 02:11:53 -05:00
|
|
|
// Resize and add entry.
|
2014-08-09 05:49:37 -04:00
|
|
|
g_strlcpy ( switchers[num_switchers].name, sw->name, 32 );
|
2015-02-04 03:37:34 -05:00
|
|
|
switchers[num_switchers].cb = script_switcher_dialog;
|
|
|
|
switchers[num_switchers].cb_data = sw;
|
|
|
|
switchers[num_switchers].cb_data_free = script_switcher_free_options;
|
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++ ) {
|
|
|
|
switchers[i].keycfg = g_strdup_printf ( "key-%s",
|
|
|
|
switchers[i].name );
|
|
|
|
config_parser_add_option ( xrm_String,
|
|
|
|
switchers[i].keycfg,
|
|
|
|
(void * *) &( switchers[i].keystr ) );
|
|
|
|
}
|
2014-07-21 15:39:24 -04:00
|
|
|
}
|
|
|
|
|
2014-11-05 04:52:10 -05:00
|
|
|
/**
|
|
|
|
* Keep a copy of arc, argv around, so we can use the same parsing method
|
|
|
|
*/
|
2015-02-02 08:49:19 -05:00
|
|
|
static int stored_argc;
|
2015-01-08 07:16:44 -05:00
|
|
|
static char **stored_argv;
|
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-02-03 02:21:59 -05:00
|
|
|
config_parse_cmd_options ( stored_argc, stored_argv );
|
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 );
|
2014-11-05 04:52:10 -05:00
|
|
|
|
2015-02-15 15:15:16 -05:00
|
|
|
for ( unsigned int i = 0; i < num_switchers; i++ ) {
|
|
|
|
if ( switchers[i].keycfg != NULL ) {
|
|
|
|
char *flag = g_strdup_printf ( "-%s", switchers[i].keycfg );
|
|
|
|
find_arg_str_alloc ( stored_argc, stored_argv, flag, &( switchers[i].keystr ) );
|
|
|
|
g_free ( flag );
|
|
|
|
}
|
|
|
|
}
|
2014-11-05 04:52:10 -05:00
|
|
|
// Sanity check
|
|
|
|
config_sanity_check ();
|
|
|
|
}
|
|
|
|
|
2015-02-15 15:15:16 -05:00
|
|
|
|
2014-11-05 04:52:10 -05:00
|
|
|
/**
|
|
|
|
* Handle sighub request.
|
|
|
|
* Currently we just reload the configuration.
|
|
|
|
*/
|
|
|
|
static void hup_action_handler ( int num )
|
|
|
|
{
|
2015-02-01 09:00:01 -05:00
|
|
|
if ( num == SIGHUP ) {
|
|
|
|
/**
|
|
|
|
* Open new connection to X. It seems the XResources do not get updated on the old
|
|
|
|
* connection.
|
|
|
|
*/
|
|
|
|
Display *display = XOpenDisplay ( display_str );
|
|
|
|
if ( display ) {
|
|
|
|
load_configuration ( display );
|
2015-02-15 15:15:16 -05:00
|
|
|
load_configuration_dynamic ( display );
|
2015-02-01 09:00:01 -05:00
|
|
|
XCloseDisplay ( display );
|
|
|
|
}
|
2014-11-05 04:52:10 -05:00
|
|
|
}
|
|
|
|
}
|
2014-05-22 03:33:32 -04:00
|
|
|
|
2015-02-04 03:37:34 -05:00
|
|
|
static void show_error_message ( const char *msg )
|
2015-02-03 02:21:59 -05:00
|
|
|
{
|
|
|
|
// Create pid file
|
|
|
|
create_pid_file ( pidfile );
|
|
|
|
|
|
|
|
// Request truecolor visual.
|
2015-02-13 02:26:23 -05:00
|
|
|
create_visual_and_colormap ( display );
|
2015-02-03 02:21:59 -05:00
|
|
|
textbox_setup ( &vinfo, map,
|
2015-02-04 03:37:34 -05:00
|
|
|
config.menu_bg, config.menu_bg_alt, config.menu_fg,
|
|
|
|
config.menu_hlbg,
|
|
|
|
config.menu_hlfg );
|
2015-02-03 02:21:59 -05:00
|
|
|
error_dialog ( msg );
|
|
|
|
textbox_cleanup ( );
|
|
|
|
if ( map != None ) {
|
|
|
|
XFreeColormap ( display, map );
|
2015-02-09 13:35:51 -05:00
|
|
|
map = None;
|
2015-02-03 02:21:59 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-22 03:33:32 -04:00
|
|
|
int main ( int argc, char *argv[] )
|
|
|
|
{
|
2014-11-05 04:52:10 -05:00
|
|
|
stored_argc = argc;
|
|
|
|
stored_argv = argv;
|
|
|
|
|
2015-02-03 02:21:59 -05:00
|
|
|
// catch help request
|
2015-02-09 13:35:51 -05:00
|
|
|
if ( find_arg ( argc, argv, "-h" ) >= 0 || find_arg ( argc, argv, "-help" ) >= 0 ) {
|
2015-02-03 02:21:59 -05:00
|
|
|
help ();
|
|
|
|
exit ( EXIT_SUCCESS );
|
|
|
|
}
|
|
|
|
// Version
|
2015-02-09 13:35:51 -05:00
|
|
|
if ( find_arg ( argc, argv, "-v" ) >= 0 || find_arg ( argc, argv, "-version" ) >= 0 ) {
|
2015-02-03 02:21:59 -05:00
|
|
|
fprintf ( stdout, "Version: "VERSION "\n" );
|
|
|
|
exit ( EXIT_SUCCESS );
|
|
|
|
}
|
|
|
|
|
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-04 03:37:34 -05:00
|
|
|
if ( find_arg_str_alloc ( argc, argv, "-pid", &( pidfile ) ) == FALSE ) {
|
2015-02-03 02:21: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
|
|
|
}
|
|
|
|
|
2014-05-20 05:41:39 -04:00
|
|
|
// Register cleanup function.
|
|
|
|
atexit ( cleanup );
|
2014-05-19 15:02:05 -04:00
|
|
|
|
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" );
|
2014-03-22 16:04:19 -04:00
|
|
|
find_arg_str ( argc, argv, "-display", &display_str );
|
2014-01-15 03:27:03 -05:00
|
|
|
|
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-01-31 12:23:17 -05:00
|
|
|
|
2014-11-05 04:52:10 -05:00
|
|
|
load_configuration ( display );
|
2015-02-15 15:15:16 -05:00
|
|
|
// setup_switchers
|
|
|
|
setup_switchers ();
|
|
|
|
// Reload for dynamic part.
|
|
|
|
load_configuration_dynamic ( display );
|
2014-01-25 17:37:37 -05:00
|
|
|
|
2015-01-12 13:14:46 -05:00
|
|
|
// Dump.
|
|
|
|
if ( find_arg ( argc, argv, "-dump-xresources" ) >= 0 ) {
|
|
|
|
xresource_dump ();
|
|
|
|
exit ( EXIT_SUCCESS );
|
|
|
|
}
|
|
|
|
|
2014-05-22 03:33:32 -04:00
|
|
|
// Set up X interaction.
|
2014-03-22 16:04:19 -04:00
|
|
|
signal ( SIGCHLD, catch_exit );
|
2014-05-26 04:32:26 -04:00
|
|
|
|
2015-02-09 13:35:51 -05:00
|
|
|
x11_setup ( display );
|
2014-01-23 05:39:12 -05:00
|
|
|
|
2014-09-03 07:07:26 -04:00
|
|
|
char *msg = NULL;
|
|
|
|
if ( find_arg_str ( argc, argv, "-e", &( msg ) ) ) {
|
2015-02-04 03:37:34 -05:00
|
|
|
show_error_message ( msg );
|
2014-09-03 07:07:26 -04:00
|
|
|
exit ( EXIT_SUCCESS );
|
2014-08-27 13:44:15 -04:00
|
|
|
}
|
|
|
|
|
2015-02-01 14:15:21 -05:00
|
|
|
// Detect if we are in dmenu mode.
|
|
|
|
// This has two possible causes.
|
|
|
|
int dmenu_mode = FALSE;
|
|
|
|
// 1 the user specifies it on the command-line.
|
|
|
|
if ( find_arg ( argc, argv, "-dmenu" ) >= 0 ) {
|
|
|
|
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 );
|
|
|
|
}
|
2014-05-19 15:02:05 -04:00
|
|
|
|
2015-02-01 14:15:21 -05:00
|
|
|
// Dmenu mode.
|
|
|
|
if ( dmenu_mode == TRUE ) {
|
2014-11-09 07:10:24 -05:00
|
|
|
// force off sidebar mode:
|
|
|
|
config.sidebar_mode = FALSE;
|
|
|
|
// Check prompt
|
2014-11-05 04:27:46 -05:00
|
|
|
find_arg_str ( argc, argv, "-p", &dmenu_prompt );
|
2014-12-16 15:08:12 -05:00
|
|
|
find_arg_int ( argc, argv, "-l", &dmenu_selected_line );
|
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-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;
|
|
|
|
if ( find_arg_str ( argc, argv, "-show", &sname ) == TRUE ) {
|
2014-07-21 15:39:24 -04:00
|
|
|
int index = switcher_get ( sname );
|
|
|
|
if ( index >= 0 ) {
|
|
|
|
run_switcher ( FALSE, index );
|
|
|
|
}
|
|
|
|
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-02-15 15:15:16 -05:00
|
|
|
for ( unsigned int i = 0; i < num_switchers; i++ ) {
|
|
|
|
if ( switchers[i].keystr != NULL ) {
|
|
|
|
x11_parse_key ( switchers[i].keystr, &( switchers[i].modmask ), &( switchers[i].keysym ) );
|
|
|
|
x11_grab_key ( display, switchers[i].modmask, switchers[i].keysym );
|
|
|
|
}
|
2014-07-21 15:39:24 -04:00
|
|
|
}
|
2014-11-05 04:52:10 -05:00
|
|
|
// Setup handler for sighub (reload config)
|
2015-02-01 09:00:01 -05:00
|
|
|
const struct sigaction hup_action = {
|
2015-02-01 09:12:29 -05:00
|
|
|
.sa_handler = hup_action_handler
|
2015-02-01 09:00:01 -05:00
|
|
|
};
|
2014-11-05 04:52:10 -05:00
|
|
|
sigaction ( SIGHUP, &hup_action, NULL );
|
|
|
|
|
|
|
|
|
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.
|
2014-06-04 15:29:23 -04:00
|
|
|
for (;; ) {
|
2014-04-24 02:23:16 -04:00
|
|
|
XEvent ev;
|
2014-01-10 04:35:38 -05:00
|
|
|
|
2014-01-23 12:24:28 -05:00
|
|
|
// block and wait for something
|
2014-03-22 16:04:19 -04:00
|
|
|
XNextEvent ( display, &ev );
|
2014-11-25 06:57:34 -05:00
|
|
|
// If we get an event that does not belong to a window:
|
|
|
|
// Ignore it.
|
2014-06-04 15:29:23 -04:00
|
|
|
if ( ev.xany.window == None ) {
|
2014-03-22 16:04:19 -04:00
|
|
|
continue;
|
|
|
|
}
|
2014-11-25 06:57:34 -05:00
|
|
|
// If keypress, handle it.
|
2014-06-04 15:29:23 -04:00
|
|
|
if ( ev.type == KeyPress ) {
|
2014-03-22 16:04:19 -04:00
|
|
|
handle_keypress ( &ev );
|
|
|
|
}
|
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
|
|
|
}
|