20 lines
398 B
C++
20 lines
398 B
C++
#pragma once
|
|
//#include "KUIControl.h"
|
|
|
|
|
|
/// Title Control
|
|
class KUIControlTitleBar : public KUIControl
|
|
{
|
|
public:
|
|
KUIControlTitleBar();
|
|
~KUIControlTitleBar();
|
|
virtual void Render(KViewportObject * pViewport, bool isFront = false );
|
|
virtual void OnChangeCaptionNotify();
|
|
|
|
protected:
|
|
virtual void _initControl();
|
|
protected:
|
|
KSpritePrimitive m_TitleSprite[3];
|
|
KSpritePrimitive m_prCaption;
|
|
};
|