GO2cam Pascal API

Functions

int PPI_CALL ()
 procedure name called by PPG
 
void SPI_WIN_call_panel ()
 parameters panel is displayed during PP execution.
utilization : - SPI_WIN_new_panel : initializes parameters panel
% - SPI_WIN_write_... : create parameters
% - SPI_WIN_call_panel: display, input parameters
- SPI_WIN_read_... : read parameters values
 
void SPI_WIN_new_panel ()
 New parameters panel during PP execution.
 
void WRITE_PART_string (int Bclef, const std::string &Str)
 writes a string in current part.
 

Detailed Description

other xCALL

Function Documentation

◆ PPI_CALL()

int PPI_CALL ( )

procedure name called by PPG

ppcall = ICALL(PPI_CALL);
int PPI_CALL()
procedure name called by PPG
Definition pp_pas28.c:166

◆ SPI_WIN_call_panel()

void SPI_WIN_call_panel ( )

parameters panel is displayed during PP execution.
utilization : - SPI_WIN_new_panel : initializes parameters panel
% - SPI_WIN_write_... : create parameters
% - SPI_WIN_call_panel: display, input parameters
- SPI_WIN_read_... : read parameters values

Version
4.4

Disply the new dialog box while running.

Remarks
This function must be called after SPI_WIN_NEW_PANEL
and the parameters definition of the new dialog box.
PCALL(SPI_WIN_CALL_PANEL);
See also
SPI_WIN_NEW_PANEL

◆ SPI_WIN_new_panel()

void SPI_WIN_new_panel ( )

New parameters panel during PP execution.

Version
4.4
Remarks
this function allows to get a value during PP execution.
It must be called before the new parameter definition.
after it, the initial parameters are nomore valid.
PCALL(SPI_WIN_NEW_PANEL);
See also
SPI_WIN_CALL_PANEL

◆ WRITE_PART_string()

void WRITE_PART_string ( int Bclef,
const std::string & Str )

writes a string in current part.

Version
4.5
Parameters
[in]Bclefcharacter string access key
[in]Strcharacter string to be written
Remarks
WARNING, this function is reserved for
PPs communicating information to a manager.
It must be used only at FILE_BEGIN or FILE_END.
Machine dialogue strings to be used only are :
STRING_MAC_DIALOG_1, STRING_MAC_DIALOG_2, STRING_MAC_DIALOG_3, STRING_MAC_DIALOG_4
PCALL(WRITE_PART_string,STRING_MAC_DIALOG_1,'PP OK');
void WRITE_PART_string(int Bclef, const std::string &Str)
writes a string in current part.
Definition pp_pas28.c:29
See also
READ_PART_string_tec