diff --git a/simgear/canvas/elements/CanvasCPDF.cxx b/simgear/canvas/elements/CanvasCPDF.cxx
new file mode 100644
index 0000000..8004245
--- /dev/null
+++ b/simgear/canvas/elements/CanvasCPDF.cxx
@@ -0,0 +1,87 @@
+// CPDF.cxx: Stub for exposing OSG PDF support as a dedicated Canvas element
+//
+// Copyright (C) 2015 your name
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Library General Public
+// License as published by the Free Software Foundation; either
+// version 2 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+// Library General Public License for more details.
+//
+// You should have received a copy of the GNU Library General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+
+#include "CanvasCPDF.hxx"
+
+
+namespace simgear
+{
+namespace canvas
+{
+ const std::string CPDF::TYPE_NAME = "cpdf";
+ //----------------------------------------------------------------------------
+ void CPDF::staticInit()
+ {
+ Image::staticInit();
+
+ if( isInit<CPDF>() )
+ return;
+
+ // Do some initialization if needed...
+ }
+
+ //----------------------------------------------------------------------------
+ CPDF::CPDF( const CanvasWeakPtr& canvas,
+ const SGPropertyNode_ptr& node,
+ const Style& parent_style,
+ ElementWeakPtr parent ):
+ Image(canvas, node, parent_style, parent)
+ {
+ SG_LOG(SG_GENERAL, SG_ALERT, "New CPDF element added!");
+ }
+
+ //----------------------------------------------------------------------------
+ CPDF::~CPDF()
+ {
+ SG_LOG(SG_GENERAL, SG_ALERT, "New CPDF element removed!");
+ }
+
+ //----------------------------------------------------------------------------
+ void CPDF::update(double dt)
+ {
+ Image::update(dt);
+ }
+
+ //----------------------------------------------------------------------------
+ void CPDF::childAdded(SGPropertyNode* parent, SGPropertyNode* child)
+ {
+ return Image::childAdded(parent, child);
+ }
+
+ //----------------------------------------------------------------------------
+ void CPDF::childRemoved(SGPropertyNode* parent, SGPropertyNode* child)
+ {
+ return Image::childRemoved(parent, child);
+ }
+
+ //----------------------------------------------------------------------------
+ void CPDF::valueChanged(SGPropertyNode* child)
+ {
+ return Image::valueChanged(child);
+ }
+
+ //----------------------------------------------------------------------------
+ void CPDF::childChanged(SGPropertyNode* child)
+ {
+ }
+
+ //----------------------------------------------------------------------------
+
+} // namespace canvas
+} // namespace simgear
+
diff --git a/simgear/canvas/elements/CanvasCPDF.hxx b/simgear/canvas/elements/CanvasCPDF.hxx
new file mode 100644
index 0000000..1cd4062
--- /dev/null
+++ b/simgear/canvas/elements/CanvasCPDF.hxx
@@ -0,0 +1,61 @@
+// CanvasCPDF.hxx: Stub for exposing OSG PDF support as a dedicated Canvas element
+//
+//
+// Copyright (C) 2015 your name
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Library General Public
+// License as published by the Free Software Foundation; either
+// version 2 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+// Library General Public License for more details.
+//
+// You should have received a copy of the GNU Library General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+
+#ifndef CANVAS_CPDF_HXX_
+#define CANVAS_CPDF_HXX_
+
+#include "CanvasImage.hxx"
+
+#include <boost/shared_ptr.hpp>
+
+namespace simgear
+{
+namespace canvas
+{
+ class CPDF:
+ public Image
+ {
+ public:
+ static const std::string TYPE_NAME;
+ static void staticInit();
+
+ CPDF( const CanvasWeakPtr& canvas,
+ const SGPropertyNode_ptr& node,
+ const Style& parent_style,
+ ElementWeakPtr parent = 0 );
+ virtual ~CPDF();
+
+ virtual void update(double dt);
+
+ virtual void childAdded( SGPropertyNode * parent,
+ SGPropertyNode * child );
+ virtual void childRemoved( SGPropertyNode * parent,
+ SGPropertyNode * child );
+ virtual void valueChanged(SGPropertyNode * child);
+
+ protected:
+
+ virtual void childChanged(SGPropertyNode * child);
+
+ };
+
+} // namespace canvas
+} // namespace simgear
+
+#endif /* CANVAS_CPDF_HXX_ */