Esempio n. 1
0
InfoPage* InfoScreens::createPage(String header){
	InfoPage* el = new InfoPage(header);
	el->setParent(this);
	el->setDisplay(&*display);
	mChildern.add(el);
	return el;
}
Esempio n. 2
0
void InfoScreens::print(int pIndex) {
	internalCanUpdateDisplay = false;

	InfoPage* p = get(pIndex);
	p->print();
	internalCanUpdateDisplay = true;
}
Esempio n. 3
0
void InfoScreens::print(int pIndex) {
	internalCanUpdateDisplay = false;

	InfoPage* p = get(pIndex);
//		debugf("print,3 %s", p->getId().c_str() );
	p->print();
//		debugf("print, 4");
	internalCanUpdateDisplay = true;
}