mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-18 13:54:36 -05:00
Add combi viewer.
Use by adding combi to the list of enabled modi.
This commit is contained in:
parent
55160c6eff
commit
9ff5a615e9
8 changed files with 174 additions and 5 deletions
|
@ -38,6 +38,7 @@ rofi_SOURCES=\
|
|||
source/dialogs/window.c\
|
||||
source/dialogs/ssh.c\
|
||||
source/dialogs/script.c\
|
||||
source/dialogs/combi.c\
|
||||
include/rofi.h\
|
||||
include/i3-support.h\
|
||||
include/xrmoptions.h\
|
||||
|
@ -46,6 +47,7 @@ rofi_SOURCES=\
|
|||
include/helper.h\
|
||||
include/x11-helper.h\
|
||||
include/dialogs/run.h\
|
||||
include/dialogs/combi.h\
|
||||
include/dialogs/window.h\
|
||||
include/dialogs/ssh.h\
|
||||
include/dialogs/dmenu.h\
|
||||
|
|
5
include/dialogs/combi.h
Normal file
5
include/dialogs/combi.h
Normal file
|
@ -0,0 +1,5 @@
|
|||
#ifndef __COMBI_DIALOG_H__
|
||||
#define __COMBI_DIALOG_H__
|
||||
|
||||
extern Switcher combi_mode;
|
||||
#endif
|
|
@ -104,7 +104,7 @@ int find_arg ( const char * const key );
|
|||
* @returns 1 when matches, 0 otherwise
|
||||
*/
|
||||
int token_match ( char **tokens, const char *input, int case_sensitive,
|
||||
__attribute__( ( unused ) ) int index,
|
||||
__attribute__( ( unused ) ) unsigned int index,
|
||||
__attribute__( ( unused ) ) Switcher * data );
|
||||
|
||||
/**
|
||||
|
|
|
@ -72,7 +72,7 @@ typedef enum
|
|||
*
|
||||
* @returns 1 when it matches, 0 if not.
|
||||
*/
|
||||
typedef int ( *menu_match_cb )( char **tokens, const char *input, int case_sensitive, int index, Switcher *data );
|
||||
typedef int ( *menu_match_cb )( char **tokens, const char *input, int case_sensitive, unsigned int index, Switcher *data );
|
||||
|
||||
/**
|
||||
* @param lines An array of strings to display.
|
||||
|
|
157
source/dialogs/combi.c
Normal file
157
source/dialogs/combi.c
Normal file
|
@ -0,0 +1,157 @@
|
|||
/**
|
||||
* rofi
|
||||
*
|
||||
* MIT/X11 License
|
||||
* Copyright 2013-2015 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.
|
||||
*
|
||||
*/
|
||||
#include <config.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <rofi.h>
|
||||
|
||||
extern unsigned int num_switchers;
|
||||
extern Switcher **switchers;
|
||||
/**
|
||||
* Combi Switcher
|
||||
*/
|
||||
typedef struct _CombiModePrivateData
|
||||
{
|
||||
// List of (combined) entries.
|
||||
char **cmd_list;
|
||||
unsigned int cmd_list_length;
|
||||
// List to validate where each switcher starts.
|
||||
unsigned int *starts;
|
||||
unsigned int *lengths;
|
||||
// List of switchers to combine.
|
||||
unsigned int num_switchers;
|
||||
Switcher **switchers;
|
||||
} CombiModePrivateData;
|
||||
|
||||
static void combi_add_switcher ( Switcher *sw, Switcher *m )
|
||||
{
|
||||
CombiModePrivateData *pd = sw->private_data;
|
||||
pd->switchers = g_realloc ( pd->switchers, ( pd->num_switchers + 2 ) * sizeof ( Switcher * ) );
|
||||
pd->switchers[pd->num_switchers] = m;
|
||||
pd->switchers[pd->num_switchers + 1] = NULL;
|
||||
pd->num_switchers++;
|
||||
}
|
||||
static void combi_mode_init ( Switcher *sw )
|
||||
{
|
||||
if ( sw->private_data == NULL ) {
|
||||
CombiModePrivateData *pd = g_malloc0 ( sizeof ( *pd ) );
|
||||
sw->private_data = (void *) pd;
|
||||
for ( unsigned int i = 0; i < num_switchers; i++ ) {
|
||||
if ( switchers[i] != sw ) {
|
||||
fprintf ( stderr, "Adding: %s\n", switchers[i]->name );
|
||||
combi_add_switcher ( sw, switchers[i] );
|
||||
}
|
||||
}
|
||||
pd->starts = g_malloc0 ( sizeof ( int ) * pd->num_switchers );
|
||||
pd->lengths = g_malloc0 ( sizeof ( int ) * pd->num_switchers );
|
||||
}
|
||||
}
|
||||
static char ** combi_mode_get_data ( unsigned int *length, Switcher *sw )
|
||||
{
|
||||
CombiModePrivateData *pd = sw->private_data;
|
||||
if ( pd->cmd_list == NULL ) {
|
||||
pd->cmd_list_length = 0;
|
||||
for ( unsigned int i = 0; i < pd->num_switchers; i++ ) {
|
||||
unsigned int length = 0;
|
||||
pd->switchers[i]->get_data ( &length, pd->switchers[i] );
|
||||
pd->starts[i] = pd->cmd_list_length;
|
||||
pd->lengths[i] = length;
|
||||
pd->cmd_list_length += length;
|
||||
}
|
||||
// Fill the list.
|
||||
pd->cmd_list = g_malloc0 ( ( pd->cmd_list_length + 1 ) * sizeof ( char* ) );
|
||||
for ( unsigned i = 0; i < pd->num_switchers; i++ ) {
|
||||
unsigned int length = 0;
|
||||
char **retv = pd->switchers[i]->get_data ( &length, pd->switchers[i] );
|
||||
for ( unsigned int j = 0; j < length; j++ ) {
|
||||
pd->cmd_list[j + pd->starts[i]] = retv[j];
|
||||
}
|
||||
}
|
||||
}
|
||||
*length = pd->cmd_list_length;
|
||||
return pd->cmd_list;
|
||||
}
|
||||
static void combi_mode_destroy ( Switcher *sw )
|
||||
{
|
||||
CombiModePrivateData *pd = (CombiModePrivateData *) sw->private_data;
|
||||
if ( pd != NULL ) {
|
||||
g_free ( pd->cmd_list );
|
||||
g_free ( pd->starts );
|
||||
g_free ( pd->lengths );
|
||||
g_free(pd->switchers);
|
||||
g_free ( pd );
|
||||
sw->private_data = NULL;
|
||||
}
|
||||
}
|
||||
static SwitcherMode combi_mode_result ( int mretv, char **input, unsigned int selected_line, Switcher *sw )
|
||||
{
|
||||
CombiModePrivateData *pd = sw->private_data;
|
||||
|
||||
for ( unsigned i = 0; i < pd->num_switchers; i++ ) {
|
||||
if ( selected_line >= pd->starts[i] &&
|
||||
selected_line < ( pd->starts[i] + pd->lengths[i] ) ) {
|
||||
return pd->switchers[i]->result ( mretv,
|
||||
input,
|
||||
selected_line - pd->starts[i],
|
||||
pd->switchers[i] );
|
||||
}
|
||||
}
|
||||
return MODE_EXIT;
|
||||
}
|
||||
static int combi_mode_match ( char **tokens, const char *input,
|
||||
int case_sensitive, unsigned int index, Switcher *sw )
|
||||
{
|
||||
CombiModePrivateData *pd = sw->private_data;
|
||||
|
||||
for ( unsigned i = 0; i < pd->num_switchers; i++ ) {
|
||||
if ( index >= pd->starts[i] && index < ( pd->starts[i] + pd->lengths[i] ) ) {
|
||||
return pd->switchers[i]->token_match ( tokens,
|
||||
input,
|
||||
case_sensitive,
|
||||
index - pd->starts[i],
|
||||
pd->switchers[i] );
|
||||
}
|
||||
}
|
||||
abort ();
|
||||
return 0;
|
||||
}
|
||||
|
||||
Switcher combi_mode =
|
||||
{
|
||||
.name = "combi",
|
||||
.tb = NULL,
|
||||
.keycfg = NULL,
|
||||
.keystr = NULL,
|
||||
.modmask = AnyModifier,
|
||||
.init = combi_mode_init,
|
||||
.get_data = combi_mode_get_data,
|
||||
.result = combi_mode_result,
|
||||
.destroy = combi_mode_destroy,
|
||||
.token_match = combi_mode_match,
|
||||
.private_data = NULL,
|
||||
.free = NULL
|
||||
};
|
|
@ -289,7 +289,7 @@ typedef struct _SwitcherModePrivateData
|
|||
} SwitcherModePrivateData;
|
||||
|
||||
static int window_match ( char **tokens, __attribute__( ( unused ) ) const char *input,
|
||||
int case_sensitive, int index, Switcher *sw )
|
||||
int case_sensitive, unsigned int index, Switcher *sw )
|
||||
{
|
||||
SwitcherModePrivateData *rmpd = (SwitcherModePrivateData *) sw->private_data;
|
||||
int match = 1;
|
||||
|
|
|
@ -317,7 +317,7 @@ int find_arg_char ( const char * const key, char *val )
|
|||
* Matches tokenized.
|
||||
*/
|
||||
int token_match ( char **tokens, const char *input, int case_sensitive,
|
||||
__attribute__( ( unused ) ) int index,
|
||||
__attribute__( ( unused ) ) unsigned int index,
|
||||
__attribute__( ( unused ) ) Switcher *data )
|
||||
{
|
||||
int match = 1;
|
||||
|
|
|
@ -55,6 +55,7 @@
|
|||
#include "dialogs/dmenu.h"
|
||||
#include "dialogs/script.h"
|
||||
#include "dialogs/window.h"
|
||||
#include "dialogs/combi.h"
|
||||
|
||||
#define LINE_MARGIN 3
|
||||
|
||||
|
@ -1579,6 +1580,11 @@ static void setup_switchers ( void )
|
|||
switchers[num_switchers] = &run_mode;
|
||||
num_switchers++;
|
||||
}
|
||||
// combi dialog
|
||||
else if ( strcasecmp ( token, "combi" ) == 0 ) {
|
||||
switchers[num_switchers] = &combi_mode;
|
||||
num_switchers++;
|
||||
}
|
||||
else {
|
||||
// If not build in, use custom switchers.
|
||||
Switcher *sw = script_switcher_parse_setup ( token );
|
||||
|
@ -1838,4 +1844,3 @@ SwitcherMode switcher_run ( char **input, Switcher *sw )
|
|||
|
||||
return retv;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue