kbLogger 2.0.b1
The automotive ready test and logging program.
Project Class Reference

This class handles a single project.

#include <project.h>

Public Member Functions

void hideSubWindows ()
 Hides all SubWindows of this project.
 
void showSubWindows ()
 Shows all SubWindows of this project.
 

Member Function Documentation

◆ hideSubWindows()

void hideSubWindows ( )

Hides all SubWindows (TraceViewer, LogViewer, ConfigViewer, UserInterfaces, Plotters) of this project. The windows are not closed, only hidden. They can be restored by calling showSubWindows().

var projectExplorer = so.projectExplorer();
var project = projectExplorer.openProject("/path/to/project.klp");
project.hideSubWindows();
project.showSubWindows();

◆ showSubWindows()

void showSubWindows ( )

Shows all SubWindows (TraceViewer, LogViewer, ConfigViewer, UserInterfaces, Plotters) of this project. The windows will be restored at the last position.

var projectExplorer = so.projectExplorer();
var project = projectExplorer.openProject("/path/to/project.klp");
project.hideSubWindows();
project.showSubWindows();