314 {
316 if ( tab_control )
317 {
318
319
320
321
322
323
324
325
326 Widget tab_title = TextWidget.Cast(tab_control.FindAnyWidget( tab_control.GetName() +
"_Title" ));
327
328 int color_title =
ARGB(255, 255, 0, 0);
329 int color_backg =
ARGB(255, 0, 0 ,0);
330
331 #ifdef PLATFORM_CONSOLE
332 color_title =
ARGB(255, 255, 255, 255);
333 color_backg =
ARGB(255, 200, 0 ,0);
334 #endif
335
336 tab_title.SetColor( color_title );
337 tab_control.SetColor( color_backg );
338 }
339 }
int ARGB(int a, int r, int g, int b)