2019-12-12 17:32:41 +01:00
|
|
|
// Copyright (C) 2002-2012 Nikolaus Gebhardt
|
|
|
|
// This file is part of the "Irrlicht Engine".
|
|
|
|
// For conditions of distribution and use, see copyright notice in irrlicht.h
|
|
|
|
|
|
|
|
#ifndef __C_GUI_MESH_VIEWER_H_INCLUDED__
|
|
|
|
#define __C_GUI_MESH_VIEWER_H_INCLUDED__
|
|
|
|
|
|
|
|
#include "IrrCompileConfig.h"
|
|
|
|
#ifdef _IRR_COMPILE_WITH_GUI_
|
|
|
|
|
|
|
|
#include "IGUIMeshViewer.h"
|
|
|
|
#include "SMaterial.h"
|
|
|
|
|
|
|
|
namespace irr
|
|
|
|
{
|
|
|
|
|
|
|
|
namespace gui
|
|
|
|
{
|
|
|
|
|
|
|
|
class CGUIMeshViewer : public IGUIMeshViewer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
//! constructor
|
|
|
|
CGUIMeshViewer(IGUIEnvironment* environment, IGUIElement* parent, s32 id, core::rect<s32> rectangle);
|
|
|
|
|
|
|
|
//! destructor
|
|
|
|
virtual ~CGUIMeshViewer();
|
|
|
|
|
|
|
|
//! sets the mesh to be shown
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void setMesh(scene::IAnimatedMesh* mesh) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! Gets the displayed mesh
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual scene::IAnimatedMesh* getMesh() const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! sets the material
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void setMaterial(const video::SMaterial& material) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! gets the material
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual const video::SMaterial& getMaterial() const IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! called if an event happened.
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual bool OnEvent(const SEvent& event) IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
//! draws the element and its children
|
2021-08-27 14:55:10 +02:00
|
|
|
virtual void draw() IRR_OVERRIDE;
|
2019-12-12 17:32:41 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
video::SMaterial Material;
|
|
|
|
scene::IAnimatedMesh* Mesh;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
} // end namespace gui
|
|
|
|
} // end namespace irr
|
|
|
|
|
|
|
|
#endif // _IRR_COMPILE_WITH_GUI_
|
|
|
|
|
|
|
|
#endif // __C_GUI_MESH_VIEWER_H_INCLUDED__
|
|
|
|
|