Subversion Repositories Kolibri OS

Rev

Rev 3178 | Rev 3587 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. ;
  2. ;   CPU -process Manager
  3. ;
  4. ;------------------------------------------------------------------------------
  5. ; version:      1.80
  6. ; last update:  07/04/2012
  7. ; changed by:   Marat Zakiyanov aka Mario79, aka Mario
  8. ; changes:      Complete elimination of flicker.
  9. ;               Using f.0 C = 1 - don't fill working area on window draw.
  10. ;               Increasing the size of buttons and a bright color.
  11. ;               Processing "window is rolled up" and "window is minimized"
  12. ;------------------------------------------------------------------------------
  13. ; version:      1.70
  14. ; last update:  04/04/2012
  15. ; changed by:   Marat Zakiyanov aka Mario79, aka Mario
  16. ; changes:      Code refactoring and optimization.
  17. ;               Added russian language support.
  18. ;               Fix - processes information showing  not been updated during
  19. ;               the processing of mouse events.
  20. ;------------------------------------------------------------------------------
  21. ; Many fix's and changes created by:
  22. ;               Diamond, Heavyiron, SPraid, <Lrz>,
  23. ;               Leency, IgorA, kaitz
  24. ;---------------------------------------------------------------------
  25. ;   integrated with load_lib.obj by <Lrz>
  26. ;---------------------------------------------------------------------
  27. ;   additions by M.Lisovin lisovin@26.ru
  28. ;---------------------------------------------------------------------
  29. ;   original author - VTurjanmaa
  30. ;------------------------------------------------------------------------------
  31. format binary as ""
  32.  
  33.         use32
  34.         org 0x0
  35.         db 'MENUET01'           ; 8 byte id
  36.         dd 0x01                 ; header version
  37.         dd START                ; start of code
  38.         dd IM_END               ; size of image
  39.         dd U_END                ; memory for app
  40.         dd stack_area           ; esp
  41.         dd 0x0                  ; boot parameters
  42.         dd 0x0                  ; path
  43. ;------------------------------------------------------------------------------
  44. include 'lang.inc'
  45. include '../../../macros.inc'
  46. include '../../../develop/libraries/box_lib/trunk/box_lib.mac'
  47. include '../../../develop/libraries/box_lib/load_lib.mac'
  48. ;------------------------------------------------------------------------------
  49. display_processes=24    ;32             ; number of processes to show
  50. window_x_size=524
  51. window_y_size=430
  52. ;------------------------------------------------------------------------------
  53. @use_library    ;use load lib macros
  54. ;------------------------------------------------------------------------------
  55. START:                          ; start of execution
  56.         mcall   68,11
  57. sys_load_library  library_name, cur_dir_path, library_path, system_path, \
  58. err_message_found_lib, head_f_l, myimport, err_message_import, head_f_i
  59.         inc     eax
  60.         jz      close
  61. ;------------------------------------------------------------------------------
  62.         mcall   40,0x27 ;set event
  63. ;------------------------------------------------------------------------------
  64. ;set window size and position for 0 function
  65. ;to [winxpos] and [winypos] variables
  66. ;get screen size
  67.         mcall   14
  68.         mov     ebx,eax
  69. ;calculate (x_screen-window_x_size)/2    
  70.         shr     ebx,16+1
  71.         sub     ebx,window_x_size/2
  72.         shl     ebx,16
  73.         mov     bx,window_x_size
  74. ;winxpos=xcoord*65536+xsize    
  75.         mov     [winxpos],ebx
  76. ;calculate (y_screen-window_y_size)/2    
  77.         and     eax,0xffff
  78.         shr     eax,1
  79.         sub     eax,window_y_size/2
  80.         shl     eax,16
  81.         mov     ax,window_y_size
  82. ;winypos=ycoord*65536+ysize    
  83.         mov     [winypos],eax
  84. ;------------------------------------------------------------------------------
  85.         init_checkboxes2 check1,check1_end
  86.         mcall   48,3,sc,40
  87.         edit_boxes_set_sys_color edit1,edit1_end,sc             ;set color
  88.         check_boxes_set_sys_color2 check1,check1_end,sc ;set color
  89. ;------------------------------------------------------------------------------
  90. align 4  
  91. ;main loop when process name isn't edited.    
  92. red:    
  93.         call    draw_window             ; redraw all window
  94. ;------------------------------------------------------------------------------
  95. align 4
  96. still:
  97.         mcall   23,100          ; wait here for event 1 sec.
  98.  
  99.         dec     eax                   ; redraw request ?
  100.         jz      red
  101.  
  102.         dec     eax                   ; key in buffer ?
  103.         jz      key
  104.  
  105.         dec     eax                   ; button in buffer ?
  106.         jz      button
  107.  
  108.         push    dword edit1
  109.         call    [edit_box_mouse]
  110.        
  111.         push    dword[check1.flags]
  112.        
  113.         push    dword check1
  114.         call    [check_box_mouse]
  115.        
  116.         pop     eax
  117.        
  118.         cmp     eax, dword[check1.flags]
  119.         jz      still_end
  120.        
  121.         push    dword check1
  122.         call    [check_box_draw]
  123. ;--------------------------------------
  124. align 4
  125. show_process_info_1:    
  126.         mcall   26,9
  127.         add     eax,100
  128.         mov     [time_counter],eax
  129.  
  130.         call    show_process_info       ; draw new state of processes
  131.         jmp     still
  132. ;------------------------------------------------------------------------------
  133. align 4
  134. still_end:
  135.         mcall   26,9
  136.         cmp     [time_counter],eax
  137.         ja      still
  138.  
  139.         add     eax,100
  140.         mov     [time_counter],eax
  141.  
  142.         call    show_process_info       ; draw new state of processes
  143.         jmp     still
  144. ;------------------------------------------------------------------------------
  145. align 4
  146. key:                            ; key
  147.         mcall   2
  148.  
  149.         cmp     ah,184          ; PageUp
  150.         jz      pgdn
  151.  
  152.         cmp     ah,183
  153.         jz      pgup                    ; PageDown
  154.  
  155.         cmp     ah,27
  156.         jz      close                   ; Esc
  157.  
  158.         push    dword edit1
  159.         call    [edit_box_key]
  160.                                 ; Check ENTER with ed_focus edit_box
  161.         lea     edi,[edit1]
  162.         test    word ed_flags,ed_focus
  163.         jz      still_end
  164.  
  165.         sub     ah,13                   ; ENTER?
  166.         jz      program_start           ; RUN a program
  167.  
  168.         jmp     still
  169. ;------------------------------------------------------------------------------
  170. align 4
  171. button:                
  172. ; get button id  
  173.         mcall   17
  174.         shr     eax,8                  
  175. ;id in [10,50] corresponds to terminate buttons.
  176.         cmp     eax,10
  177.         jb      noterm          
  178.  
  179.         cmp     eax,50
  180.         jg      noterm
  181. ;calculate button index        
  182.         sub     eax,11
  183. ;calculate process slot    
  184.         mov     ecx,[tasklist+4*eax]
  185. ;ignore empty buttons
  186.         test    ecx,ecx
  187.         jle     still_end
  188. ;terminate application    
  189.         mcall   18,2
  190.         jmp     show_process_info_1
  191. ;--------------------------------------
  192. align 4
  193. noterm:
  194. ;special buttons
  195.         dec     eax
  196.         jz      close
  197.  
  198.         sub     eax,50
  199.         jz      pgdn      ;51
  200.  
  201.         dec     eax
  202.         jz      pgup      ;52
  203.  
  204.         dec     eax
  205.         jz      program_start   ;53
  206.  
  207.         dec     eax
  208.         jz      reboot  ;54
  209.  
  210.         jmp     still_end
  211. ;buttons handlers    
  212. ;------------------------------------------------------------------------------
  213. align 4
  214. pgdn:
  215.         sub     [list_start],display_processes
  216.         jge     show_process_info_1  
  217.         mov     [list_start],0
  218.         jmp     show_process_info_1
  219. ;------------------------------------------------------------------------------
  220. align 4
  221. pgup:
  222.         mov     eax,[list_add]  ;maximal displayed process slot
  223.         mov     [list_start],eax
  224.         jmp     show_process_info_1
  225. ;------------------------------------------------------------------------------
  226. align 4    
  227. program_start:    
  228.         mcall   70,file_start
  229.         jmp     show_process_info_1
  230. ;------------------------------------------------------------------------------
  231. align 4
  232. reboot:    
  233.         mcall   70,sys_reboot
  234. ;close program if we going to reboot
  235. ;------------------------------------------------------------------------------
  236. align 4
  237. close:
  238.         or      eax,-1          ; close this program
  239.         mcall
  240. ;------------------------------------------------------------------------------
  241. align 4
  242. draw_empty_slot:        
  243.         cmp     [draw_window_flag],1
  244.         je      @f
  245.         mov     ecx,[curposy]
  246.         shl     ecx,16
  247.         mov     cx,10   ; button height
  248.         push    ecx
  249.         add     ecx,3 shl 16
  250.         mcall   13,<11,95>,,[btn_bacground_color]
  251.         pop     ecx
  252.        
  253.         mcall   13,<111,393>,,[bar_bacground_color]
  254. ;--------------------------------------
  255. align 4
  256. @@:
  257.         ret
  258. ;------------------------------------------------------------------------------
  259. align 4
  260. draw_next_process:
  261. ;input:
  262. ;  edi - current slot
  263. ;  [curposy] - y position
  264. ;output:
  265. ;  edi - next slot (or -1 if no next slot)
  266. ;registers corrupted!
  267. ;delete old button
  268.         cmp     [draw_window_flag],0
  269.         je      @f
  270.         mov     edx,[index]
  271.         add     edx,(1 shl 31)+11
  272.         mcall   8
  273. ;--------------------------------------
  274. align 4
  275. @@:
  276. ;create terminate process button
  277.         mov     ecx,[curposy]
  278.         shl     ecx,16
  279.         mov     cx,13   ; button height
  280.         mov     edx,[index]
  281.         add     edx,11
  282.         mov     esi,0xccddee    ; 0xaabbcc
  283. ;contrast    
  284.         test    dword [index],1
  285.         jz      .change_color_button
  286.         mov     esi,0xaabbcc    ; 0x8899aa
  287. ;--------------------------------------
  288. align 4
  289. .change_color_button:
  290.         cmp     [draw_window_flag],0
  291.         je      @f
  292.         mcall   8,<10,99>
  293. ;--------------------------------------
  294. align 4
  295. @@:
  296.         mov     [btn_bacground_color],esi
  297. ;draw background for proccess information
  298. ; ecx was already set
  299.         mov     edx,0xddffdd    ; 0x88ff88
  300. ;contrast
  301.         test    dword [index],1
  302.         jz      .change_color_info
  303.         mov     edx,0xffffff    ; 0xddffdd
  304. ;--------------------------------------
  305. align 4
  306. .change_color_info:
  307.         inc     cx
  308.         cmp     [draw_window_flag],0
  309.         je      @f
  310.         mcall   13,<110,395>
  311. ;--------------------------------------
  312. align 4
  313. @@:
  314.         mov     [bar_bacground_color],edx
  315. ;nothing else should be done
  316. ;if there is no process for this button    
  317.         cmp     edi,-1
  318.         jne     .return_1
  319.  
  320.         call    draw_empty_slot
  321.         or      edi,-1
  322.         jmp     .ret
  323. ;--------------------------------------
  324. align 4
  325. .return_1:
  326. ;find process
  327.         inc     edi
  328. ;more comfortable register for next loop    
  329.         mov     ecx,edi
  330. ;precacluate pointer to process buffer    
  331.         mov     ebx,process_info_buffer
  332. ;--------------------------------------
  333. align 4
  334. .find_loop:
  335.         cmp     ecx,256
  336.         jge     .no_processes
  337. ;load process information in buffer
  338.         mcall   9
  339. ;if current slot greater than maximal slot,
  340. ;there is no more proccesses.    
  341.         cmp     ecx,eax
  342.         jg      .no_processes
  343. ;if slot state is equal to 9, it is empty.    
  344.         cmp     [process_info_buffer+process_information.slot_state],9
  345.         jnz     .process_found
  346.    
  347.         inc     ecx
  348.         jmp     .find_loop
  349. ;--------------------------------------
  350. align 4
  351. .no_processes:
  352.         call    draw_empty_slot
  353.         or      edi,-1
  354.         ret
  355. ;--------------------------------------
  356. align 4
  357. .process_found:
  358. ;check on/off check box
  359.         push    edi
  360.         lea     edi,[check1]
  361.         test    dword ch_flags,ch_flag_en
  362.         pop     edi
  363.         jnz     @f
  364.  
  365.         cmp     dword [process_info_buffer+10],'ICON'
  366.         jz      .return_1
  367.  
  368.         cmp     dword [process_info_buffer+10],'OS/I'
  369.         jz      .return_1
  370.  
  371.         cmp     byte [process_info_buffer+10],'@'
  372.         jz      .return_1
  373. ;--------------------------------------
  374. align 4
  375. @@:
  376.         mov     edi,ecx
  377.         mov     [list_add],ecx
  378. ;get processor cpeed    
  379. ;for percent calculating
  380.         mcall   18,5
  381.         xor     edx,edx
  382.         mov     ebx,100
  383.         div     ebx
  384. ;eax = number of operation for 1% now
  385. ;calculate process cpu usage percent
  386.         mov     ebx,eax
  387.         mov     eax,[process_info_buffer+process_information.cpu_usage]
  388. ;       cdq
  389.         xor     edx,edx ; for CPU more 2 GHz - mike.dld
  390.         div     ebx
  391.         mov     [cpu_percent],eax
  392. ;set text color to display process information
  393. ;([tcolor] variable)
  394. ;0%      : black    
  395. ;1-80%   : green
  396. ;81-100% : red
  397.         test    eax,eax
  398.         jnz     .no_black
  399.  
  400.         mov     [tcolor],eax
  401.         jmp     .color_set
  402. ;--------------------------------------
  403. align 4
  404. .no_black:  
  405.         cmp     eax,80
  406.         ja      .no_green
  407.  
  408.         mov     dword [tcolor],0x107a30
  409.         jmp     .color_set
  410. ;--------------------------------------
  411. align 4
  412. .no_green:
  413.         mov     dword [tcolor],0xac0000
  414. ;--------------------------------------
  415. align 4
  416. .color_set:
  417. ;show slot number
  418. ;ecx haven't changed since .process_found    
  419.         push    edi
  420.         mov     edx,[curposy]
  421.         add     edx,15*65536+3
  422.         mov     esi,[tcolor]
  423.         and     esi,0xffffff
  424.         or      esi,0x40000000
  425.         mcall   47,<2,256>,,,,[btn_bacground_color]
  426. ;show process name
  427.         mov     ebx,[curposy]
  428.         add     ebx,40*65536+3
  429.         mov     ecx,[tcolor]
  430.         and     ecx,0xffffff
  431.         or      ecx,0x40000000
  432.         mcall   4,,,process_info_buffer.process_name,11,[btn_bacground_color]
  433. ;show pid
  434.         mov     edx,[curposy]
  435.         add     edx,125*65536+3
  436.         mov     esi,[tcolor]
  437.         and     esi,0xffffff
  438.         or      esi,0x40000000
  439.         mcall   47,<8,256>,[process_info_buffer.PID],,,[bar_bacground_color]
  440. ;show cpu usage
  441.         add     edx,60*65536
  442.         mcall   ,,[process_info_buffer.cpu_usage]
  443. ;show cpu percent
  444.         add     edx,60*65536
  445.         mcall   ,<3,0>,[cpu_percent]
  446. ;show memory start - obsolete
  447.         add     edx,30*65536
  448.         mcall   ,<8,256>,[process_info_buffer.memory_start]
  449. ;show memory usage
  450.         mov     ecx,[process_info_buffer.used_memory]
  451.         inc     ecx
  452.         add     edx,60*65536
  453.         mcall
  454. ;show window stack and value
  455.         add     edx,60*65536
  456.         mcall   ,,dword [process_info_buffer.window_stack_position]
  457. ;show window xy size
  458.         mov     ecx,[process_info_buffer.box.left]
  459.         shl     ecx,16
  460.         add     ecx,[process_info_buffer.box.top]
  461.         add     edx,60*65536
  462.         mcall
  463.         pop     edi
  464. ;--------------------------------------
  465. align 4
  466. .ret:
  467. ;build index->slot map for terminating processes.
  468.         mov     eax,[index]
  469.         mov     [tasklist+4*eax],edi        
  470.         ret
  471. ;------------------------------------------------------------------------------
  472. align 4
  473. f11:
  474. ;full update  
  475.         push    edi
  476.         call    draw_window
  477.         pop     edi
  478. ;------------------------------------------------------------------------------
  479. ;   *********************************************
  480. ;   *******  WINDOW DEFINITIONS AND DRAW ********
  481. ;   *********************************************
  482. align 4
  483. draw_window:
  484.         mcall   12, 1                  
  485. ; DRAW WINDOW
  486.         xor     eax,eax                         ; function 0 : define and draw window
  487.         xor     esi,esi
  488.         mcall   ,[winxpos],[winypos],0x74ffffff,,title  ;0x34ddffdd
  489.  
  490.         mcall   9,process_info_buffer,-1
  491.        
  492.         mov     eax,[ebx+70]
  493.         mov     [window_status],eax
  494.         test    [window_status],100b            ; window is rolled up
  495.         jnz     .exit
  496.  
  497.         test    [window_status],10b             ; window is minimized to panel
  498.         jnz     .exit
  499.  
  500.         mov     eax,[ebx+62]
  501.         inc     eax
  502.         mov     [client_area_x_size],eax
  503.         mov     eax,[ebx+66]
  504.         inc     eax
  505.         mov     [client_area_y_size],eax
  506.  
  507.         mov     ebx,[client_area_x_size]
  508.         mcall   13,,<0,20>,0xffffff
  509. ; function 4 : write text to window
  510.         xor     ecx,ecx
  511.         mcall   4,<17,8>,,text,text_len
  512.  
  513.         mcall   13,<0,10>,<20,336>,0xffffff
  514.        
  515.         mov     ebx,[client_area_x_size]
  516.         sub     ebx,10+100+395
  517.         add     ebx,(10+100+395) shl 16
  518.         mcall
  519.        
  520.         mcall   26,9
  521.         add     eax,100
  522.         mov     [time_counter],eax
  523.  
  524.         mov     [draw_window_flag],1
  525.         call    show_process_info
  526.         mov     [draw_window_flag],0
  527.        
  528.         mov     ebx,[client_area_x_size]
  529.         mov     ecx,[client_area_y_size]
  530.         sub     ecx,20+336
  531.         add     ecx,(20+336) shl 16
  532.         mcall   13,,,0xffffff
  533.  
  534.         push    dword edit1
  535.         call    [edit_box_draw]
  536.  
  537.         push    dword check1
  538.         call    [check_box_draw]
  539.        
  540. ; previous page button
  541.         mcall   8,<25,96>,<361,14>,51,0xccddee  ;0xaabbcc
  542. ; next page button  52
  543.         inc     edx
  544.         mcall   ,<125,96>
  545. ; ">" (text enter) button
  546.         add     ecx,20 shl 16
  547. ; run button 53
  548.         inc     edx
  549.         mcall   ,<456,50>
  550. ; reboot button    
  551.         sub     ebx,120*65536              
  552.         add     ebx,60
  553.         sub     ecx,20 shl 16
  554.         inc     edx
  555.         mcall
  556. ;"PREV PAGE", "NEXT PAGE" and "REBOOT" labels
  557.         xor     ecx,ecx
  558.         mcall   4,<45,365>,,tbts,tbte-tbts
  559. ;"RUN" labels
  560.         mcall   ,<464,385>,,tbts_3,tbte_2-tbts_3
  561. ;print application name in text box
  562. ;--------------------------------------
  563. align 4
  564. .exit:
  565.         mcall   12, 2
  566.         ret
  567. ;------------------------------------------------------------------------------
  568. align 4
  569. show_process_info:
  570.         test    [window_status],100b            ; window is rolled up
  571.         jnz     .exit
  572.  
  573.         test    [window_status],10b             ; window is minimized to panel
  574.         jnz     .exit
  575.  
  576.         mov     edi,[list_start]
  577.         mov     [list_add],edi
  578.         mov     dword [index],0
  579.         mov     dword [curposy],20
  580. ;--------------------------------------
  581. align 4
  582. .loop_draw:
  583.         call    draw_next_process
  584.         inc     dword [index]
  585.         add     dword [curposy],14
  586.         cmp     [index],display_processes
  587.         jl      .loop_draw
  588. ;--------------------------------------
  589. align 4
  590. .exit:
  591.         ret
  592. ;------------------------------------------------------------------------------
  593. ; DATA AREA
  594. ;------------------------------------------------------------------------------
  595. system_path      db '/sys/lib/'
  596. library_name     db 'box_lib.obj',0
  597. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  598.  
  599. err_message_found_lib   db 'Sorry I cannot load library box_lib.obj',0
  600. head_f_i:
  601. head_f_l        db 'System error',0
  602. err_message_import      db 'Error on load import library box_lib.obj',0
  603. ;------------------------------------------------------------------------------
  604. align 4
  605. myimport:  
  606. edit_box_draw           dd aEdit_box_draw
  607. edit_box_key            dd aEdit_box_key
  608. edit_box_mouse          dd aEdit_box_mouse
  609. ;version_ed             dd aVersion_ed
  610.  
  611. init_checkbox           dd aInit_checkbox
  612. check_box_draw          dd aCheck_box_draw
  613. check_box_mouse         dd aCheck_box_mouse
  614. ;version_ch             dd aVersion_ch
  615.  
  616. ;option_box_draw        dd aOption_box_draw
  617. ;option_box_mouse       dd aOption_box_mouse
  618. ;version_op             dd aVersion_op
  619.  
  620.                 dd 0
  621.                 dd 0
  622.  
  623. aEdit_box_draw          db 'edit_box',0
  624. aEdit_box_key           db 'edit_box_key',0
  625. aEdit_box_mouse         db 'edit_box_mouse',0
  626. ;aVersion_ed            db 'version_ed',0
  627.  
  628. aInit_checkbox          db 'init_checkbox2',0
  629. aCheck_box_draw         db 'check_box_draw2',0
  630. aCheck_box_mouse        db 'check_box_mouse2',0
  631. ;aVersion_ch            db 'version_ch',0
  632.  
  633. ;aOption_box_draw       db 'option_box_draw',0
  634. ;aOption_box_mouse      db 'option_box_mouse',0
  635. ;aVersion_op            db 'version_op',0
  636. ;------------------------------------------------------------------------------
  637. align 4
  638. check1 check_box2 (10 shl 16)+11,(383 shl 16)+11,6, 0x80AABBCC,0,0,check_text, ch_flag_bottom ;ch_flag_en
  639. check1_end:
  640. edit1 edit_box 350,95,381,0xffffff,0x6f9480,0,0xAABBCC,0,start_application_c,\
  641.    start_application,mouse_dd,ed_focus,start_application_e,start_application_e
  642. edit1_end:
  643. list_start  dd 0
  644. ;------------------------------------------------------------------------------
  645. align 4
  646. sys_reboot:
  647.             dd 7
  648.             dd 0
  649.             dd 0
  650.             dd 0
  651.             dd 0
  652.             db '/sys/end',0
  653. ;------------------------------------------------------------------------------
  654. if lang eq de
  655. text:
  656.         db 'NAME/BEENDEN        PID     CPU-LAST   % '
  657.         db 'SPEICHER START/NUTZUNG  W-STACK  W-POS'
  658. text_len = $-text
  659.  
  660. tbts:   db 'SEITE ZURUECK     SEITE VOR                        REBOOT SYSTEM'
  661. tbte:
  662. tbts_3  db 'START'
  663. tbte_2:
  664. check_text      db '@ on/off',0
  665. title   db 'Prozesse  - Ctrl/Alt/Del',0
  666. ;--------------------------------------
  667. else if lang eq et
  668. text:
  669.         db 'NIMI/LÕPETA         PID    CPU-KASUTUS %   '
  670.         db 'MÄLU ALGUS/KASUTUS  W-PUHVER  W-SUURUS'
  671. text_len = $-text
  672.  
  673. tbts:   db 'EELMINE LEHT   JÄRGMINE LEHT                     REBOODI SÜSTEEM'
  674. tbte:
  675. tbts_3  db 'START'
  676. tbte_2:
  677. check_text      db '@ on/off',0
  678. title   db 'Protsessid - Ctrl/Alt/Del'
  679. ;--------------------------------------
  680. else if lang eq ru
  681. text:
  682.         db 'ˆŒŸ/‡€‚…˜ˆ’œ      PID     CPU-‡€ƒ“‡Š€ %  '
  683.         db '€ŒŸ’œ €—€‹Ž/‚‘…ƒŽ  W-STACK  W-POS'
  684. text_len = $-text
  685.  
  686. tbts:   db '…„.‘’        ‘‹…„.‘’                          ……‡€ƒ“‡Š€'
  687. tbte:
  688. tbts_3  db '‡€“‘Š'
  689. tbte_2:
  690. check_text      db '@ ¢ª«/¢ëª«',0
  691. title   db '„¨á¯¥âç¥à ¯à®æ¥áᮢ - Ctrl/Alt/Del',0
  692. ;--------------------------------------
  693. else
  694. text:
  695.         db 'NAME/TERMINATE    PID       CPU-USAGE  %   '
  696.         db 'MEMORY START/USAGE  W-STACK   W-POS'
  697. text_len = $-text
  698.  
  699. tbts:   db 'PREV PAGE       NEXT PAGE                         REBOOT SYSTEM'
  700. tbte:
  701. tbts_3  db ' RUN'
  702. tbte_2:
  703. check_text      db '@ on/off',0
  704. title   db 'Process manager - Ctrl/Alt/Del',0
  705.  
  706. end if
  707. ;------------------------------------------------------------------------------
  708. align 4
  709. file_start:
  710.         dd 7
  711.         dd 0
  712.         dd 0
  713.         dd 0
  714.         dd 0
  715. start_application: db '/sys/LAUNCHER',0
  716. start_application_e=$-start_application-1
  717. ;                   times 60 db 0
  718.         rb 60
  719. start_application_c=$-start_application-1
  720. ;------------------------------------------------------------------------------
  721. IM_END:
  722. ;------------------------------------------------------------------------------
  723. align 4
  724. sc system_colors
  725. winxpos         rd 1
  726. winypos         rd 1
  727. mouse_dd        rd 1
  728. cpu_percent     rd 1
  729. tcolor          rd 1
  730. list_add        rd 1
  731. curposy         rd 1
  732. index           rd 1
  733. tasklist        rd display_processes
  734. time_counter    rd 1
  735.  
  736. window_status           rd 1
  737. client_area_x_size      rd 1
  738. client_area_y_size      rd 1
  739. bar_bacground_color     rd 1
  740. btn_bacground_color     rd 1
  741. draw_window_flag        rd 1
  742. ;------------------------------------------------------------------------------
  743. align 4
  744. library_path:
  745. process_info_buffer process_information
  746. ;------------------------------------------------------------------------------
  747. align 4
  748. cur_dir_path:
  749.         rb 1024
  750. ;------------------------------------------------------------------------------
  751. align 4
  752.         rb 1024
  753. stack_area:
  754. ;------------------------------------------------------------------------------
  755. U_END:
  756. ;------------------------------------------------------------------------------
  757.