25class UIChildSpaceWidget :
public UIWidget
28 CLASS_PROTOTYPE(UIChildSpaceWidget);
33 qboolean KeyEvent(
int key,
unsigned int time)
override;
36class UIFloatingWindow :
public UIWidget
44 float m_restoredHeight;
53 CLASS_PROTOTYPE(UIFloatingWindow);
55 static Event W_ClosePressed;
56 static Event W_MinimizePressed;
59 void FrameInitialized(
void)
override;
60 void FrameInitialized(
bool bHasDragBar);
66 void ClosePressed(
Event *ev);
67 void MinimizePressed(
Event *ev);
68 void Pressed(
Event *ev);
69 void Released(
Event *ev);
70 void Dragged(
Event *ev);
71 void SizeChanged(
Event *ev);
72 void OnActivated(
Event *ev);
73 void OnDeactivated(
Event *ev);
75 Create(UIWidget *parent,
const UIRect2D& rect,
const char *title,
const UColor& bgColor,
const UColor& fgColor);
76 void Draw(
void)
override;
78 bool IsMinimized(
void);
81static UColor UWindowColor(0.15f, 0.195f, 0.278f, 1);
Definition listener.h:246
Definition uipoint2d.h:26