MCPcopy Create free account
hub / github.com/KDAB/KDChart / Private

Method Private

src/KDChart/KDChartChart.cpp:281–308  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

279}
280
281Chart::Private::Private(Chart *chart_)
282 : chart(chart_)
283 , useNewLayoutSystem(false)
284 , layout(nullptr)
285 , vLayout(nullptr)
286 , planesLayout(nullptr)
287 , headerLayout(nullptr)
288 , footerLayout(nullptr)
289 , dataAndLegendLayout(nullptr)
290 , leftOuterSpacer(nullptr)
291 , rightOuterSpacer(nullptr)
292 , topOuterSpacer(nullptr)
293 , bottomOuterSpacer(nullptr)
294 , isFloatingLegendsLayoutDirty(true)
295 , isPlanesLayoutDirty(true)
296 , globalLeadingLeft(0)
297 , globalLeadingRight(0)
298 , globalLeadingTop(0)
299 , globalLeadingBottom(0)
300{
301 for (int row = 0; row < 3; ++row) {
302 for (int column = 0; column < 3; ++column) {
303 for (int i = 0; i < 2; i++) {
304 innerHdFtLayouts[i][row][column] = nullptr;
305 }
306 }
307 }
308}
309
310Chart::Private::~Private()
311{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected