App-Codit
view release on metacpan or search on metacpan
lib/App/Codit/Plugins/Snippets.pm view on Meta::CPAN
package App::Codit::Plugins::Snippets;
=head1 NAME
App::Codit::Plugins::Snippets - plugin for App::Codit
=cut
use strict;
use warnings;
use vars qw( $VERSION );
$VERSION = '0.19';
use Carp;
use base qw( Tk::AppWindow::BaseClasses::Plugin );
require Tk::HList;
require Tk::XText;
use File::Path qw(make_path);
=head1 DESCRIPTION
Quick and easy code samples.
=head1 DETAILS
Snippets are shorts pieces of code that you find yourself writing over and over again.
The top side of the panel allows you to manage your collection of snippets.
The bottom side allows you to insert a selected snippet into your document,
copy the snippet to the clipboard or create a new document based on the snippet.
A file dialog is launched and the snippet is saved to the selected file name.
Then it is opened in a new tab.
=cut
sub new {
my $class = shift;
my $self = $class->SUPER::new(@_);
return undef unless defined $self;
$self->{CURRENT} = undef;
# my $tp = $self->extGet('ToolPanel');
# my $page = $tp->addPage('Snippets', 'insert-text', undef, 'Snippets');
my $page = $self->ToolRightPageAdd('Snippets', 'insert-text', undef, 'Snippets', 350);
my @padding = (-padx => 2, -pady => 2);
my $lf = $page->Frame(
-relief => 'groove',
-borderwidth => 2,
)->pack(@padding, -fill => 'x');
$lf->Button(
-text => 'New',
-command => ['snippetNew', $self],
)->pack(@padding, -fill => 'x');
$lf->Button(
-text => 'Copy to',
-command => ['snippetCopy', $self],
)->pack(@padding, -fill=> 'x');
$lf->Button(
-text => 'Delete',
-command => ['snippetDelete', $self],
)->pack(@padding, -fill => 'x');
my $hlist = $lf->Scrolled('HList',
-browsecmd => ['listSelect', $self],
-height => 4,
-scrollbars => 'osoe',
)->pack(@padding, -expand => 1, -fill => 'both');
$self->{LIST} = $hlist;
$page->Adjuster(
-side => 'top',
-widget => $lf,
)->pack(-fill => 'x');
my $sf = $page->Frame(
-relief => 'groove',
-borderwidth => 2,
)->pack(@padding, -expand => 1, -fill => 'both');
$sf->Button(
-text => 'Insert',
-command => ['snippetInsert', $self],
)->pack(@padding, -fill => 'x');
$sf->Button(
-text => 'Clipboard',
-command => ['snippetClipboard', $self],
)->pack(@padding, -fill => 'x');
$sf->Button(
-text => 'Create',
-command => ['snippetCreate', $self],
)->pack(@padding, -fill => 'x');
my @to = ();
my $text = $sf->Scrolled('XText', @to,
-scrollbars => 'osoe',
-tabs => '8m',
-wrap => 'none',
-height => 4,
lib/App/Codit/Plugins/Snippets.pm view on Meta::CPAN
}
sub snippetDialog {
my ($self, $value) = @_;
$value = '' unless defined $value;
return $self->popEntry('New snippet', 'Please enter a snippet name', $value, 'dialog-information')
}
sub snippetGet {
my $self = shift;
my $text = $self->_text;
return $text->get('1.0', 'end -1c')
}
sub snippetInsert {
my $self = shift;
my $cur = $self->current;
return unless defined $cur;
$self->cmdExecute('edit_insert', 'insert', $self->snippetGet);
}
sub snippetLoad {
my ($self, $item) = @_;
$item = $self->current unless defined $item;
return unless defined $item;
$item = $self->itemText($item);
my $txt = $self->_text;
$txt->clear;
my $file = $self->snippetsFolder . "/$item";
$txt->load($file) if -e $file;
}
sub snippetNew {
my $self = shift;
my $item = $self->snippetDialog;
return if $self->_list->infoExists($item);
$self->snippetAdd($item) if defined $item;
}
sub snippetSave {
my ($self, $item) = @_;
$item = $self->current unless defined $item;
return unless defined $item;
$item = $self->itemText($item);
my $txt = $self->_text;
$txt->save($self->snippetsFolder . "/$item")
}
sub snippetsFolder {
my $self = shift;
my $config = $self->extGet('ConfigFolder')->ConfigFolder . '/Snippets';
make_path($config) unless -e $config;
return $config
}
sub Unload {
my $self = shift;
$self->snippetSave;
$self->ToolRightPageRemove('Snippets');
# $self->extGet('ToolPanel')->deletePage('Snippets');
return $self->SUPER::Unload
}
=head1 LICENSE
Same as Perl.
=head1 AUTHOR
Hans Jeuken (hanje at cpan dot org)
=head1 TODO
=over 4
=back
=head1 BUGS AND CAVEATS
If you find any bugs, please report them here L<https://github.com/haje61/App-Codit/issues>.
=head1 SEE ALSO
=over 4
=back
=cut
1;
( run in 0.732 second using v1.01-cache-2.11-cpan-99c4e6809bf )