SilverScreen Solid Modeler

set_status_change_handler

set_status_change_handler

Previous topic Next topic  

set_status_change_handler

Previous topic Next topic JavaScript is required for the print function  

SilverPlusRect

SilverEngineRect

 

StatusChangeHandler

  set_status_change_handler(StatusChangeHandler my_status_change_handler);

 

 

 

 

 

 



 

Synopsis

#include "silver.h"

 

The set_status_change_handler function defines a handler for SilverEngine status changes. This is very similar to the routine set_location_change_handler, but is called with more frequency for general drawing state changes.

 

 

Parameters

my_status_change_handler is a SilverC API function pointer to a StatusChangeHandler that is called whenever there is a general drawing state change that might cause an  informational refresh.  It is declared as follows, and is only relevant in SilverPlus and SilverEngine development models.

 

typedef void SILVERC_API (SDCCALL *StatusChangeHandler)( void );

 

 

Return Value

set_status_change_handler returns a pointer to the active status change handler. Your handler should not return any value.

 

 

See Also

set_location_change_handler, set_qmessage_handler, set_show_error_handler