| 712 | | === output |
| 713 | | * To use Padre Output window, to talk to our users, or we could just **say** to terminal :) |
| | 712 | === sub boilerplate |
| | 713 | To use Padre internal features |
| | 714 | {{{#!perl |
| | 715 | sub set_name_label_value { |
| | 716 | my $self = shift; |
| | 717 | my $main = $self->main; |
| | 718 | }}} |
| | 719 | === Config |
| | 720 | To use Padre Configuration variables, first we need some more boilerplate. |
| | 721 | {{{#!perl |
| | 722 | my $config = $main->config; |
| | 723 | }}} |
| | 724 | Then we can read the contets |
| | 725 | {{{#!perl |
| | 726 | $config->identity_nickname |
| | 727 | }}} |
| | 728 | You may ask how did I know which $config to call, just look in Tools->Preferences->Advanced. |
| | 729 | === Output |
| | 730 | To use Padre Output window, to talk to our users, or we could just **say** to terminal :) |