Blame view

src/ParamOutputImpl/Plot/Time/TimePlotNode.cc 2.46 KB
fbe3c2bb   Benjamin Renard   First commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/*
 * TimePlotNode.cc
 *
 *  Created on: Dec 1, 2013
 *      Author: amdadev
 */

#ifndef TIMEPLOTNODE_CC_
#define TIMEPLOTNODE_CC_


#include "TimePlotNode.hh"
#include "PanelPlotNodeRegistry.hh"
#include "TimePlot.hh"
#include "AxesNode.hh"
#include "PlotLogger.hh"
#include "ParamsNode.hh"
#include "PlotLegendNode.hh"
#include "PlotOutput.hh"
#include "NodeCfg.hh"
#include "AdditionalObjectsNode.hh"
#include "FillsNode.hh"

namespace plot {


const std::string TimePlotNode::NODENAME = TIMEPLOT_NODENAME;

std::string TimePlotNode::_key = PanelPlotNodeRegistry::getInstance().addElement( NODENAME,
		boost::shared_ptr<TimePlotNode>(new TimePlotNode()));

/**
 * default constructor implementation.
 */

TimePlotNode::TimePlotNode() :
		AbstractPanelPlotNode() {
	getChildList()["legends"] = AMDA::XMLConfigurator::NodeCfgSPtr(
					new PlotLegendNode());
	getChildList()["params"] = AMDA::XMLConfigurator::NodeCfgSPtr(
			new ParamsNode<TimePlot>());
	getChildList()["axes"] = AMDA::XMLConfigurator::NodeCfgSPtr(new AxesNode());
	getChildList()["additionalObjects"] = AMDA::XMLConfigurator::NodeCfgSPtr(new AdditionalObjectsNode());
	getChildList()["fills"] = AMDA::XMLConfigurator::NodeCfgSPtr(new FillsNode());
}

TimePlotNode::~TimePlotNode() {

}


boost::shared_ptr<PanelPlotOutput> TimePlotNode::proceed(xmlNodePtr pNode_, PlotOutput* plotManager_, Panel* panel_){

	LOG4CXX_DEBUG(gLogger, "TimeNode::proceed");

	boost::shared_ptr<TimePlot> plot(
			new TimePlot(plotManager_->getParameterManager(),
					boost::shared_ptr<Panel>(panel_)));

	// Copy default pages values for the panel if not already specified
	if (panel_->_leftMargin == -1)
		panel_->_leftMargin = panel_->_page->_defaultTimePlotLeftMargin;
	if (panel_->_rightMargin == -1)
		panel_->_rightMargin = panel_->_page->_defaultTimePlotRightMargin;
	if (panel_->_topMargin == -1)
		panel_->_topMargin = panel_->_page->_defaultTimePlotTopMargin;
	if (panel_->_bottomMargin == -1)
		panel_->_bottomMargin = panel_->_page->_defaultTimePlotBottomMargin;

	if (panel_->_preferedWidth == -1)
		panel_->_preferedWidth = panel_->_page->_defaultTimePlotWidth;
	if (panel_->_preferedHeight == -1)
		panel_->_preferedHeight = panel_->_page->_defaultTimePlotHeight;

	AMDA::Parameters::CfgContext context;
	context.push<PanelPlotOutput*>(plot.get());
	context.push<TimePlot*>(plot.get());
	context.push<Panel*>(panel_);
	AMDA::XMLConfigurator::NodeGrpCfg::proceed(pNode_, context);

	return plot;
}

}  // namespace plot

#endif /* TIMEPLOTNODE_CC_ */