AbstractGraph::lineWidth is only used within TouchGFX.
 
Symbols
loading...
Files
loading...

AbstractGraph::lineWidth field

Syntax

References

LocationReferrerScopeText
AbstractGraph.hpp:364
CWRUtil::Q5 lineWidth; ///< Line with (0=fill below graph line)
AbstractGraph.cpp:23AbstractGraph::AbstractGraph()AbstractGraph
CanvasWidget(), linkedGraph(0), left(-1), right(-1), top(-1), bottom(-1), points(0), maxPoints(0), lineWidth(0)
AbstractGraph.cpp:219AbstractGraph::drawCanvasWidget() constAbstractGraph
invalidatedArea.x > (widgetXindex(firstIndex+1) + lineWidth/2).to<int>())
AbstractGraph.cpp:225AbstractGraph::drawCanvasWidget() constAbstractGraph
invalidatedArea.right() < (widgetXindex(lastIndex-1) - lineWidth/2).to<int>())
AbstractGraph.cpp:239AbstractGraph::drawCanvasWidget() constAbstractGraph
if (lineWidth == 0)
AbstractGraph.cpp:299AbstractGraph::updateAndInvalidateCacheForLinesBetweenIndeces()AbstractGraph
points[index].dy = (lineWidth * dy / d) / 2;
AbstractGraph.cpp:300AbstractGraph::updateAndInvalidateCacheForLinesBetweenIndeces()AbstractGraph
points[index].dx = (lineWidth * dx / d) / 2;
GraphBelow.cpp:35GraphBelow::drawCanvasWidget() constGraphBelow
invalidatedArea.x > (widgetXindex(firstIndex+1) + lineWidth/2).to<int>())
GraphBelow.cpp:41GraphBelow::drawCanvasWidget() constGraphBelow
invalidatedArea.right() < (widgetXindex(lastIndex-1) - lineWidth/2).to<int>())
GraphDots.cpp:46GraphDots::drawCanvasWidget() constGraphDots
invalidatedArea.x > (widgetXindex(firstIndex+1) + lineWidth/2).to<int>())
GraphDots.cpp:52GraphDots::drawCanvasWidget() constGraphDots
invalidatedArea.right() < (widgetXindex(lastIndex-1) - lineWidth/2).to<int>())
GraphDots.cpp:64GraphDots::drawCanvasWidget() constGraphDots
canvas.moveTo(circleCenterX + ((lineWidth * CWRUtil::sine(startAngle)) / 2), circleCenterY - ((lineWidth * CWRUtil::cosine(startAngle)) / 2));
GraphDots.cpp:67GraphDots::drawCanvasWidget() constGraphDots
canvas.lineTo(circleCenterX + ((lineWidth * CWRUtil::sine(angle)) / 2), circleCenterY - ((lineWidth * CWRUtil::cosine(angle)) / 2));
GraphDots.cpp:77GraphDots::getMinimalRectContainingIndices() constGraphDots
int minX = (widgetXindex(firstIndex) - lineWidth / 2).to<int>();
GraphDots.cpp:78GraphDots::getMinimalRectContainingIndices() constGraphDots
int maxX = (widgetXindex(lastIndex) + lineWidth / 2).to<int>();
GraphDots.cpp:79GraphDots::getMinimalRectContainingIndices() constGraphDots
int minY = (widgetYindex(firstIndex) - lineWidth / 2).to<int>();
GraphDots.cpp:80GraphDots::getMinimalRectContainingIndices() constGraphDots
int maxY = (widgetYindex(firstIndex) + lineWidth / 2).to<int>();
GraphDots.cpp:83GraphDots::getMinimalRectContainingIndices() constGraphDots
minY = MIN(minY, (widgetYindex(index) - lineWidth / 2).to<int>());
GraphDots.cpp:84GraphDots::getMinimalRectContainingIndices() constGraphDots
maxY = MAX(maxY, (widgetYindex(index) + lineWidth / 2).to<int>());
GraphLine.cpp:35GraphLine::drawCanvasWidget() constGraphLine
invalidatedArea.x > (widgetXindex(firstIndex+1) + lineWidth/2).to<int>())
GraphLine.cpp:41GraphLine::drawCanvasWidget() constGraphLine
invalidatedArea.right() < (widgetXindex(lastIndex-1) - lineWidth/2).to<int>())
GraphLine.cpp:67GraphLine::getMinimalRectContainingIndices() constGraphLine
int minX = (widgetXindex(firstIndex) - lineWidth / 2).to<int>();
GraphLine.cpp:68GraphLine::getMinimalRectContainingIndices() constGraphLine
int maxX = (widgetXindex(lastIndex) + lineWidth / 2).to<int>();
GraphLine.cpp:69GraphLine::getMinimalRectContainingIndices() constGraphLine
int minY = (widgetYindex(firstIndex) - lineWidth / 2).to<int>();
GraphLine.cpp:70GraphLine::getMinimalRectContainingIndices() constGraphLine
int maxY = (widgetYindex(firstIndex) + lineWidth / 2).to<int>();
GraphLine.cpp:73GraphLine::getMinimalRectContainingIndices() constGraphLine
minY = MIN(minY, (widgetYindex(index) - lineWidth / 2).to<int>());
GraphLine.cpp:74GraphLine::getMinimalRectContainingIndices() constGraphLine
maxY = MAX(maxY, (widgetYindex(index) + lineWidth / 2).to<int>());