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
|
|
|
|
* 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 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"
|
2014-05-17 17:06:45 -04:00
|
|
|
#include "dmenu-dialog.h"
|
2014-01-29 18:47:23 -05:00
|
|
|
|
|
|
|
char *dmenu_prompt = "dmenu ";
|
|
|
|
|
2014-05-17 17:06:45 -04:00
|
|
|
static char **get_dmenu ( void )
|
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-03-22 16:04:19 -04:00
|
|
|
int index = 0;
|
2014-01-29 18:47:23 -05:00
|
|
|
|
2014-06-04 15:29:23 -04:00
|
|
|
while ( fgets ( buffer, 1024, stdin ) != NULL ) {
|
2014-05-26 03:19:58 -04:00
|
|
|
char **tr = realloc ( retv, ( index + 2 ) * sizeof ( char* ) );
|
2014-06-04 15:29:23 -04:00
|
|
|
if ( tr == NULL ) {
|
2014-05-26 03:19:58 -04:00
|
|
|
return retv;
|
|
|
|
}
|
|
|
|
retv = tr;
|
2014-03-22 16:04:19 -04:00
|
|
|
retv[index] = strdup ( buffer );
|
|
|
|
retv[index + 1] = NULL;
|
2014-02-01 08:03:23 -05:00
|
|
|
|
2014-02-03 16:49:07 -05:00
|
|
|
// Filter out line-end.
|
2014-06-04 15:29:23 -04:00
|
|
|
if ( retv[index][strlen ( buffer ) - 1] == '\n' ) {
|
2014-03-22 16:04:19 -04:00
|
|
|
retv[index][strlen ( buffer ) - 1] = '\0';
|
|
|
|
}
|
2014-02-01 08:03:23 -05:00
|
|
|
|
2014-01-29 18:47:23 -05:00
|
|
|
index++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return retv;
|
|
|
|
}
|
|
|
|
|
|
|
|
SwitcherMode dmenu_switcher_dialog ( char **input )
|
|
|
|
{
|
2014-03-22 16:04:19 -04:00
|
|
|
int selected_line = 0;
|
|
|
|
SwitcherMode retv = MODE_EXIT;
|
2014-05-27 02:31:59 -04:00
|
|
|
char **list = get_dmenu ( );
|
2014-01-29 18:47:23 -05:00
|
|
|
|
2014-03-22 16:04:19 -04:00
|
|
|
int mretv = menu ( list, input, dmenu_prompt, NULL, NULL,
|
|
|
|
token_match, NULL, &selected_line );
|
2014-01-29 18:47:23 -05:00
|
|
|
|
2014-06-04 15:29:23 -04:00
|
|
|
if ( mretv == MENU_NEXT ) {
|
2014-01-29 18:47:23 -05:00
|
|
|
retv = DMENU_DIALOG;
|
2014-03-22 16:04:19 -04:00
|
|
|
}
|
2014-06-04 15:29:23 -04:00
|
|
|
else if ( mretv == MENU_OK && list[selected_line] != NULL ) {
|
2014-03-22 16:04:19 -04:00
|
|
|
fputs ( list[selected_line], stdout );
|
|
|
|
}
|
2014-06-04 15:29:23 -04:00
|
|
|
else if ( mretv == MENU_CUSTOM_INPUT && *input != NULL && *input[0] != '\0' ) {
|
2014-03-22 16:04:19 -04:00
|
|
|
fputs ( *input, stdout );
|
2014-01-29 18:47:23 -05:00
|
|
|
}
|
2014-01-30 15:32:36 -05:00
|
|
|
|
2014-06-04 15:29:23 -04:00
|
|
|
for ( unsigned int i = 0; list != NULL && list[i] != NULL; i++ ) {
|
2014-03-22 16:04:19 -04:00
|
|
|
free ( list[i] );
|
2014-01-29 18:47:23 -05:00
|
|
|
}
|
2014-01-30 04:02:01 -05:00
|
|
|
|
2014-06-04 15:29:23 -04:00
|
|
|
if ( list != NULL ) {
|
2014-03-22 16:04:19 -04:00
|
|
|
free ( list );
|
|
|
|
}
|
2014-02-03 17:07:04 -05:00
|
|
|
|
2014-01-29 18:47:23 -05:00
|
|
|
return retv;
|
|
|
|
}
|
|
|
|
|