ctkAssistent

        Unlike the base class ctkAssistent this class sets up
        the selection list for assisted values as a modal dialog.
        This may have some advantages, but usually it is not used.
        To use this mode simply adapt the constructor message in the dialog
        ctkDlgGetCode::Populate and ctkDialogs::dlg_getOrder.

Public interface

        my $assistent = ctkAssistentModal->new(-parent => $mw);
        $code = $assistent->Show();

Programmin notes

        None

Maintenance

        Author: marco
        date:   07.03.2008
        History
                        07.03.2008 varsion 1.01 , first draft.

Methods

new

Properties

        See base class.

Private methods

_popupMenu4Values { =item _execPopupmenu4Values {

new

                Create a new instance .
                It simply routes arguments to the base class.

_popupMenu4Values

        Set up the modal popup to select assisted values.
Arguments
        - self,
        - ref to main window,
        - ref to text widget receiving the selected value.
        These args must be passed to the individual selection methods.
Return
        Ref to the popup menu
Notes
        Sasme as base class ctkAssistent

_execPopupmenu4Values

        Execute the popup menu to select assisted values.
Arguments
        - self
        - ref to main window
        - ref to text widget receiving the selected value.
Return
        Always undef.
Notes
        - Popup has replaced Menubutton which didn't work properly.

Back to index