This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
MyGameFramework/lib/gwen/controls/gwen_panel.h
Gered c5cdddbeaa initial commit
current versions of all of my basic framework sources, build configurations/scripts, and supporting assets
2013-01-31 12:53:05 -05:00

36 lines
593 B
C++

/*
Control added by Gered King (May 2012)
*/
#pragma once
#ifndef GWEN_CONTROLS_PANEL_H
#define GWEN_CONTROLS_PANEL_H
#include "gwen_base.h"
#include "../gwen.h"
#include "../gwen_skin.h"
namespace Gwen
{
namespace Controls
{
class GWEN_EXPORT Panel : public Controls::Base
{
public:
GWEN_CONTROL( Panel, Controls::Base );
virtual void Render( Skin::Base* skin );
void SetStyle(unsigned char iPanelStyle) { m_iPanelStyle = iPanelStyle; }
unsigned char GetStyle() const { return m_iPanelStyle; }
private:
unsigned char m_iPanelStyle;
};
}
}
#endif