App-Asciio
view release on metacpan or search on metacpan
lib/App/Asciio/stripes/stripes.pm view on Meta::CPAN
{
}
#-----------------------------------------------------------------------------
sub get_selection_action
{
'move' ;
}
#-----------------------------------------------------------------------------
sub get_colors
{
my ($self) = @_ ;
return $self->{COLORS}{BACKGROUND}, $self->{COLORS}{FOREGROUND} ;
}
#-----------------------------------------------------------------------------
sub set_background_color
{
my ($self, $background_color) = @_ ;
$self->{COLORS}{BACKGROUND} = $background_color ;
}
#-----------------------------------------------------------------------------
sub set_foreground_color
{
my ($self, $foreground_color) = @_ ;
$self->{COLORS}{FOREGROUND} = $foreground_color ;
}
#-----------------------------------------------------------------------------
sub set_colors
{
my ($self, $background_color, $foreground_color) = @_ ;
$self->{COLORS}{BACKGROUND} = $background_color ;
$self->{COLORS}{FOREGROUND} = $foreground_color ;
}
#-----------------------------------------------------------------------------
sub get_text
{
}
#-----------------------------------------------------------------------------
sub set_text
{
}
#-----------------------------------------------------------------------------
sub edit
{
}
#-----------------------------------------------------------------------------
sub match_connector
{
}
#-----------------------------------------------------------------------------
sub get_connector_points
{
}
sub get_connection_points
{
}
sub get_extra_points
{
}
#-----------------------------------------------------------------------------
sub get_named_connection
{
}
#-----------------------------------------------------------------------------
sub move_connector
{
}
#-----------------------------------------------------------------------------
sub is_autoconnect_enabled
{
my ($self) = @_ ;
return ! $self->{AUTOCONNECT_DISABLED} ;
}
#-----------------------------------------------------------------------------
sub enable_autoconnect
{
my ($self, $enable) = @_ ;
$self->{AUTOCONNECT_DISABLED} = !$enable ;
}
#-----------------------------------------------------------------------------
sub set
{
# set fields in the hash
my ($self, %key_values) = @_ ;
( run in 2.578 seconds using v1.01-cache-2.11-cpan-98e64b0badf )