Advertisement
Guest User

ql timer

a guest
Jul 16th, 2014
305
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
q/kdb+ 0.76 KB | None | 0 0
  1. /* --- timer rectangle box --- */
  2. menuDef {
  3.     name "box"
  4.     fullScreen MENU_FALSE
  5.     visible MENU_TRUE
  6.     rect 330 297 48 26
  7.    
  8.  
  9.     itemDef {
  10.         name "boxBackground"
  11.         rect 0 0 96 30
  12.         visible 1
  13.         style WINDOW_STYLE_FILLED
  14.          
  15.         backcolor 0 0.4 0.8 0.10
  16.          
  17.     }
  18.    
  19. }
  20.  
  21. /* --- Timer --- */
  22. menuDef {
  23.     name "timer"
  24.     fullScreen MENU_FALSE
  25.     visible MENU_TRUE
  26.     rect 340 300 46 23  /* 300 365 46 23 */
  27.     /*
  28.     itemDef {
  29.         name "timerIcon"
  30.         rect 0 0 0 0
  31.         visible 1
  32.         decoration     
  33.         style 1
  34.         backcolor 1 1 1 1
  35.         background "icons/icon_time.tga"
  36.     }
  37.     */
  38.     itemDef {
  39.         name "timerCounter"
  40.         rect 0 23 46 23
  41.         visible 1
  42.         textalign 0
  43.         decoration
  44.         textstyle 0
  45.         forecolor 1 1 1 1
  46.                 textscale 0.65 /* 0.5 */
  47.         ownerdraw CG_LEVELTIMER
  48.     }
  49. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement