App-Asciio
view release on metacpan or search on metacpan
setup/GTK/actions/clipboard.pl view on Meta::CPAN
use List::Util qw(min max) ;
#----------------------------------------------------------------------------------------------
register_action_handlers
(
'Export to clipboard & primary as ascii'=> ['C00-e', \&export_to_clipboard_as_ascii] ,
'Import from clipboard to box'=> ['C0S-E', \&import_from_clipboard_to_box] ,
'Import from primary to box'=> ['0A0-e', \&import_from_primary_to_box] ,
) ;
#----------------------------------------------------------------------------------------------
sub export_to_clipboard_as_ascii
{
my ($self) = @_ ;
my $ascii = $self->transform_elements_to_ascii_buffer($self->get_selected_elements(1)) ;
Gtk2::Clipboard->get (Gtk2::Gdk->SELECTION_CLIPBOARD)->set_text($ascii);
# also put in selection -- DH
Gtk2::Clipboard->get (Gtk2::Gdk->SELECTION_PRIMARY)->set_text($ascii);
}
#----------------------------------------------------------------------------------------------
sub import_from_clipboard_to_box
{
my ($self) = @_ ;
my $ascii = Gtk2::Clipboard->get (Gtk2::Gdk->SELECTION_CLIPBOARD)->wait_for_text();
my $element = $self->add_new_element_named('stencils/asciio/box', $self->{MOUSE_X}, $self->{MOUSE_Y}) ;
$element->set_text('', $ascii) ;
$self->select_elements(1, $element) ;
$self->update_display() ;
}
#----------------------------------------------------------------------------------------------
sub import_from_primary_to_box
{
my ($self) = @_ ;
my $ascii = Gtk2::Clipboard->get (Gtk2::Gdk->SELECTION_PRIMARY)->wait_for_text();
my $element = $self->add_new_element_named('stencils/asciio/box', $self->{MOUSE_X}, $self->{MOUSE_Y}) ;
$element->set_text('', $ascii) ;
$self->select_elements(1, $element) ;
$self->update_display() ;
}
#----------------------------------------------------------------------------------------------
( run in 1.446 second using v1.01-cache-2.11-cpan-81fc1098f69 )