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-02-12 16:34:06 -05:00
|
|
|
* Copyright 2013-2015 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>
|
2014-03-12 03:41:38 -04:00
|
|
|
#include "rofi.h"
|
2015-03-25 03:36:19 -04:00
|
|
|
#include "dialogs/dmenu.h"
|
2014-10-19 13:42:02 -04:00
|
|
|
#include "helper.h"
|
2014-01-29 18:47:23 -05:00
|
|
|
|
|
|
|
|
2014-08-22 11:29:15 -04:00
|
|
|
static char **get_dmenu ( int *length )
|
2014-01-29 18:47:23 -05:00
|
|
|
{
|
2014-02-03 16:28:04 -05:00
|
|
|
char buffer[1024];
|
2014-01-29 18:47:23 -05:00
|
|
|
char **retv = NULL;
|
2014-07-20 06:29:27 -04:00
|
|
|
|
|
|
|
*length = 0;
|
2014-01-29 18:47:23 -05:00
|
|
|
|
2014-10-19 13:42:02 -04:00
|
|
|
while ( fgets_s ( buffer, 1024, stdin, (char) config.separator ) != NULL ) {
|
2014-08-09 05:40:42 -04:00
|
|
|
retv = g_realloc ( retv, ( ( *length ) + 2 ) * sizeof ( char* ) );
|
|
|
|
retv[( *length )] = g_strdup ( buffer );
|
2014-07-20 06:29:27 -04:00
|
|
|
retv[( *length ) + 1] = NULL;
|
2014-02-01 08:03:23 -05:00
|
|
|
|
2014-02-03 16:49:07 -05:00
|
|
|
// Filter out line-end.
|
2014-07-20 06:29:27 -04:00
|
|
|
if ( retv[( *length )][strlen ( buffer ) - 1] == '\n' ) {
|
|
|
|
retv[( *length )][strlen ( buffer ) - 1] = '\0';
|
2014-03-22 16:04:19 -04:00
|
|
|
}
|
2014-02-01 08:03:23 -05:00
|
|
|
|
2014-07-20 06:29:27 -04:00
|
|
|
( *length )++;
|
2014-08-22 11:29:15 -04:00
|
|
|
// Stop when we hit 2³¹ entries.
|
2014-08-23 06:47:09 -04:00
|
|
|
if ( ( *length ) == INT_MAX ) {
|
2014-08-22 11:29:15 -04:00
|
|
|
return retv;
|
|
|
|
}
|
2014-01-29 18:47:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return retv;
|
|
|
|
}
|
|
|
|
|
2015-04-04 05:10:41 -04:00
|
|
|
|
|
|
|
static unsigned int row_urgent = 0xFFFFFFFF;
|
|
|
|
static unsigned int row_active = 0xFFFFFFFF;
|
|
|
|
|
2015-03-31 16:45:02 -04:00
|
|
|
static const char *get_display_data ( unsigned int index, void *data, G_GNUC_UNUSED int *state )
|
|
|
|
{
|
|
|
|
char **retv = (char * *) data;
|
2015-04-04 05:10:41 -04:00
|
|
|
if ( index == row_urgent ) {
|
|
|
|
*state |= URGENT;
|
|
|
|
}
|
|
|
|
if ( index == row_active ) {
|
|
|
|
*state |= ACTIVE;
|
|
|
|
}
|
2015-03-31 16:45:02 -04:00
|
|
|
return retv[index];
|
|
|
|
}
|
|
|
|
|
2014-08-05 03:07:41 -04:00
|
|
|
int dmenu_switcher_dialog ( char **input )
|
2014-01-29 18:47:23 -05:00
|
|
|
{
|
2015-03-11 13:05:39 -04:00
|
|
|
char *dmenu_prompt = "dmenu ";
|
|
|
|
int selected_line = 0;
|
2014-08-23 06:47:09 -04:00
|
|
|
int retv = FALSE;
|
|
|
|
int length = 0;
|
|
|
|
char **list = get_dmenu ( &length );
|
|
|
|
int restart = FALSE;
|
2014-01-29 18:47:23 -05:00
|
|
|
|
2015-03-11 13:05:39 -04:00
|
|
|
int number_mode = FALSE;
|
|
|
|
// Check if the user requested number mode.
|
2015-03-11 13:32:37 -04:00
|
|
|
if ( find_arg ( "-i" ) >= 0 ) {
|
2015-03-11 13:05:39 -04:00
|
|
|
number_mode = TRUE;
|
|
|
|
}
|
|
|
|
// Check prompt
|
2015-03-11 13:32:37 -04:00
|
|
|
find_arg_str ( "-p", &dmenu_prompt );
|
|
|
|
find_arg_int ( "-l", &selected_line );
|
2015-04-04 05:10:41 -04:00
|
|
|
find_arg_uint ( "-u", &row_urgent );
|
|
|
|
find_arg_uint ( "-a", &row_active );
|
2015-03-11 13:05:39 -04:00
|
|
|
|
2014-08-01 17:29:01 -04:00
|
|
|
do {
|
2015-03-27 15:50:48 -04:00
|
|
|
int mretv = menu ( list, length, input, dmenu_prompt,
|
2015-03-31 16:45:02 -04:00
|
|
|
token_match, NULL, &selected_line, FALSE, get_display_data, list );
|
2014-01-30 15:32:36 -05:00
|
|
|
|
2014-08-01 17:29:01 -04:00
|
|
|
// We normally do not want to restart the loop.
|
|
|
|
restart = FALSE;
|
2015-03-27 15:28:53 -04:00
|
|
|
if ( ( mretv & MENU_OK ) && list[selected_line] != NULL ) {
|
2015-03-11 13:05:39 -04:00
|
|
|
if ( number_mode ) {
|
|
|
|
fprintf ( stdout, "%d", selected_line );
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
fputs ( list[selected_line], stdout );
|
|
|
|
}
|
2014-08-01 17:29:01 -04:00
|
|
|
fputc ( '\n', stdout );
|
|
|
|
fflush ( stdout );
|
2015-03-27 15:28:53 -04:00
|
|
|
if ( ( mretv & MENU_SHIFT ) ) {
|
2014-08-01 17:29:01 -04:00
|
|
|
restart = TRUE;
|
|
|
|
// Move to next line.
|
|
|
|
selected_line = MIN ( selected_line + 1, length - 1 );
|
|
|
|
}
|
2014-08-05 03:07:41 -04:00
|
|
|
retv = TRUE;
|
2014-08-01 17:29:01 -04:00
|
|
|
}
|
2015-03-27 15:28:53 -04:00
|
|
|
else if ( ( mretv & MENU_CUSTOM_INPUT ) && *input != NULL && *input[0] != '\0' ) {
|
2015-03-11 13:05:39 -04:00
|
|
|
if ( !number_mode ) {
|
|
|
|
fputs ( *input, stdout );
|
|
|
|
fputc ( '\n', stdout );
|
|
|
|
fflush ( stdout );
|
|
|
|
}
|
2015-03-27 15:28:53 -04:00
|
|
|
if ( ( mretv & MENU_SHIFT ) ) {
|
2014-08-01 17:29:01 -04:00
|
|
|
restart = TRUE;
|
|
|
|
// Move to next line.
|
|
|
|
selected_line = MIN ( selected_line + 1, length - 1 );
|
|
|
|
}
|
2014-08-05 03:07:41 -04:00
|
|
|
retv = TRUE;
|
2014-08-01 17:29:01 -04:00
|
|
|
}
|
|
|
|
} while ( restart );
|
2014-01-30 04:02:01 -05:00
|
|
|
|
2014-08-09 05:40:42 -04:00
|
|
|
g_strfreev ( list );
|
|
|
|
|
2014-01-29 18:47:23 -05:00
|
|
|
return retv;
|
|
|
|
}
|
|
|
|
|