remove unused NewDriverView screen
This commit is contained in:
@ -21,8 +21,6 @@
|
||||
#include <gui/vehicleconfig_screen/VehicleConfigPresenter.hpp>
|
||||
#include <gui/sdc_screen/SDCView.hpp>
|
||||
#include <gui/sdc_screen/SDCPresenter.hpp>
|
||||
#include <gui/newdriverview_screen/NewDriverViewView.hpp>
|
||||
#include <gui/newdriverview_screen/NewDriverViewPresenter.hpp>
|
||||
|
||||
using namespace touchgfx;
|
||||
|
||||
|
||||
@ -1,44 +0,0 @@
|
||||
/*********************************************************************************/
|
||||
/********** THIS FILE IS GENERATED BY TOUCHGFX DESIGNER, DO NOT MODIFY ***********/
|
||||
/*********************************************************************************/
|
||||
#include <gui_generated/newdriverview_screen/NewDriverViewViewBase.hpp>
|
||||
#include <touchgfx/canvas_widget_renderer/CanvasWidgetRenderer.hpp>
|
||||
#include <touchgfx/Color.hpp>
|
||||
#include <images/BitmapDatabase.hpp>
|
||||
|
||||
NewDriverViewViewBase::NewDriverViewViewBase()
|
||||
{
|
||||
touchgfx::CanvasWidgetRenderer::setupBuffer(canvasBuffer, CANVAS_BUFFER_SIZE);
|
||||
|
||||
__background.setPosition(0, 0, 480, 320);
|
||||
__background.setColor(touchgfx::Color::getColorFromRGB(0, 0, 0));
|
||||
add(__background);
|
||||
|
||||
line1.setPosition(0, 0, 480, 320);
|
||||
line1Painter.setColor(touchgfx::Color::getColorFromRGB(255, 255, 255));
|
||||
line1.setPainter(line1Painter);
|
||||
line1.setStart(140, 60);
|
||||
line1.setEnd(140, 200);
|
||||
line1.setLineWidth(3);
|
||||
line1.setLineEndingStyle(touchgfx::Line::ROUND_CAP_ENDING);
|
||||
add(line1);
|
||||
|
||||
boxProgress1.setXY(140, 17);
|
||||
boxProgress1.setProgressIndicatorPosition(0, 0, 200, 18);
|
||||
boxProgress1.setRange(0, 100);
|
||||
boxProgress1.setDirection(touchgfx::AbstractDirectionProgress::RIGHT);
|
||||
boxProgress1.setBackground(touchgfx::Bitmap(BITMAP_ALTERNATE_THEME_IMAGES_WIDGETS_BOXPROGRESS_THICK_SMALL_ID));
|
||||
boxProgress1.setColor(touchgfx::Color::getColorFromRGB(255, 186, 13));
|
||||
boxProgress1.setValue(60);
|
||||
add(boxProgress1);
|
||||
}
|
||||
|
||||
NewDriverViewViewBase::~NewDriverViewViewBase()
|
||||
{
|
||||
touchgfx::CanvasWidgetRenderer::resetBuffer();
|
||||
}
|
||||
|
||||
void NewDriverViewViewBase::setupScreen()
|
||||
{
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user