@ -1,4 +1,5 @@
# include <string.h>
# include <string.h>
# include <strings.h>
# include "sway/commands.h"
# include "sway/commands.h"
# include "sway/config.h"
# include "sway/config.h"
# include "sway/tree/arrange.h"
# include "sway/tree/arrange.h"
@ -13,19 +14,15 @@ enum gaps_op {
GAPS_OP_SUBTRACT
GAPS_OP_SUBTRACT
} ;
} ;
enum gaps_scope {
struct gaps_data {
GAPS_SCOPE_ALL ,
bool inner ;
GAPS_SCOPE_WORKSPACE ,
enum gaps_op operation ;
GAPS_SCOPE_CURRENT
int amount ;
} ;
} ;
struct cmd_results * cmd_gaps ( int argc , char * * argv ) {
// gaps edge_gaps on|off|toggle
struct cmd_results * error = checkarg ( argc , " gaps " , EXPECTED_AT_LEAST , 1 ) ;
static struct cmd_results * gaps_edge_gaps ( int argc , char * * argv ) {
if ( error ) {
struct cmd_results * error ;
return error ;
}
if ( strcmp ( argv [ 0 ] , " edge_gaps " ) = = 0 ) {
if ( ( error = checkarg ( argc , " gaps " , EXPECTED_AT_LEAST , 2 ) ) ) {
if ( ( error = checkarg ( argc , " gaps " , EXPECTED_AT_LEAST , 2 ) ) ) {
return error ;
return error ;
}
}
@ -45,140 +42,139 @@ struct cmd_results *cmd_gaps(int argc, char **argv) {
" gaps edge_gaps on|off|toggle " ) ;
" gaps edge_gaps on|off|toggle " ) ;
}
}
arrange_root ( ) ;
arrange_root ( ) ;
} else {
return cmd_results_new ( CMD_SUCCESS , NULL , NULL ) ;
int amount_idx = 0 ; // the current index in argv
}
enum gaps_op op = GAPS_OP_SET ;
enum gaps_scope scope = GAPS_SCOPE_ALL ;
bool inner = true ;
if ( strcmp ( argv [ 0 ] , " inner " ) = = 0 ) {
// gaps inner|outer <px>
amount_idx + + ;
static struct cmd_results * gaps_set_defaults ( int argc , char * * argv ) {
struct cmd_results * error = checkarg ( argc , " gaps " , EXPECTED_EQUAL_TO , 2 ) ;
if ( error ) {
return error ;
}
bool inner ;
if ( strcasecmp ( argv [ 0 ] , " inner " ) = = 0 ) {
inner = true ;
inner = true ;
} else if ( strcmp ( argv [ 0 ] , " outer " ) = = 0 ) {
} else if ( strcasecmp ( argv [ 0 ] , " outer " ) = = 0 ) {
amount_idx + + ;
inner = false ;
inner = false ;
} else {
return cmd_results_new ( CMD_INVALID , " gaps " ,
" Expected 'gaps inner|outer <px>' " ) ;
}
}
// If one of the long variants of the gaps command is used
char * end ;
// (which starts with inner|outer) check the number of args
int amount = strtol ( argv [ 1 ] , & end , 10 ) ;
if ( amount_idx > 0 ) { // if we've seen inner|outer
if ( strlen ( end ) & & strcasecmp ( end , " px " ) ! = 0 ) {
if ( argc > 2 ) { // check the longest variant
return cmd_results_new ( CMD_INVALID , " gaps " ,
error = checkarg ( argc , " gaps " , EXPECTED_EQUAL_TO , 4 ) ;
" Expected 'gaps inner|outer <px>' " ) ;
if ( error ) {
return error ;
}
}
} else { // check the next longest format
error = checkarg ( argc , " gaps " , EXPECTED_EQUAL_TO , 2 ) ;
if ( inner ) {
if ( error ) {
config - > gaps_inner = amount ;
return error ;
} else {
config - > gaps_outer = amount ;
}
}
return cmd_results_new ( CMD_SUCCESS , NULL , NULL ) ;
}
static void configure_gaps ( struct sway_workspace * ws , void * _data ) {
struct gaps_data * data = _data ;
int * prop = data - > inner ? & ws - > gaps_inner : & ws - > gaps_outer ;
switch ( data - > operation ) {
case GAPS_OP_SET :
* prop = data - > amount ;
break ;
case GAPS_OP_ADD :
* prop + = data - > amount ;
break ;
case GAPS_OP_SUBTRACT :
* prop - = data - > amount ;
break ;
}
}
} else {
arrange_workspace ( ws ) ;
error = checkarg ( argc , " gaps " , EXPECTED_EQUAL_TO , 1 ) ;
}
// gaps inner|outer current|all set|plus|minus <px>
static struct cmd_results * gaps_set_runtime ( int argc , char * * argv ) {
struct cmd_results * error = checkarg ( argc , " gaps " , EXPECTED_EQUAL_TO , 4 ) ;
if ( error ) {
if ( error ) {
return error ;
return error ;
}
}
struct gaps_data data ;
if ( strcasecmp ( argv [ 0 ] , " inner " ) = = 0 ) {
data . inner = true ;
} else if ( strcasecmp ( argv [ 0 ] , " outer " ) = = 0 ) {
data . inner = false ;
} else {
return cmd_results_new ( CMD_INVALID , " gaps " ,
" Expected 'gaps inner|outer current|all set|plus|minus <px>' " ) ;
}
}
if ( argc = = 4 ) {
bool all ;
// Long format: all|workspace|current.
if ( strcasecmp ( argv [ 1 ] , " current " ) = = 0 ) {
if ( strcmp ( argv [ amount_idx ] , " all " ) = = 0 ) {
all = false ;
amount_idx + + ;
} else if ( strcasecmp ( argv [ 1 ] , " all " ) = = 0 ) {
scope = GAPS_SCOPE_ALL ;
all = true ;
} else if ( strcmp ( argv [ amount_idx ] , " workspace " ) = = 0 ) {
} else {
amount_idx + + ;
return cmd_results_new ( CMD_INVALID , " gaps " ,
scope = GAPS_SCOPE_WORKSPACE ;
" Expected 'gaps inner|outer current|all set|plus|minus <px>' " ) ;
} else if ( strcmp ( argv [ amount_idx ] , " current " ) = = 0 ) {
amount_idx + + ;
scope = GAPS_SCOPE_CURRENT ;
}
// Long format: set|plus|minus
if ( strcmp ( argv [ amount_idx ] , " set " ) = = 0 ) {
amount_idx + + ;
op = GAPS_OP_SET ;
} else if ( strcmp ( argv [ amount_idx ] , " plus " ) = = 0 ) {
amount_idx + + ;
op = GAPS_OP_ADD ;
} else if ( strcmp ( argv [ amount_idx ] , " minus " ) = = 0 ) {
amount_idx + + ;
op = GAPS_OP_SUBTRACT ;
}
}
if ( strcasecmp ( argv [ 2 ] , " set " ) = = 0 ) {
data . operation = GAPS_OP_SET ;
} else if ( strcasecmp ( argv [ 2 ] , " plus " ) = = 0 ) {
data . operation = GAPS_OP_ADD ;
} else if ( strcasecmp ( argv [ 2 ] , " minus " ) = = 0 ) {
data . operation = GAPS_OP_SUBTRACT ;
} else {
return cmd_results_new ( CMD_INVALID , " gaps " ,
" Expected 'gaps inner|outer current|all set|plus|minus <px>' " ) ;
}
}
char * end ;
char * end ;
double val = strtod ( argv [ amount_idx ] , & end ) ;
data . amount = strtol ( argv [ 3 ] , & end , 10 ) ;
if ( strlen ( end ) & & strcasecmp ( end , " px " ) ! = 0 ) {
if ( strlen ( end ) & & val = = 0.0 ) { // invalid <amount>
// guess which variant of the command was attempted
if ( argc = = 1 ) {
return cmd_results_new ( CMD_INVALID , " gaps " , " gaps <amount> " ) ;
}
if ( argc = = 2 ) {
return cmd_results_new ( CMD_INVALID , " gaps " ,
return cmd_results_new ( CMD_INVALID , " gaps " ,
" gaps inner|outer <amount> " ) ;
" Expected 'gaps inner|outer current|all set|plus|minus <px>' " ) ;
}
}
return cmd_results_new ( CMD_INVALID , " gaps " ,
" gaps inner|outer all|workspace|current set|plus|minus <amount> " ) ;
if ( all ) {
root_for_each_workspace ( configure_gaps , & data ) ;
} else {
configure_gaps ( config - > handler_context . workspace , & data ) ;
}
}
if ( amount_idx = = 0 ) { // gaps <amount>
config - > gaps_inner = val ;
config - > gaps_outer = val ;
arrange_root ( ) ;
return cmd_results_new ( CMD_SUCCESS , NULL , NULL ) ;
return cmd_results_new ( CMD_SUCCESS , NULL , NULL ) ;
}
}
// Other variants. The middle-length variant (gaps inner|outer <amount>)
// just defaults the scope to "all" and defaults the op to "set".
double total ;
// gaps edge_gaps on|off|toggle
switch ( op ) {
// gaps inner|outer <px> - sets defaults for workspaces
case GAPS_OP_SUBTRACT : {
// gaps inner|outer current|all set|plus|minus <px> - runtime only
total = ( inner ? config - > gaps_inner : config - > gaps_outer ) - val ;
struct cmd_results * cmd_gaps ( int argc , char * * argv ) {
if ( total < 0 ) {
struct cmd_results * error = checkarg ( argc , " gaps " , EXPECTED_AT_LEAST , 2 ) ;
total = 0 ;
if ( error ) {
}
return error ;
break ;
}
case GAPS_OP_ADD : {
total = ( inner ? config - > gaps_inner : config - > gaps_outer ) + val ;
break ;
}
case GAPS_OP_SET : {
total = val ;
break ;
}
}
}
if ( scope = = GAPS_SCOPE_ALL ) {
if ( strcmp ( argv [ 0 ] , " edge_gaps " ) = = 0 ) {
if ( inner ) {
return gaps_edge_gaps ( argc , argv ) ;
config - > gaps_inner = total ;
} else {
config - > gaps_outer = total ;
}
}
arrange_root ( ) ;
} else {
if ( argc = = 2 ) {
if ( scope = = GAPS_SCOPE_WORKSPACE ) {
return gaps_set_defaults ( argc , argv ) ;
struct sway_workspace * ws = config - > handler_context . workspace ;
ws - > has_gaps = true ;
if ( inner ) {
ws - > gaps_inner = total ;
} else {
ws - > gaps_outer = total ;
}
}
arrange_workspace ( ws ) ;
if ( argc = = 4 ) {
} else {
if ( config - > active ) {
struct sway_container * c = config - > handler_context . container ;
return gaps_set_runtime ( argc , argv ) ;
c - > has_gaps = true ;
if ( inner ) {
c - > gaps_inner = total ;
} else {
} else {
c - > gaps_outer = total ;
return cmd_results_new ( CMD_INVALID , " gaps " ,
}
" This syntax can only be used when sway is running " ) ;
arrange_workspace ( c - > workspace ) ;
}
}
}
}
}
return cmd_results_new ( CMD_INVALID , " gaps " ,
return cmd_results_new ( CMD_SUCCESS , NULL , NULL ) ;
" Expected 'gaps inner|outer <px>' or "
" 'gaps inner|outer current|all set|plus|minus <px>' " ) ;
}
}