Panes

Org_GetPaneFocus, Org_IsPaneVisible, Org_KillPaneFocus, Org_SetPaneFocus, Org_ShowPane

Org_GetPaneFocus

Description 

int Org_GetPaneFocus();

This function returns index of the focused pane.

Return Values

int

Index of the focused pane.

0

The left pane is focused.

1

The right pane is focused.

See Also 
Org_GetActiveDataSource

Org_IsPaneVisible

Description 

int Org_IsPaneVisible(
   int  PaneIndex
);

This function returns true if the specified pane is in visible state.

Parameters

int PaneIndex

Index of the pane.

0

Left pane

1

Right pane

Return Values

int

0

Pane is hidden

1

Pane is visible

See Also 
Org_GetPaneFocus, Org_ShowPane

Org_KillPaneFocus

Description 

 Org_KillPaneFocus();

This function destroys the pane focus, so no pane will be focused.

See Also 
Org_GetPaneFocus, Org_IsPaneVisible

Org_SetPaneFocus

Description 

 Org_SetPaneFocus(
   int  PaneIndex,
   int *Previous
);

This function changes the focused pane.

Parameters

int PaneIndex

Index of the pane.

0

Left pane

1

Right pane

int *Previous

Index of the pane which was previously focused.

0

The left pane was focused.

1

The right pane was focused.

See Also 
Org_GetPaneFocus, Org_KillPaneFocus, Org_IsPaneVisible

Org_ShowPane

Description 

 Org_ShowPane(
   int  PaneIndex,
   int  Show
);

This function shows/hides the specified pane.

Parameters

int PaneIndex

Index of the pane.

0

Left pane

1

Right pane

int Show

Index of the element which should be shown or hidden.

0

Hide the pane.

1

Show the pane.

See Also 
Org_GetPaneFocus, Org_SetPaneFocus, Org_KillPaneFocus