NAME

Devel::MAT::UI - extend the user interface of a Devel::MAT explorer

DESCRIPTION

This virtual package provides methods that Devel::MAT::Tool classes can use to extend the user interface provided by a Devel::MAT explorer program. This package does not exist in a real .pm file; instead, the methods should be provided directly by the explorer program. A tool class can rely on being able to call them without doing anything special - do not attempt to use Devel::MAT::UI.

METHODS

Devel::MAT::UI->register_icon( name => $name, ... )

A tool may call this to register a named icon image with the UI, for later use in an SV list column or SV detail. The name of the icon is taken from the name key, and the specific UI implementation will use one of the other keys to provide the value for its type.

This icon is used by SV list columns or SV details where the type is icon. The value set gives the name the icon was registered with.

svg => PATH (GTK)

Gives a path name to an SVG file containing image data. This path is relative to the share directory of the package, managed by File::ShareDir.

$columm = Devel::MAT::UI->provides_svlist_column( type => ..., title => ... )

A tool may call this to declare that it wishes to provide a new column to display in the main SV list on the user interface. It returns an opaque column value that should be passed to set_svlist_column_values to provide data for the column.

type => STRING

The type of the column. This may be int, text or icon.

title => STRING

The title to display in the column header.

Devel::MAT::UI->set_svlist_column_values( column => $column, from => $from )

A tool may call this to provide the values to display in the SV list column it earlier created by calling provides_svlist_column.

column => SCALAR

The value returned from provides_svlist_column.

from => CODE

A function to generate the value to store for each SV. Is invoked with each SV in the SV list, and should return the value to set in the column.

$value = $from->( $sv )

Devel::MAT::UI->provides_sv_detail( type => $type, title => $title, render => $render )

A tool may call this to declare that it provides a section of detail about an SV.

type => STRING

The type of the column. This may be text or icon.

title => STRING

The title to display alongside the detail cell on the main SV display pane.

render => CODE

A function to generate the display for a given SV address. It is invoked with an SV to display, and should a value whose meaning depends on the type. If it returns unde then the row is not displayed for this SV.

$value = $render->( $sv )

AUTHOR

Paul Evans <leonerd@leonerd.org.uk>