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>
|
|
|
|
|
|
|
|
#include "simpleswitcher.h"
|
|
|
|
|
|
|
|
char *dmenu_prompt = "dmenu ";
|
|
|
|
|
|
|
|
static char **get_dmenu ( )
|
|
|
|
{
|
2014-02-03 16:28:04 -05:00
|
|
|
char buffer[1024];
|
2014-01-29 18:47:23 -05:00
|
|
|
char **retv = NULL;
|
|
|
|
int index = 0;
|
|
|
|
|
2014-01-30 04:02:01 -05:00
|
|
|
while ( fgets( buffer, 1024, stdin ) != NULL ) {
|
2014-02-26 16:48:49 -05:00
|
|
|
retv = reallocate( retv, ( index+2 )*sizeof( char* ) );
|
2014-01-30 04:02:01 -05:00
|
|
|
retv[index] = strdup( buffer );
|
2014-02-03 16:49:07 -05:00
|
|
|
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-02-01 08:03:23 -05:00
|
|
|
if ( retv[index][strlen( buffer )-1] == '\n' )
|
2014-01-31 14:36:14 -05: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-02-03 16:28:04 -05:00
|
|
|
int selected_line = 0;
|
2014-01-29 18:47:23 -05:00
|
|
|
SwitcherMode retv = MODE_EXIT;
|
|
|
|
// act as a launcher
|
|
|
|
char **list = get_dmenu( );
|
|
|
|
|
2014-02-03 16:49:07 -05:00
|
|
|
int mretv = menu( list, input, dmenu_prompt,NULL, NULL,
|
|
|
|
token_match, NULL, &selected_line );
|
2014-01-29 18:47:23 -05:00
|
|
|
|
2014-02-01 08:03:23 -05:00
|
|
|
if ( mretv == MENU_NEXT ) {
|
2014-01-29 18:47:23 -05:00
|
|
|
retv = DMENU_DIALOG;
|
2014-02-01 08:03:23 -05:00
|
|
|
} 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 15:32:36 -05:00
|
|
|
fputs( *input, stdout );
|
2014-01-29 18:47:23 -05:00
|
|
|
}
|
2014-01-30 15:32:36 -05:00
|
|
|
|
2014-02-01 16:31:07 -05:00
|
|
|
for ( unsigned int i=0; list != NULL && list[i] != NULL; i++ ) {
|
2014-01-29 18:47:23 -05:00
|
|
|
free( list[i] );
|
|
|
|
}
|
2014-01-30 04:02:01 -05:00
|
|
|
|
2014-02-01 17:04:45 -05:00
|
|
|
if ( list != NULL ) free( list );
|
2014-02-03 17:07:04 -05:00
|
|
|
|
2014-01-29 18:47:23 -05:00
|
|
|
return retv;
|
|
|
|
}
|
|
|
|
|