Widget: XXX #PLACE HERE YOUR REAL CLASSNAME
use class::XXX; #PLACE HERE YOUR REAL CLASSNAME
The file XXX.pm is located in the subdirectory './class'
#HERE YOU SHOULD WRITE A BRIEF DESCRIPTION OF YOUR OBJECT
Coding: 0% done
Documentation: up-to-date
Do not set/read them directly, use the Get/Set methods instead.
All properties derived from the class EmbObj.
# PLACE ADDITIONAL ATTRIBUTES HERE
NOTE: The following attributes are used for the Tk widgets building the GUI and are accessed directly (no get/set methods):
All GUI attributes derived from the class EmbObj.
#PLACE ADDITIONAL GUI STUFF HERE
Here your widget could build up all its own widgets and gets initialised
$object->do_detsroy();
This ``destructor'' method is binded to the ``<DESTROY>'' event and should be performed whenever the element is destroyed. It should not be called directly.
my @export_text
= $object->export_to_backend();
This function exports the content of the object to the current backend.
The function is called in the document-exporting process, whenever an embeded object is found.
It returns the text for exporting the object.
$object->_on_btn_prop_click();
Overwritten function of EmbObj. This should perform the opening of the properties dialog.
$object->_before_save();
This function is called before the $self->{'_data'}-subbranch gets saved.
Use this for flatten complicated data structures into {'_data'}.
$object->_after_save();
This function is called after the $self->{'_data'}-subbranch got saved.
$object->_before_load();
This function is called before the $self->{'_data'}-subbranch is loaded from file.
$object->_after_load();
This function is called after the $self->{'_data'}-subbranch is loaded from file.
Use this function to build up complicated data structures from the flat {'_data'}-subbranch
$object->_before_expand();
This function is called before the object gets expanded.
$object->_after_expand();
This function is called after the object gets expanded.
$object->_before_collapse();
This function is called before the object gets collapsed.
$object->_after_collapse();
This function is called after the object gets collapsed.
$object->_after_backend_changed();
This function is called after the current backend changed