rofi/source/dmenu-dialog.c

120 lines
3.7 KiB
C
Raw Normal View History

2014-01-29 23:47:23 +00:00
/**
2014-03-01 16:27:52 +00:00
* rofi
2014-01-29 23:47:23 +00:00
*
* MIT/X11 License
* Copyright 2013-2014 Qball Cow <qball@gmpclient.org>
*
* 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.
*
*/
#define _GNU_SOURCE
#include <stdio.h>
2014-02-03 21:49:07 +00:00
#include <stdlib.h>
2014-01-29 23:47:23 +00:00
#include <unistd.h>
#include <strings.h>
#include <string.h>
#include <ctype.h>
2014-03-12 07:41:38 +00:00
#include "rofi.h"
#include "dmenu-dialog.h"
2014-01-29 23:47:23 +00:00
char *dmenu_prompt = "dmenu ";
static char **get_dmenu ( unsigned int *length )
2014-01-29 23:47:23 +00:00
{
2014-02-03 21:28:04 +00:00
char buffer[1024];
2014-01-29 23:47:23 +00:00
char **retv = NULL;
*length = 0;
2014-01-29 23:47:23 +00:00
2014-06-04 19:29:23 +00:00
while ( fgets ( buffer, 1024, stdin ) != NULL ) {
char **tr = realloc ( retv, ( ( *length ) + 2 ) * sizeof ( char* ) );
2014-06-04 19:29:23 +00:00
if ( tr == NULL ) {
return retv;
}
retv = tr;
retv[( *length )] = strdup ( buffer );
retv[( *length ) + 1] = NULL;
2014-02-03 21:49:07 +00:00
// Filter out line-end.
if ( retv[( *length )][strlen ( buffer ) - 1] == '\n' ) {
retv[( *length )][strlen ( buffer ) - 1] = '\0';
2014-03-22 20:04:19 +00:00
}
( *length )++;
2014-01-29 23:47:23 +00:00
}
return retv;
}
SwitcherMode dmenu_switcher_dialog ( char **input, void *data )
2014-01-29 23:47:23 +00:00
{
2014-03-22 20:04:19 +00:00
int selected_line = 0;
SwitcherMode retv = MODE_EXIT;
unsigned int length = 0;
char **list = get_dmenu ( &length );
2014-08-01 21:29:01 +00:00
int restart = FALSE;
2014-01-29 23:47:23 +00:00
// Force off sorting. (TODO: should be an argument to menu, and not hacking the user config.)
config.levenshtein_sort = FALSE;
2014-08-01 21:29:01 +00:00
do {
int shift = 0;
int mretv = menu ( list, length, input, dmenu_prompt, NULL, &shift,
token_match, NULL, &selected_line );
2014-01-30 20:32:36 +00:00
2014-08-01 21:29:01 +00:00
// We normally do not want to restart the loop.
restart = FALSE;
if ( mretv == MENU_NEXT ) {
retv = RELOAD_DIALOG;
}
else if ( mretv == MENU_OK && list[selected_line] != NULL ) {
fputs ( list[selected_line], stdout );
fputc ( '\n', stdout );
fflush ( stdout );
if ( shift ) {
restart = TRUE;
// Move to next line.
selected_line = MIN ( selected_line + 1, length - 1 );
}
}
else if ( mretv == MENU_CUSTOM_INPUT && *input != NULL && *input[0] != '\0' ) {
fputs ( *input, stdout );
fputc ( '\n', stdout );
fflush ( stdout );
if ( shift ) {
restart = TRUE;
// Move to next line.
selected_line = MIN ( selected_line + 1, length - 1 );
}
}
} while ( restart );
for ( unsigned int i = 0; i < length; i++ ) {
2014-03-22 20:04:19 +00:00
free ( list[i] );
2014-01-29 23:47:23 +00:00
}
2014-01-30 09:02:01 +00:00
2014-06-04 19:29:23 +00:00
if ( list != NULL ) {
2014-03-22 20:04:19 +00:00
free ( list );
}
2014-01-29 23:47:23 +00:00
return retv;
}