Subversion Repositories Kolibri OS

Rev

Rev 7022 | Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. ;;;;;;;;;;;;;
  2. ;;; fNav ;;;;
  3. ;;;;;;;;;;;;;
  4.  
  5. Application author: 0CodErr
  6. Application address: http://board.kolibrios.org/viewtopic.php?f=44&t=2178
  7.  
  8. fNav - file navigator for KolibriOS.
  9.  
  10. Mouse control:
  11. -----------------
  12.     Middle button + Move up     go to parent directory
  13.     Middle Button + Move left   go to previous directory
  14.     Middle button + Move right  go to next directory
  15.  
  16. Keyboard control:
  17. -----------------------
  18.     Home                  to top of list
  19.     End                   to bottom of list
  20.     PageUp                one page up
  21.     PageDown              one page down
  22.     ArrowUp               one item up
  23.     ArrowDown             one item down
  24.     Rightctrl + Home      to top of the list without changing the selection
  25.     Rightctrl + END       to bottom of the list without changing the selection
  26.     Rightctrl + PageUp    one page up without changing the selection
  27.     Rightctrl + PageDown  one page down without changing the selection
  28.     Rightctrl + ArrowUp   one element up without changing the selection
  29.     Rightctrl + ArrowDown one element down without changing the selection
  30.     Rightctrl + L         go to address bar
  31.     BACKSPACE             go to parent directory
  32.     Arrowleft             go to previous directory
  33.     Arrowright            go to next directory
  34.     Enter                 go to the selected directory (or entered in the address bar) or
  35.                           open(launch) the selected file
  36.  
  37.     <character>              move to the next item that begins with this character
  38.     RightShift + <character> go to the previous item in the list that begins with this character
  39.  
  40.     F5                    refresh the list of files
  41.  
  42. Multiple selection of list items:
  43. -----------------------------------------
  44. Mouse or keyboard:
  45.     RightShift + (ArrowUp|ArrowDown|PageUp|PageDown|Home|End)
  46.     Leftctrl + A select all
  47.  
  48. List item actions:
  49. -----------------------------
  50.     Leftctrl + X        cut
  51.     Leftctrl + C        copy
  52.     Leftctrl + V        insert
  53.     Leftctrl + R        rename    
  54.     Delete              delete
  55.     Insert              create file
  56.     RightShift + Insert create folder
  57.  
  58. Sort a list by using the keyboard:
  59. ---------------------------------------
  60.     Ctrl + F2 by type
  61.     Ctrl + F3 by name
  62.     Ctrl + F4 by extension
  63.     Ctrl + F5 by size
  64.     Ctrl + F6 by date
  65.     Ctrl + F7 by attributes
  66.  
  67. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  68.  
  69. Libraries used:
  70. ------------------------
  71.     Box_lib (Edit_box, ScrollBar)
  72.     Libimg  (loading icons, cursors, and fonts)
  73.     buf2d   (list rendering)
  74.  
  75. The following files should be in the application folder:
  76. -------------------------------------------------------
  77.     Fnav.set     (list of associated applications and file extensions)
  78.     Fnav.ext     (List of associated icon numbers and file extensions)
  79.     fnav_icn.png (icons)
  80.     fnav_fnt png (font)
  81.     fnav_cur png (cursor)
  82.  
  83. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;