App-Asciio
view release on metacpan or search on metacpan
document what ascii_events should contain
links to gtk doc
should the content itself be defined in the derived class?
split into two distributions?
=> easier for those who want to build another interface
setup/actions manipulating asciio object directely move to asciio
transparent background for cmd output
width > spaces == transparent
spaces => transparent
0 => transparent
merge arrows and split arrow
arrow merge object
like a single character text but nicer to use with arrows
or merge arrow connections directely (weld them together)
multi-ended connectors
add remove end from multi ended connectors
#refactor other end offsetting (used in move and resize)
#missing: save connections
#error moving groups looses connection
#thrown a few boxes and arrows in an empty document
#keyboard short cut
transparent mode
show connectors connections
#resize connectee doesn't move the connector
#move group looses connections
#resizing downright arrow flips it to rightdown
handle multiple character start and end in angled arrow
handle \t in text
setup/actions/unsorted.pl view on Meta::CPAN
use strict ;
use warnings ;
#----------------------------------------------------------------------------------------------
register_action_handlers
(
'Create multiple box elements from a text description' => ['C00-m', \&insert_multiple_boxes_from_text_description, 1],
'Create multiple text elements from a text description' => ['C0S-M', \&insert_multiple_boxes_from_text_description, 0],
'Flip transparent element background' => ['C00-t', \&transparent_elements],
'Flip grid display' => ['000-g', \&flip_grid_display],
'Flip color scheme' => ['CA0-c', \&flip_color_scheme],
'Undo' => ['C00-z', \&undo],
'Display undo stack statistics' => ['C0S-Z', \&display_undo_stack_statistics],
'Redo' => ['C00-y', \&redo],
'Display keyboard mapping' => ['000-k', \&display_keyboard_mapping],
'Display commands' => ['C00-k', \&display_commands],
'Display action files' => ['C0S-K', \&display_action_files],
'Zoom in' => ['000-KP_Add', \&zoom, 1],
'Zoom out' => ['000-minus', \&zoom, -1],
setup/actions/unsorted.pl view on Meta::CPAN
sub flip_grid_display
{
my ($self) = @_ ;
$self->{DISPLAY_GRID} ^=1 ;
$self->update_display() ;
}
#----------------------------------------------------------------------------------------------
sub transparent_elements
{
my ($self) = @_ ;
$self->{OPAQUE_ELEMENTS} ^=1 ;
$self->update_display() ;
}
#----------------------------------------------------------------------------------------------
sub external_command_output
{
( run in 0.480 second using v1.01-cache-2.11-cpan-a1d94b6210f )