rofi/source/dmenu-dialog.c

89 lines
2.5 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"
2014-01-29 23:47:23 +00:00
char *dmenu_prompt = "dmenu ";
static char **get_dmenu ( )
{
2014-02-03 21:28:04 +00:00
char buffer[1024];
2014-01-29 23:47:23 +00:00
char **retv = NULL;
int index = 0;
2014-01-30 09:02:01 +00:00
while ( fgets( buffer, 1024, stdin ) != NULL ) {
2014-02-26 21:48:49 +00:00
retv = reallocate( retv, ( index+2 )*sizeof( char* ) );
2014-01-30 09:02:01 +00:00
retv[index] = strdup( buffer );
2014-02-03 21:49:07 +00:00
retv[index+1] = NULL;
2014-02-03 21:49:07 +00:00
// Filter out line-end.
if ( retv[index][strlen( buffer )-1] == '\n' )
2014-01-31 19:36:14 +00:00
retv[index][strlen( buffer )-1] = '\0';
2014-01-29 23:47:23 +00:00
index++;
}
return retv;
}
SwitcherMode dmenu_switcher_dialog ( char **input )
{
2014-02-03 21:28:04 +00:00
int selected_line = 0;
2014-01-29 23:47:23 +00:00
SwitcherMode retv = MODE_EXIT;
// act as a launcher
char **list = get_dmenu( );
2014-02-03 21:49:07 +00:00
int mretv = menu( list, input, dmenu_prompt,NULL, NULL,
token_match, NULL, &selected_line );
2014-01-29 23:47:23 +00:00
if ( mretv == MENU_NEXT ) {
2014-01-29 23:47:23 +00:00
retv = DMENU_DIALOG;
} else if ( mretv == MENU_OK && list[selected_line] != NULL ) {
fputs( list[selected_line],stdout );
} else if ( mretv == MENU_CUSTOM_INPUT && *input != NULL && *input[0] != '\0' ) {
2014-01-30 20:32:36 +00:00
fputs( *input, stdout );
2014-01-29 23:47:23 +00:00
}
2014-01-30 20:32:36 +00:00
2014-02-01 21:31:07 +00:00
for ( unsigned int i=0; list != NULL && list[i] != NULL; i++ ) {
2014-01-29 23:47:23 +00:00
free( list[i] );
}
2014-01-30 09:02:01 +00:00
if ( list != NULL ) free( list );
2014-02-03 22:07:04 +00:00
2014-01-29 23:47:23 +00:00
return retv;
}