ResPluginToFrontF_t

A function you must write to bring the resource editor window to front

Synopsis:



typedef void ResPluginToFrontF_t ( ResPluginHandle_t handle )

Description:

This function is exported in the ResPluginFullEditor_t structure.

This function is called by PhAB to indicate that the plugin should bring the full editor's window to the front.

Arguments:

handle
The ResPluginHandle_t handle returned when the instance of the editor is created with ResPluginFullCreateF_t.

Examples:

This sample function is from the complete plugin example at the end of this chapter.

static void plugin_full_to_front( ResPluginHandle_t handle )
{
  PluginFullInstance_t *instance = ( PluginFullInstance_t * ) handle;
  instance->exp->to_front( instance->convenience_handle );
}

Classification:

QNX Neutrino

See also:

ResPluginFrugalCreateF_t, ResPluginFullCreateF_t, ResPluginFullEditor_t.