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

AbstractGraph::lineWidth field

Syntax

References

LocationReferrerScopeText
AbstractGraph.hpp:368
CWRUtil::Q5 lineWidth; ///< Line with (0=fill below graph line)
AbstractGraph.cpp:24AbstractGraph::AbstractGraph()AbstractGraph
CanvasWidget(), linkedGraph(0), left(-1), right(-1), top(-1), bottom(-1), points(0), maxPoints(0), lineWidth(0)
AbstractGraph.cpp:226AbstractGraph::drawCanvasWidget() constAbstractGraph
invalidatedArea.x > (widgetXindex(firstIndex + 1) + lineWidth / 2).to<int>())
AbstractGraph.cpp:232AbstractGraph::drawCanvasWidget() constAbstractGraph
invalidatedArea.right() < (widgetXindex(lastIndex - 1) - lineWidth / 2).to<int>())
AbstractGraph.cpp:246AbstractGraph::drawCanvasWidget() constAbstractGraph
if (lineWidth == 0)
AbstractGraph.cpp:315AbstractGraph::updateAndInvalidateCacheForLinesBetweenIndeces()AbstractGraph
points[index].dy = (lineWidth * dy / d) / 2;
AbstractGraph.cpp:316AbstractGraph::updateAndInvalidateCacheForLinesBetweenIndeces()AbstractGraph
points[index].dx = (lineWidth * dx / d) / 2;
GraphBelow.cpp:40GraphBelow::drawCanvasWidget() constGraphBelow
invalidatedArea.x > (widgetXindex(firstIndex + 1) + lineWidth / 2).to<int>())
GraphBelow.cpp:46GraphBelow::drawCanvasWidget() constGraphBelow
invalidatedArea.right() < (widgetXindex(lastIndex - 1) - lineWidth / 2).to<int>())
GraphDots.cpp:47GraphDots::drawCanvasWidget() constGraphDots
invalidatedArea.x > (widgetXindex(firstIndex + 1) + lineWidth / 2).to<int>())
GraphDots.cpp:53GraphDots::drawCanvasWidget() constGraphDots
invalidatedArea.right() < (widgetXindex(lastIndex - 1) - lineWidth / 2).to<int>())
GraphDots.cpp:65GraphDots::drawCanvasWidget() constGraphDots
canvas.moveTo(circleCenterX + ((lineWidth * CWRUtil::sine(startAngle)) / 2), circleCenterY - ((lineWidth * CWRUtil::cosine(startAngle)) / 2));
GraphDots.cpp:68GraphDots::drawCanvasWidget() constGraphDots
canvas.lineTo(circleCenterX + ((lineWidth * CWRUtil::sine(angle)) / 2), circleCenterY - ((lineWidth * CWRUtil::cosine(angle)) / 2));
GraphDots.cpp:78GraphDots::getMinimalRectContainingIndices() constGraphDots
int minX = (widgetXindex(firstIndex) - lineWidth / 2).to<int>();
GraphDots.cpp:79GraphDots::getMinimalRectContainingIndices() constGraphDots
int maxX = (widgetXindex(lastIndex) + lineWidth / 2).to<int>();
GraphDots.cpp:80GraphDots::getMinimalRectContainingIndices() constGraphDots
int minY = (widgetYindex(firstIndex) - lineWidth / 2).to<int>();
GraphDots.cpp:81GraphDots::getMinimalRectContainingIndices() constGraphDots
int maxY = (widgetYindex(firstIndex) + lineWidth / 2).to<int>();
GraphDots.cpp:84GraphDots::getMinimalRectContainingIndices() constGraphDots
minY = MIN(minY, (widgetYindex(index) - lineWidth / 2).to<int>());
GraphDots.cpp:85GraphDots::getMinimalRectContainingIndices() constGraphDots
maxY = MAX(maxY, (widgetYindex(index) + lineWidth / 2).to<int>());
GraphLine.cpp:36GraphLine::drawCanvasWidget() constGraphLine
invalidatedArea.x > (widgetXindex(firstIndex + 1) + lineWidth / 2).to<int>())
GraphLine.cpp:42GraphLine::drawCanvasWidget() constGraphLine
invalidatedArea.right() < (widgetXindex(lastIndex - 1) - lineWidth / 2).to<int>())
GraphLine.cpp:68GraphLine::getMinimalRectContainingIndices() constGraphLine
int minX = (widgetXindex(firstIndex) - lineWidth / 2).to<int>();
GraphLine.cpp:69GraphLine::getMinimalRectContainingIndices() constGraphLine
int maxX = (widgetXindex(lastIndex) + lineWidth / 2).to<int>();
GraphLine.cpp:70GraphLine::getMinimalRectContainingIndices() constGraphLine
int minY = (widgetYindex(firstIndex) - lineWidth / 2).to<int>();
GraphLine.cpp:71GraphLine::getMinimalRectContainingIndices() constGraphLine
int maxY = (widgetYindex(firstIndex) + lineWidth / 2).to<int>();
GraphLine.cpp:74GraphLine::getMinimalRectContainingIndices() constGraphLine
minY = MIN(minY, (widgetYindex(index) - lineWidth / 2).to<int>());
GraphLine.cpp:75GraphLine::getMinimalRectContainingIndices() constGraphLine
maxY = MAX(maxY, (widgetYindex(index) + lineWidth / 2).to<int>());