thug/Code/Gfx/2D/Window.h

32 lines
503 B
C
Raw Permalink Normal View History

2016-02-13 21:39:12 +00:00
#ifndef __GFX_2D_WINDOW_H__
#define __GFX_2D_WINDOW_H__
#include <gfx/2D/ScreenElement2.h>
namespace Nx
{
class CWindow2D;
}
namespace Front
{
class CWindowElement : public Front::CScreenElement
{
public:
CWindowElement();
virtual ~CWindowElement();
void SetClipWindow(Nx::CWindow2D *p_window); // This should probably be protected or private
Nx::CWindow2D * GetClipWindow() const;
protected:
Nx::CWindow2D * mp_clip_window;
};
}
#endif