#include <Decorator.h>
Inherits VisualComponent.
Inherited by BorderDecorator, and ScrollDecorator.
Public Member Functions | |
Decorator (VisualComponent *pvc) | |
virtual void | Draw () |
virtual void | Resize () |
Private Attributes | |
VisualComponent * | m_component |
Definition at line 6 of file Decorator.h.
Decorator::Decorator | ( | VisualComponent * | pvc | ) | [inline] |
Definition at line 9 of file Decorator.h.
virtual void Decorator::Draw | ( | ) | [inline, virtual] |
Implements VisualComponent.
Reimplemented in BorderDecorator, and ScrollDecorator.
Definition at line 15 of file Decorator.h.
References VisualComponent::Draw(), and m_component.
virtual void Decorator::Resize | ( | ) | [inline, virtual] |
Implements VisualComponent.
Definition at line 20 of file Decorator.h.
References m_component, and VisualComponent::Resize().
VisualComponent* Decorator::m_component [private] |