25class UIChildSpaceWidget :
public UIWidget {
27 CLASS_PROTOTYPE( UIChildSpaceWidget );
32 qboolean KeyEvent(
int key,
unsigned int time )
override;
35class UIFloatingWindow :
public UIWidget {
42 float m_restoredHeight;
51 CLASS_PROTOTYPE( UIFloatingWindow );
53 static Event W_ClosePressed;
54 static Event W_MinimizePressed;
57 void FrameInitialized(
void )
override;
58 void FrameInitialized(
bool bHasDragBar );
65 void ClosePressed(
Event *ev );
66 void MinimizePressed(
Event *ev );
67 void Pressed(
Event *ev );
68 void Released(
Event *ev );
69 void Dragged(
Event *ev );
70 void SizeChanged(
Event *ev );
71 void OnActivated(
Event *ev );
72 void OnDeactivated(
Event *ev );
73 void Create( UIWidget *parent,
const UIRect2D& rect,
const char *title,
const UColor& bgColor,
const UColor& fgColor );
74 void Draw(
void )
override;
76 bool IsMinimized(
void );
79static UColor UWindowColor(0.15f, 0.195f, 0.278f, 1);
Definition listener.h:246
Definition uipoint2d.h:25