Lines Matching refs:df
161 virtual void Draw( demo::RenderSystemDrawing& df, s32 x, s32 y, bool bSelectItem ) const = 0;
165 void DrawItemNameCommon( demo::RenderSystemDrawing& df, s32 x, s32 y, bool bSelectItem ) const in DrawItemNameCommon() argument
168 if( bColor ) df.SetColor(1.0f, 0.5f, 0.1f); in DrawItemNameCommon()
169 else df.SetColor(1.0f, 1.0f, 1.0f); in DrawItemNameCommon()
171 df.DrawText( x, y, "%s", GetItemName() ); in DrawItemNameCommon()
174 df.SetColor(1.0f, 1.0f, 0.0f); in DrawItemNameCommon()
175 df.DrawText( x+160-8*2, y, IsDetailEditMode() ? "B<" : "A>" ); in DrawItemNameCommon()
177 if( bColor ) df.SetColor(1.0f, 0.5f, 0.1f); in DrawItemNameCommon()
178 else df.SetColor(1.0f, 1.0f, 1.0f); in DrawItemNameCommon()
222 virtual void Draw( demo::RenderSystemDrawing& df, s32 x, s32 y, bool bSelectItem ) const in Draw() argument
224 DrawItemNameCommon( df, x, y, bSelectItem ); in Draw()
227 df.DrawText( x+160, y, "%s", GetSelectValueName() ); in Draw()
288 virtual void Draw( demo::RenderSystemDrawing& df, s32 x, s32 y, bool bSelectItem ) const in Draw() argument
290 DrawItemNameCommon( df, x, y, bSelectItem ); in Draw()
292 df.DrawText( x+160, y, "%d", GetSelectValue() ); in Draw()