add apps to system overview
This commit is contained in:
@ -46,8 +46,10 @@ protected:
|
||||
DriverViewStatusItem statusDB;
|
||||
DriverViewStatusItem statusSNF;
|
||||
DriverViewStatusItem statusBPR;
|
||||
DriverViewStatusItem statusAPPS;
|
||||
DriverViewStatusItem statusBPF;
|
||||
touchgfx::TextArea textArea1;
|
||||
touchgfx::TextArea textArea1_1;
|
||||
|
||||
private:
|
||||
|
||||
|
||||
@ -63,6 +63,9 @@ SystemOverviewViewBase::SystemOverviewViewBase()
|
||||
statusBPR.setXY(12, 63);
|
||||
statusItems.add(statusBPR);
|
||||
|
||||
statusAPPS.setXY(12, 133);
|
||||
statusItems.add(statusAPPS);
|
||||
|
||||
statusBPF.setXY(12, 30);
|
||||
statusItems.add(statusBPF);
|
||||
|
||||
@ -73,6 +76,12 @@ SystemOverviewViewBase::SystemOverviewViewBase()
|
||||
textArea1.setLinespacing(0);
|
||||
textArea1.setTypedText(touchgfx::TypedText(T___SINGLEUSE_HTV5));
|
||||
add(textArea1);
|
||||
|
||||
textArea1_1.setXY(12, 108);
|
||||
textArea1_1.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
|
||||
textArea1_1.setLinespacing(0);
|
||||
textArea1_1.setTypedText(touchgfx::TypedText(T___SINGLEUSE_XKTG));
|
||||
add(textArea1_1);
|
||||
}
|
||||
|
||||
SystemOverviewViewBase::~SystemOverviewViewBase()
|
||||
@ -99,5 +108,6 @@ void SystemOverviewViewBase::setupScreen()
|
||||
statusDB.initialize();
|
||||
statusSNF.initialize();
|
||||
statusBPR.initialize();
|
||||
statusAPPS.initialize();
|
||||
statusBPF.initialize();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user