my $hbox = ...
my $replacepoint = ManaTools::Shared::GUI::ReplacePoint->new(eventHandler => $dialog, parentWidget => $hbox);
my $container = $replacepoint->container();
my $vbox1 = $factory->createVBox($container);
my $button1 = $self->addWidget($backendItem->label() .'_button1', $factory->createPushButton('Button 1', $vbox1), sub {
my $self = shift;
my $yevent = shift;
my $backendItem = shift;
my $replacepoint = $self->eventHandler();
...
}, $backendItem);
my $button2 = $self->addWidget($backendItem->label() .'_button2', $factory->createPushButton('Button 2', $vbox), sub {...}, $backendItem);
my $vbox2 = $factory->createVBox($container);
my $vbox3 = $factory->createVBox($container);
$replacepoint->finished();
...
$replacepoint->clear(); ... # start anew with adding widgets, items, etc... ... $replacepoint->finished();
perldoc ManaTools::Shared::GUI::ReplacePoint
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2, as published by the Free Software Foundation.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
hash ref containing eventHandler: the parent that does eventHandlerRole parentWidget: the parent widget
DESCRIPTION
new is inherited from Moose, to create a ReplacePoint object
$self: this object
DESCRIPTION
builds the YReplacePoint widget
$self: this object
DESCRIPTION
clears the replacepoint to prepare for re-adding new items, call finished() afterwards
$self: this object
DESCRIPTION
finalizes the widgets on the ReplacePoint