
/*******************************  LICENSE  *******************************

 * (C) Copyright 1996-2016 ECMWF.
 * 
 * This software is licensed under the terms of the Apache Licence Version 2.0
 * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. 
 * In applying this licence, ECMWF does not waive the privileges and immunities 
 * granted to it by virtue of its status as an intergovernmental organisation nor
 * does it submit to any jurisdiction.

 *******************************  LICENSE  *******************************/

/*! \fileEfiGraphAttributes.h
    \brief Definition of EfiGraph Attributes class.

    This file is automatically generated.
    Do Not Edit!

    Generated: 
*/
   

#ifndef EfiGraphAttributes_H
#define EfiGraphAttributes_H

#include "magics.h"
#include "Colour.h"
namespace magics {

class XmlNode;
class EfiGraphAttributes 
{
public:
//  --  constructor
    EfiGraphAttributes();
    
//  --  destructor
    virtual ~EfiGraphAttributes();
    
    virtual void set(const std::map<std::string, std::string>&);
    virtual void set(const XmlNode&);
    virtual void copy(const EfiGraphAttributes&);
    virtual bool accept(const std::string&);

    void setTag(const std::string& tag) { tag_ = tag; }

public:
	//  --  method
	virtual void print(std::ostream&) const;
	virtual void toxml(std::ostream& out) const;
	//  --  members:
	string tag_;
	stringarray box_colour_;
	int border_thickness_;
	int normal_thickness_;
	string font_;
	double font_size_;
	string font_style_;
	unique_ptr<Colour> border_colour_;
	LineStyle border_style_;
	unique_ptr<Colour> normal_colour_;
	LineStyle normal_style_;
	unique_ptr<Colour> font_colour_;
	 

private:
	friend ostream& operator<<(ostream& s,const EfiGraphAttributes& p)
	{ p.print(s); return s; }
};

} // namespace magics

#endif

