2014-01-29 18:47:23 -05:00
|
|
|
/**
|
2014-03-01 11:27:52 -05:00
|
|
|
* rofi
|
2014-01-29 18:47:23 -05:00
|
|
|
*
|
|
|
|
* MIT/X11 License
|
2015-12-31 18:27:00 -05:00
|
|
|
* Copyright 2013-2016 Qball Cow <qball@gmpclient.org>
|
2014-01-29 18:47:23 -05:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
* a copy of this software and associated documentation files (the
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
* distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
* permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
* the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
* included in all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
|
|
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
|
|
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
|
|
|
* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
|
|
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2014-08-22 03:26:46 -04:00
|
|
|
#include <config.h>
|
2014-01-29 18:47:23 -05:00
|
|
|
#include <stdio.h>
|
2014-02-03 16:49:07 -05:00
|
|
|
#include <stdlib.h>
|
2014-01-29 18:47:23 -05:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <strings.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <ctype.h>
|
2015-09-08 16:23:03 -04:00
|
|
|
#include <stdint.h>
|
2015-12-03 12:21:23 -05:00
|
|
|
#include <errno.h>
|
2014-03-12 03:41:38 -04:00
|
|
|
#include "rofi.h"
|
2016-01-07 10:01:56 -05:00
|
|
|
#include "settings.h"
|
2016-01-09 10:22:09 -05:00
|
|
|
#include "textbox.h"
|
2015-03-25 03:36:19 -04:00
|
|
|
#include "dialogs/dmenu.h"
|
2014-10-19 13:42:02 -04:00
|
|
|
#include "helper.h"
|
2015-11-14 13:42:43 -05:00
|
|
|
#include "xrmoptions.h"
|
2016-02-06 08:27:36 -05:00
|
|
|
#include "view.h"
|
2015-11-14 07:47:45 -05:00
|
|
|
// We limit at 1000000 rows for now.
|
|
|
|
#define DMENU_MAX_ROWS 1000000
|
|
|
|
|
2015-09-08 15:41:54 -04:00
|
|
|
struct range_pair
|
|
|
|
{
|
|
|
|
unsigned int start;
|
|
|
|
unsigned int stop;
|
|
|
|
};
|
|
|
|
typedef struct _DmenuModePrivateData
|
|
|
|
{
|
|
|
|
char *prompt;
|
2015-09-08 16:23:03 -04:00
|
|
|
unsigned int selected_line;
|
2015-09-08 15:41:54 -04:00
|
|
|
char *message;
|
|
|
|
char *format;
|
|
|
|
struct range_pair * urgent_list;
|
|
|
|
unsigned int num_urgent_list;
|
|
|
|
struct range_pair * active_list;
|
|
|
|
unsigned int num_active_list;
|
2015-11-30 08:05:39 -05:00
|
|
|
struct range_pair * selected_list;
|
|
|
|
unsigned int num_selected_list;
|
2016-02-09 01:37:48 -05:00
|
|
|
unsigned int do_markup;
|
2015-09-08 15:41:54 -04:00
|
|
|
// List with entries.
|
|
|
|
char **cmd_list;
|
|
|
|
unsigned int cmd_list_length;
|
2016-02-19 13:29:06 -05:00
|
|
|
unsigned int only_selected;
|
2015-09-08 15:41:54 -04:00
|
|
|
} DmenuModePrivateData;
|
2014-01-29 18:47:23 -05:00
|
|
|
|
2015-12-03 12:21:23 -05:00
|
|
|
static char **get_dmenu ( FILE *fd, unsigned int *length )
|
2014-01-29 18:47:23 -05:00
|
|
|
{
|
2015-11-24 16:53:40 -05:00
|
|
|
TICK_N ( "Read stdin START" );
|
2015-11-25 03:26:38 -05:00
|
|
|
char **retv = NULL;
|
2015-11-12 08:15:33 -05:00
|
|
|
unsigned int rvlength = 1;
|
2014-07-20 06:29:27 -04:00
|
|
|
|
|
|
|
*length = 0;
|
2015-11-12 08:53:02 -05:00
|
|
|
gchar *data = NULL;
|
|
|
|
size_t data_l = 0;
|
|
|
|
ssize_t l = 0;
|
2015-12-03 12:21:23 -05:00
|
|
|
while ( ( l = getdelim ( &data, &data_l, config.separator, fd ) ) > 0 ) {
|
2015-10-12 02:12:25 -04:00
|
|
|
if ( rvlength < ( *length + 2 ) ) {
|
|
|
|
rvlength *= 2;
|
|
|
|
retv = g_realloc ( retv, ( rvlength ) * sizeof ( char* ) );
|
2015-10-01 06:41:44 -04:00
|
|
|
}
|
2015-11-12 08:53:02 -05:00
|
|
|
if ( data[l - 1] == config.separator ) {
|
|
|
|
data[l - 1] = '\0';
|
2016-02-09 13:54:43 -05:00
|
|
|
l--;
|
|
|
|
}
|
2016-02-09 15:25:29 -05:00
|
|
|
if ( !g_utf8_validate ( data, l, NULL ) ) {
|
|
|
|
fprintf ( stderr, "String: '%s' is not valid utf-8\n", data );
|
2016-02-09 13:54:43 -05:00
|
|
|
continue;
|
2015-11-12 08:53:02 -05:00
|
|
|
}
|
2015-10-01 06:41:44 -04:00
|
|
|
|
2015-11-14 13:42:43 -05:00
|
|
|
retv[( *length )] = data;
|
2015-11-14 07:47:45 -05:00
|
|
|
data = NULL;
|
|
|
|
data_l = 0;
|
2015-10-01 06:41:44 -04:00
|
|
|
|
2014-07-20 06:29:27 -04:00
|
|
|
( *length )++;
|
2014-08-22 11:29:15 -04:00
|
|
|
// Stop when we hit 2³¹ entries.
|
2015-11-14 07:47:45 -05:00
|
|
|
if ( ( *length ) >= DMENU_MAX_ROWS ) {
|
|
|
|
break;
|
2014-08-22 11:29:15 -04:00
|
|
|
}
|
2014-01-29 18:47:23 -05:00
|
|
|
}
|
2015-12-23 11:03:00 -05:00
|
|
|
if ( data != NULL ) {
|
|
|
|
free ( data );
|
|
|
|
data = NULL;
|
|
|
|
}
|
2015-12-03 16:48:30 -05:00
|
|
|
if ( retv != NULL ) {
|
2015-12-23 11:03:00 -05:00
|
|
|
retv = g_realloc ( retv, ( *length + 1 ) * sizeof ( char* ) );
|
2015-12-22 14:57:57 -05:00
|
|
|
retv[( *length ) ] = NULL;
|
2015-12-01 07:17:59 -05:00
|
|
|
}
|
2015-11-24 16:53:40 -05:00
|
|
|
TICK_N ( "Read stdin STOP" );
|
2014-01-29 18:47:23 -05:00
|
|
|
return retv;
|
|
|
|
}
|
|
|
|
|
2015-11-25 03:26:38 -05:00
|
|
|
static unsigned int dmenu_mode_get_num_entries ( const Mode *sw )
|
2015-04-05 05:53:08 -04:00
|
|
|
{
|
2016-01-07 15:27:20 -05:00
|
|
|
const DmenuModePrivateData *rmpd = (const DmenuModePrivateData *) mode_get_private_data ( sw );
|
2015-11-21 17:59:59 -05:00
|
|
|
return rmpd->cmd_list_length;
|
2015-09-08 15:41:54 -04:00
|
|
|
}
|
2015-04-05 05:53:08 -04:00
|
|
|
|
|
|
|
static void parse_pair ( char *input, struct range_pair *item )
|
|
|
|
{
|
2016-03-20 05:16:55 -04:00
|
|
|
int index = 0;
|
|
|
|
const char * const sep = "-";
|
2016-03-19 08:29:04 -04:00
|
|
|
for ( char *token = strsep ( &input, sep ); token != NULL; token = strsep ( &input, sep ) ) {
|
2015-04-05 05:53:08 -04:00
|
|
|
if ( index == 0 ) {
|
|
|
|
item->start = item->stop = (unsigned int) strtoul ( token, NULL, 10 );
|
|
|
|
index++;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if ( token[0] == '\0' ) {
|
|
|
|
item->stop = 0xFFFFFFFF;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
item->stop = (unsigned int) strtoul ( token, NULL, 10 );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void parse_ranges ( char *input, struct range_pair **list, unsigned int *length )
|
|
|
|
{
|
|
|
|
char *endp;
|
2015-10-19 03:23:06 -04:00
|
|
|
if ( input == NULL ) {
|
|
|
|
return;
|
|
|
|
}
|
2016-03-20 05:16:55 -04:00
|
|
|
const char *const sep = ",";
|
2016-03-19 08:29:04 -04:00
|
|
|
for ( char *token = strtok_r ( input, sep, &endp ); token != NULL; token = strtok_r ( NULL, sep, &endp ) ) {
|
2015-04-05 05:53:08 -04:00
|
|
|
// Make space.
|
|
|
|
*list = g_realloc ( ( *list ), ( ( *length ) + 1 ) * sizeof ( struct range_pair ) );
|
|
|
|
// Parse a single pair.
|
|
|
|
parse_pair ( token, &( ( *list )[*length] ) );
|
|
|
|
|
|
|
|
( *length )++;
|
|
|
|
}
|
|
|
|
}
|
2015-04-04 05:10:41 -04:00
|
|
|
|
2015-11-25 03:26:38 -05:00
|
|
|
static char *get_display_data ( const Mode *data, unsigned int index, int *state, int get_entry )
|
2015-03-31 16:45:02 -04:00
|
|
|
{
|
2015-11-25 03:26:38 -05:00
|
|
|
Mode *sw = (Mode *) data;
|
2016-01-07 15:27:20 -05:00
|
|
|
DmenuModePrivateData *pd = (DmenuModePrivateData *) mode_get_private_data ( sw );
|
2015-09-08 15:41:54 -04:00
|
|
|
char **retv = (char * *) pd->cmd_list;
|
|
|
|
for ( unsigned int i = 0; i < pd->num_active_list; i++ ) {
|
|
|
|
if ( index >= pd->active_list[i].start && index <= pd->active_list[i].stop ) {
|
2015-04-05 05:53:08 -04:00
|
|
|
*state |= ACTIVE;
|
|
|
|
}
|
2015-04-04 05:10:41 -04:00
|
|
|
}
|
2015-09-08 15:41:54 -04:00
|
|
|
for ( unsigned int i = 0; i < pd->num_urgent_list; i++ ) {
|
|
|
|
if ( index >= pd->urgent_list[i].start && index <= pd->urgent_list[i].stop ) {
|
2015-04-05 05:53:08 -04:00
|
|
|
*state |= URGENT;
|
|
|
|
}
|
2015-04-04 05:10:41 -04:00
|
|
|
}
|
2015-11-30 08:05:39 -05:00
|
|
|
for ( unsigned int i = 0; i < pd->num_selected_list; i++ ) {
|
|
|
|
if ( index >= pd->selected_list[i].start && index <= pd->selected_list[i].stop ) {
|
|
|
|
*state |= SELECTED;
|
|
|
|
}
|
|
|
|
}
|
2016-02-09 01:37:48 -05:00
|
|
|
if ( pd->do_markup ) {
|
|
|
|
*state |= MARKUP;
|
|
|
|
}
|
2015-11-21 17:59:59 -05:00
|
|
|
return get_entry ? g_strdup ( retv[index] ) : NULL;
|
2015-03-31 16:45:02 -04:00
|
|
|
}
|
|
|
|
|
2015-05-11 17:20:34 -04:00
|
|
|
/**
|
|
|
|
* @param format The format string used. See below for possible syntax.
|
|
|
|
* @param string The selected entry.
|
|
|
|
* @param selected_line The selected line index.
|
2015-05-16 07:58:09 -04:00
|
|
|
* @param filter The entered filter.
|
2015-05-14 13:39:30 -04:00
|
|
|
*
|
2015-05-11 17:20:34 -04:00
|
|
|
* Function that outputs the selected line in the user-specified format.
|
|
|
|
* Currently the following formats are supported:
|
|
|
|
* * i: Print the index (0-(N-1))
|
2015-05-14 13:39:30 -04:00
|
|
|
* * d: Print the index (1-N)
|
2015-05-11 17:20:34 -04:00
|
|
|
* * s: Print input string.
|
2015-05-16 07:58:09 -04:00
|
|
|
* * q: Print quoted input string.
|
|
|
|
* * f: Print the entered filter.
|
|
|
|
* * F: Print the entered filter, quoted
|
2015-05-11 17:20:34 -04:00
|
|
|
*
|
|
|
|
* This functions outputs the formatted string to stdout, appends a newline (\n) character and
|
|
|
|
* calls flush on the file descriptor.
|
|
|
|
*/
|
2015-09-19 06:21:30 -04:00
|
|
|
static void dmenu_output_formatted_line ( const char *format, const char *string, int selected_line,
|
|
|
|
const char *filter )
|
2015-05-10 06:08:08 -04:00
|
|
|
{
|
|
|
|
for ( int i = 0; format && format[i]; i++ ) {
|
|
|
|
if ( format[i] == 'i' ) {
|
|
|
|
fprintf ( stdout, "%d", selected_line );
|
|
|
|
}
|
2015-05-11 17:20:34 -04:00
|
|
|
else if ( format[i] == 'd' ) {
|
2015-05-14 13:39:30 -04:00
|
|
|
fprintf ( stdout, "%d", ( selected_line + 1 ) );
|
2015-05-11 17:20:34 -04:00
|
|
|
}
|
2015-05-10 06:08:08 -04:00
|
|
|
else if ( format[i] == 's' ) {
|
|
|
|
fputs ( string, stdout );
|
|
|
|
}
|
2015-05-13 12:35:55 -04:00
|
|
|
else if ( format[i] == 'q' ) {
|
2015-05-10 06:08:08 -04:00
|
|
|
char *quote = g_shell_quote ( string );
|
|
|
|
fputs ( quote, stdout );
|
|
|
|
g_free ( quote );
|
|
|
|
}
|
2015-05-16 07:58:09 -04:00
|
|
|
else if ( format[i] == 'f' ) {
|
|
|
|
fputs ( filter, stdout );
|
|
|
|
}
|
|
|
|
else if ( format[i] == 'F' ) {
|
|
|
|
char *quote = g_shell_quote ( filter );
|
2015-05-13 12:35:55 -04:00
|
|
|
fputs ( quote, stdout );
|
|
|
|
g_free ( quote );
|
|
|
|
}
|
2015-05-10 06:08:08 -04:00
|
|
|
else {
|
|
|
|
fputc ( format[i], stdout );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fputc ( '\n', stdout );
|
|
|
|
fflush ( stdout );
|
|
|
|
}
|
2015-11-25 03:26:38 -05:00
|
|
|
static void dmenu_mode_free ( Mode *sw )
|
2015-09-08 15:41:54 -04:00
|
|
|
{
|
2016-01-07 15:27:20 -05:00
|
|
|
if ( mode_get_private_data ( sw ) == NULL ) {
|
2015-09-08 15:41:54 -04:00
|
|
|
return;
|
|
|
|
}
|
2016-01-07 15:27:20 -05:00
|
|
|
DmenuModePrivateData *pd = (DmenuModePrivateData *) mode_get_private_data ( sw );
|
2015-11-15 07:12:43 -05:00
|
|
|
if ( pd != NULL ) {
|
|
|
|
for ( size_t i = 0; i < pd->cmd_list_length; i++ ) {
|
|
|
|
if ( pd->cmd_list[i] ) {
|
|
|
|
free ( pd->cmd_list[i] );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
g_free ( pd->cmd_list );
|
|
|
|
g_free ( pd->urgent_list );
|
|
|
|
g_free ( pd->active_list );
|
2015-11-30 08:05:39 -05:00
|
|
|
g_free ( pd->selected_list );
|
2015-05-10 06:08:08 -04:00
|
|
|
|
2015-11-15 07:12:43 -05:00
|
|
|
g_free ( pd );
|
2016-01-07 15:27:20 -05:00
|
|
|
mode_set_private_data ( sw, NULL );
|
2015-11-15 07:12:43 -05:00
|
|
|
}
|
2015-09-08 15:41:54 -04:00
|
|
|
}
|
|
|
|
|
2016-01-08 03:16:59 -05:00
|
|
|
static int dmenu_mode_init ( Mode *sw )
|
2015-06-23 15:22:38 -04:00
|
|
|
{
|
2016-01-07 15:27:20 -05:00
|
|
|
if ( mode_get_private_data ( sw ) != NULL ) {
|
2016-01-08 03:16:59 -05:00
|
|
|
return TRUE;
|
2015-09-08 15:41:54 -04:00
|
|
|
}
|
2016-01-07 15:27:20 -05:00
|
|
|
mode_set_private_data ( sw, g_malloc0 ( sizeof ( DmenuModePrivateData ) ) );
|
|
|
|
DmenuModePrivateData *pd = (DmenuModePrivateData *) mode_get_private_data ( sw );
|
2015-09-08 15:41:54 -04:00
|
|
|
|
|
|
|
pd->prompt = "dmenu ";
|
2015-09-08 16:23:03 -04:00
|
|
|
pd->selected_line = UINT32_MAX;
|
2015-05-23 14:06:06 -04:00
|
|
|
|
2015-09-08 15:41:54 -04:00
|
|
|
find_arg_str ( "-mesg", &( pd->message ) );
|
2014-01-29 18:47:23 -05:00
|
|
|
|
2015-09-08 15:41:54 -04:00
|
|
|
// Check prompt
|
|
|
|
find_arg_str ( "-p", &( pd->prompt ) );
|
2015-09-08 16:23:03 -04:00
|
|
|
find_arg_uint ( "-selected-row", &( pd->selected_line ) );
|
2015-05-11 17:20:34 -04:00
|
|
|
// By default we print the unescaped line back.
|
2015-09-08 15:41:54 -04:00
|
|
|
pd->format = "s";
|
2015-08-02 10:44:03 -04:00
|
|
|
|
2015-05-11 17:20:34 -04:00
|
|
|
// Allow user to override the output format.
|
2015-09-08 15:41:54 -04:00
|
|
|
find_arg_str ( "-format", &( pd->format ) );
|
2015-04-05 05:53:08 -04:00
|
|
|
// Urgent.
|
|
|
|
char *str = NULL;
|
|
|
|
find_arg_str ( "-u", &str );
|
|
|
|
if ( str != NULL ) {
|
2015-09-08 15:41:54 -04:00
|
|
|
parse_ranges ( str, &( pd->urgent_list ), &( pd->num_urgent_list ) );
|
2015-04-05 05:53:08 -04:00
|
|
|
}
|
|
|
|
// Active
|
|
|
|
str = NULL;
|
|
|
|
find_arg_str ( "-a", &str );
|
|
|
|
if ( str != NULL ) {
|
2015-09-08 15:41:54 -04:00
|
|
|
parse_ranges ( str, &( pd->active_list ), &( pd->num_active_list ) );
|
2015-04-05 05:53:08 -04:00
|
|
|
}
|
2015-03-11 13:05:39 -04:00
|
|
|
|
2015-09-08 15:41:54 -04:00
|
|
|
// DMENU COMPATIBILITY
|
|
|
|
find_arg_uint ( "-l", &( config.menu_lines ) );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Dmenu compatibility.
|
|
|
|
* `-b` put on bottom.
|
|
|
|
*/
|
|
|
|
if ( find_arg ( "-b" ) >= 0 ) {
|
|
|
|
config.location = 6;
|
|
|
|
}
|
|
|
|
/* -i case insensitive */
|
|
|
|
config.case_sensitive = TRUE;
|
|
|
|
if ( find_arg ( "-i" ) >= 0 ) {
|
|
|
|
config.case_sensitive = FALSE;
|
|
|
|
}
|
2015-12-03 12:21:23 -05:00
|
|
|
FILE *fd = NULL;
|
|
|
|
str = NULL;
|
2015-12-03 16:48:30 -05:00
|
|
|
if ( find_arg_str ( "-input", &str ) ) {
|
|
|
|
char *estr = rofi_expand_path ( str );
|
|
|
|
fd = fopen ( str, "r" );
|
|
|
|
if ( fd == NULL ) {
|
|
|
|
char *msg = g_markup_printf_escaped ( "Failed to open file: <b>%s</b>:\n\t<i>%s</i>", estr, strerror ( errno ) );
|
2016-02-08 03:03:11 -05:00
|
|
|
rofi_view_error_dialog ( msg, TRUE );
|
2015-12-03 16:48:30 -05:00
|
|
|
g_free ( msg );
|
|
|
|
g_free ( estr );
|
2016-01-08 03:16:59 -05:00
|
|
|
return TRUE;
|
2015-12-03 12:21:23 -05:00
|
|
|
}
|
2015-12-03 16:48:30 -05:00
|
|
|
g_free ( estr );
|
|
|
|
}
|
|
|
|
pd->cmd_list = get_dmenu ( fd == NULL ? stdin : fd, &( pd->cmd_list_length ) );
|
|
|
|
if ( fd != NULL ) {
|
|
|
|
fclose ( fd );
|
2015-12-03 12:21:23 -05:00
|
|
|
}
|
2016-01-08 03:16:59 -05:00
|
|
|
return TRUE;
|
2015-11-21 17:59:59 -05:00
|
|
|
}
|
|
|
|
|
2015-11-25 03:26:38 -05:00
|
|
|
static int dmenu_token_match ( const Mode *sw, char **tokens, int not_ascii, int case_sensitive, unsigned int index )
|
2015-11-21 17:59:59 -05:00
|
|
|
{
|
2016-01-07 15:27:20 -05:00
|
|
|
DmenuModePrivateData *rmpd = (DmenuModePrivateData *) mode_get_private_data ( sw );
|
2015-11-21 17:59:59 -05:00
|
|
|
return token_match ( tokens, rmpd->cmd_list[index], not_ascii, case_sensitive );
|
|
|
|
}
|
|
|
|
|
2015-11-25 03:26:38 -05:00
|
|
|
static int dmenu_is_not_ascii ( const Mode *sw, unsigned int index )
|
2015-11-21 17:59:59 -05:00
|
|
|
{
|
2016-01-07 15:27:20 -05:00
|
|
|
DmenuModePrivateData *rmpd = (DmenuModePrivateData *) mode_get_private_data ( sw );
|
2015-12-01 16:09:34 -05:00
|
|
|
return !g_str_is_ascii ( rmpd->cmd_list[index] );
|
2015-09-08 15:41:54 -04:00
|
|
|
}
|
|
|
|
|
2016-01-07 15:27:20 -05:00
|
|
|
#include "mode-private.h"
|
2015-11-25 03:26:38 -05:00
|
|
|
Mode dmenu_mode =
|
2015-09-08 15:41:54 -04:00
|
|
|
{
|
2016-01-07 15:27:20 -05:00
|
|
|
.name = "dmenu",
|
2016-01-12 16:17:53 -05:00
|
|
|
.cfg_name_key = "display-combi",
|
2016-01-07 15:27:20 -05:00
|
|
|
._init = dmenu_mode_init,
|
|
|
|
._get_num_entries = dmenu_mode_get_num_entries,
|
|
|
|
._result = NULL,
|
|
|
|
._destroy = dmenu_mode_free,
|
|
|
|
._token_match = dmenu_token_match,
|
|
|
|
._get_display_value = get_display_data,
|
|
|
|
._get_completion = NULL,
|
|
|
|
._is_not_ascii = dmenu_is_not_ascii,
|
|
|
|
.private_data = NULL,
|
|
|
|
.free = NULL
|
2015-09-08 15:41:54 -04:00
|
|
|
};
|
|
|
|
|
2016-02-19 15:16:35 -05:00
|
|
|
static void dmenu_finish ( RofiViewState *state, int retv )
|
2016-02-19 15:08:46 -05:00
|
|
|
{
|
|
|
|
if ( retv == FALSE ) {
|
|
|
|
rofi_set_return_code ( EXIT_FAILURE );
|
|
|
|
}
|
|
|
|
else if ( retv >= 10 ) {
|
|
|
|
rofi_set_return_code ( retv );
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
rofi_set_return_code ( EXIT_SUCCESS );
|
|
|
|
}
|
|
|
|
rofi_view_set_active ( NULL );
|
|
|
|
rofi_view_free ( state );
|
|
|
|
mode_destroy ( &dmenu_mode );
|
|
|
|
}
|
|
|
|
|
2016-02-19 13:29:06 -05:00
|
|
|
static void dmenu_finalize ( RofiViewState *state )
|
|
|
|
{
|
|
|
|
int retv = FALSE;
|
2016-02-19 15:16:35 -05:00
|
|
|
DmenuModePrivateData *pd = (DmenuModePrivateData *) rofi_view_get_mode ( state )->private_data;
|
2016-02-19 13:29:06 -05:00
|
|
|
unsigned int cmd_list_length = pd->cmd_list_length;
|
|
|
|
char **cmd_list = pd->cmd_list;
|
|
|
|
|
|
|
|
char *input = g_strdup ( rofi_view_get_user_input ( state ) );
|
|
|
|
pd->selected_line = rofi_view_get_selected_line ( state );;
|
|
|
|
MenuReturn mretv = rofi_view_get_return_value ( state );
|
|
|
|
unsigned int next_pos = rofi_view_get_next_position ( state );
|
|
|
|
|
|
|
|
int restart = 0;
|
|
|
|
// Special behavior.
|
|
|
|
if ( pd->only_selected ) {
|
|
|
|
/**
|
|
|
|
* Select item mode.
|
|
|
|
*/
|
|
|
|
restart = 1;
|
|
|
|
// Skip if no valid item is selected.
|
|
|
|
if ( ( mretv & MENU_CANCEL ) == MENU_CANCEL ) {
|
|
|
|
// In no custom mode we allow canceling.
|
|
|
|
restart = ( find_arg ( "-only-match" ) >= 0 );
|
|
|
|
}
|
|
|
|
else if ( pd->selected_line != UINT32_MAX ) {
|
|
|
|
if ( ( mretv & ( MENU_OK | MENU_QUICK_SWITCH ) ) && cmd_list[pd->selected_line] != NULL ) {
|
|
|
|
dmenu_output_formatted_line ( pd->format, cmd_list[pd->selected_line], pd->selected_line, input );
|
|
|
|
retv = TRUE;
|
|
|
|
if ( ( mretv & MENU_QUICK_SWITCH ) ) {
|
|
|
|
retv = 10 + ( mretv & MENU_LOWER_MASK );
|
2016-02-19 15:16:35 -05:00
|
|
|
}
|
2016-02-19 13:29:06 -05:00
|
|
|
g_free ( input );
|
2016-02-19 15:16:35 -05:00
|
|
|
dmenu_finish ( state, retv );
|
2016-02-19 13:29:06 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
pd->selected_line = next_pos - 1;
|
|
|
|
}
|
|
|
|
// Restart
|
|
|
|
rofi_view_restart ( state );
|
|
|
|
rofi_view_set_selected_line ( state, pd->selected_line );
|
2016-02-19 15:08:46 -05:00
|
|
|
if ( !restart ) {
|
2016-02-19 15:16:35 -05:00
|
|
|
dmenu_finish ( state, retv );
|
2016-02-19 15:08:46 -05:00
|
|
|
}
|
2016-02-19 13:29:06 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
// We normally do not want to restart the loop.
|
|
|
|
restart = FALSE;
|
|
|
|
// Normal mode
|
|
|
|
if ( ( mretv & MENU_OK ) && pd->selected_line != UINT32_MAX && cmd_list[pd->selected_line] != NULL ) {
|
|
|
|
dmenu_output_formatted_line ( pd->format, cmd_list[pd->selected_line], pd->selected_line, input );
|
|
|
|
if ( ( mretv & MENU_SHIFT ) ) {
|
|
|
|
restart = TRUE;
|
|
|
|
int seen = FALSE;
|
|
|
|
if ( pd->selected_list != NULL ) {
|
|
|
|
if ( pd->selected_list[pd->num_selected_list - 1].stop == ( pd->selected_line - 1 ) ) {
|
|
|
|
pd->selected_list[pd->num_selected_list - 1].stop = pd->selected_line;
|
|
|
|
seen = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( !seen ) {
|
|
|
|
pd->selected_list = g_realloc ( pd->selected_list,
|
|
|
|
( pd->num_selected_list + 1 ) * sizeof ( struct range_pair ) );
|
|
|
|
pd->selected_list[pd->num_selected_list].start = pd->selected_line;
|
|
|
|
pd->selected_list[pd->num_selected_list].stop = pd->selected_line;
|
|
|
|
( pd->num_selected_list )++;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Move to next line.
|
|
|
|
pd->selected_line = MIN ( next_pos, cmd_list_length - 1 );
|
|
|
|
}
|
|
|
|
retv = TRUE;
|
|
|
|
}
|
|
|
|
// Custom input
|
|
|
|
else if ( ( mretv & ( MENU_CUSTOM_INPUT ) ) ) {
|
|
|
|
dmenu_output_formatted_line ( pd->format, input, -1, input );
|
|
|
|
if ( ( mretv & MENU_SHIFT ) ) {
|
|
|
|
restart = TRUE;
|
|
|
|
// Move to next line.
|
|
|
|
pd->selected_line = MIN ( next_pos, cmd_list_length - 1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
retv = TRUE;
|
|
|
|
}
|
|
|
|
// Quick switch with entry selected.
|
|
|
|
else if ( ( mretv & MENU_QUICK_SWITCH ) && pd->selected_line < UINT32_MAX ) {
|
|
|
|
dmenu_output_formatted_line ( pd->format, cmd_list[pd->selected_line], pd->selected_line, input );
|
|
|
|
|
|
|
|
restart = FALSE;
|
|
|
|
retv = 10 + ( mretv & MENU_LOWER_MASK );
|
|
|
|
}
|
|
|
|
// Quick switch without entry selected.
|
|
|
|
else if ( ( mretv & MENU_QUICK_SWITCH ) && pd->selected_line == UINT32_MAX ) {
|
|
|
|
dmenu_output_formatted_line ( pd->format, input, -1, input );
|
|
|
|
|
|
|
|
restart = FALSE;
|
|
|
|
retv = 10 + ( mretv & MENU_LOWER_MASK );
|
|
|
|
}
|
|
|
|
g_free ( input );
|
|
|
|
if ( restart ) {
|
|
|
|
rofi_view_restart ( state );
|
|
|
|
rofi_view_set_selected_line ( state, pd->selected_line );
|
|
|
|
}
|
|
|
|
else {
|
2016-02-19 15:16:35 -05:00
|
|
|
dmenu_finish ( state, retv );
|
2016-02-19 13:29:06 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-08 15:41:54 -04:00
|
|
|
int dmenu_switcher_dialog ( void )
|
|
|
|
{
|
2016-01-07 13:47:37 -05:00
|
|
|
mode_init ( &dmenu_mode );
|
2016-01-10 07:10:44 -05:00
|
|
|
MenuFlags menu_flags = MENU_NORMAL;
|
2015-09-08 15:41:54 -04:00
|
|
|
DmenuModePrivateData *pd = (DmenuModePrivateData *) dmenu_mode.private_data;
|
|
|
|
char *input = NULL;
|
2015-11-21 17:59:59 -05:00
|
|
|
unsigned int cmd_list_length = pd->cmd_list_length;
|
|
|
|
char **cmd_list = pd->cmd_list;
|
2015-09-08 15:41:54 -04:00
|
|
|
|
2016-02-19 13:29:06 -05:00
|
|
|
pd->only_selected = FALSE;
|
2016-02-09 01:37:48 -05:00
|
|
|
if ( find_arg ( "-markup-rows" ) >= 0 ) {
|
|
|
|
pd->do_markup = TRUE;
|
|
|
|
}
|
2015-06-11 15:07:25 -04:00
|
|
|
if ( find_arg ( "-only-match" ) >= 0 || find_arg ( "-no-custom" ) >= 0 ) {
|
2016-02-19 13:29:06 -05:00
|
|
|
pd->only_selected = TRUE;
|
2015-09-08 15:41:54 -04:00
|
|
|
if ( cmd_list_length == 0 ) {
|
2015-05-07 15:07:15 -04:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
2016-02-17 02:44:51 -05:00
|
|
|
if ( config.auto_select && cmd_list_length == 1 ) {
|
|
|
|
dmenu_output_formatted_line ( pd->format, cmd_list[0], 0, config.filter );
|
|
|
|
return TRUE;
|
|
|
|
}
|
2016-01-10 07:10:44 -05:00
|
|
|
if ( find_arg ( "-password" ) >= 0 ) {
|
|
|
|
menu_flags |= MENU_PASSWORD;
|
|
|
|
}
|
2016-02-10 13:40:19 -05:00
|
|
|
if ( find_arg ( "-normal-window" ) >= 0 ) {
|
|
|
|
menu_flags |= MENU_NORMAL_WINDOW;
|
|
|
|
}
|
2015-08-20 15:42:53 -04:00
|
|
|
/* copy filter string */
|
|
|
|
input = g_strdup ( config.filter );
|
2015-05-07 15:07:15 -04:00
|
|
|
|
2015-05-18 16:38:51 -04:00
|
|
|
char *select = NULL;
|
|
|
|
find_arg_str ( "-select", &select );
|
2015-06-05 17:08:02 -04:00
|
|
|
if ( select != NULL ) {
|
2015-09-08 15:41:54 -04:00
|
|
|
char **tokens = tokenize ( select, config.case_sensitive );
|
|
|
|
unsigned int i = 0;
|
|
|
|
for ( i = 0; i < cmd_list_length; i++ ) {
|
2015-12-03 16:48:30 -05:00
|
|
|
if ( token_match ( tokens, cmd_list[i], !g_str_is_ascii ( cmd_list[i] ), config.case_sensitive ) ) {
|
2015-09-08 15:41:54 -04:00
|
|
|
pd->selected_line = i;
|
2015-05-18 16:38:51 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
g_strfreev ( tokens );
|
|
|
|
}
|
2015-11-27 07:14:46 -05:00
|
|
|
if ( find_arg ( "-dump" ) >= 0 ) {
|
|
|
|
char **tokens = tokenize ( config.filter ? config.filter : "", config.case_sensitive );
|
|
|
|
unsigned int i = 0;
|
|
|
|
for ( i = 0; i < cmd_list_length; i++ ) {
|
2015-12-03 16:48:30 -05:00
|
|
|
if ( token_match ( tokens, cmd_list[i], !g_str_is_ascii ( cmd_list[i] ), config.case_sensitive ) ) {
|
2015-11-27 07:14:46 -05:00
|
|
|
dmenu_output_formatted_line ( pd->format, cmd_list[i], i, config.filter );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
g_strfreev ( tokens );
|
2015-11-28 05:59:11 -05:00
|
|
|
return TRUE;
|
2015-11-27 07:14:46 -05:00
|
|
|
}
|
2016-02-19 13:29:06 -05:00
|
|
|
// TODO remove
|
|
|
|
RofiViewState *state = rofi_view_create ( &dmenu_mode, input, pd->prompt, pd->message, menu_flags, dmenu_finalize );
|
2016-02-06 07:06:58 -05:00
|
|
|
rofi_view_set_selected_line ( state, pd->selected_line );
|
2016-02-19 13:29:06 -05:00
|
|
|
rofi_view_set_active ( state );
|
2015-06-09 12:10:23 -04:00
|
|
|
|
2016-02-19 13:29:06 -05:00
|
|
|
return FALSE;
|
2014-01-29 18:47:23 -05:00
|
|
|
}
|
|
|
|
|
2015-10-21 12:58:01 -04:00
|
|
|
void print_dmenu_options ( void )
|
|
|
|
{
|
2015-11-14 13:42:43 -05:00
|
|
|
int is_term = isatty ( fileno ( stdout ) );
|
2015-11-15 07:12:43 -05:00
|
|
|
print_help_msg ( "-mesg", "[string]", "Print a small user message under the prompt (uses pango markup)", NULL, is_term );
|
|
|
|
print_help_msg ( "-p", "[string]", "Prompt to display left of entry field", NULL, is_term );
|
|
|
|
print_help_msg ( "-selected-row", "[integer]", "Select row", NULL, is_term );
|
|
|
|
print_help_msg ( "-format", "[string]", "Output format string", "s", is_term );
|
|
|
|
print_help_msg ( "-u", "[list]", "List of row indexes to mark urgent", NULL, is_term );
|
|
|
|
print_help_msg ( "-a", "[list]", "List of row indexes to mark active", NULL, is_term );
|
|
|
|
print_help_msg ( "-l", "[integer] ", "Number of rows to display", NULL, is_term );
|
|
|
|
print_help_msg ( "-i", "", "Set filter to be case insensitive", NULL, is_term );
|
|
|
|
print_help_msg ( "-only-match", "", "Force selection or custom entry", NULL, is_term );
|
|
|
|
print_help_msg ( "-no-custom", "", "Don't accept custom entry", NULL, is_term );
|
|
|
|
print_help_msg ( "-select", "[string]", "Select the first row that matches", NULL, is_term );
|
2016-01-10 07:10:44 -05:00
|
|
|
print_help_msg ( "-password", "", "Do not show what the user inputs. Show '*' instead.", NULL, is_term );
|
2016-02-09 01:37:48 -05:00
|
|
|
print_help_msg ( "-markup-rows", "", "Allow and render pango markup as input data.", NULL, is_term );
|
2015-10-21 12:58:01 -04:00
|
|
|
}
|