Changes between Version 5 and Version 6 of PadrePluginCookbook03
- Timestamp:
- 07/11/11 11:50:12 (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PadrePluginCookbook03
v5 v6 1 1 [[PageOutline(1-4)]] 2 = Padre::Plugin::Cookbook 032 = Padre::Plugin::Cookbook Recipe-03 3 3 * Every Plug-in needs an About dialogue or Multiple Dialogues. 4 * This page complements {{{Padre::Plugin::Cookbook 03}}}, it is not meant to be installable, just an aid, with a suggested layout, enjoy. More detail will follow in subsequent Cookbooks.5 * Cookbook03.zip in Attachments.4 * This page complements {{{Padre::Plugin::Cookbook Recipe-03}}}, it is not meant to be installable, just an aid, with a suggested layout, enjoy. More detail will follow in subsequent Cookbooks. 5 * You can either svn Padre::Plugin::Cookbook of build your own with Cookbook03.zip in Attachments. 6 6 7 7 == Step 1 - Create Skeleton 8 Padre can do this for you see [wiki:Features/ProjectSkeletonGeneration Project Skeleton Generation] 8 9 * Assumption you are building in your copy of Padre trunk. 9 10 … … 180 181 * perl dev -a -die 181 182 * You should now have Cookbook03 in your Tools menu, enjoy. 182 * note the maximize icon on Output ( thanks to azawawi ). 183 {{{#!perl 184 $main->config->apply( 'main_lockinterface', 0 ); 185 $self->config->write; 186 }}} 183 187 184 == Foot Notes 188 185 === Why Main, So we can have About … … 192 189 The FB tells me it's nought to do with me (FB {{{FormBuilder}}}). 193 190 * Main.pm is the event handler for {{{MainFb.pm}}}. 194 * About.pm is the event handler fo {{{AboutFB.pm}}}.191 * About.pm is the event handler for {{{AboutFB.pm}}}. 195 192 196 193 === Garbage
